├── .gitignore ├── LICENSE ├── README.md ├── iChatGPT.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── iChatGPT ├── AIChatView.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── chatgpt.png │ ├── Contents.json │ ├── chatgpt-icon-4.imageset │ │ ├── Contents.json │ │ └── chatgpt-icon-4.png │ ├── chatgpt-icon-user.imageset │ │ ├── Contents.json │ │ └── chatgpt-icon-user-white.png │ ├── chatgpt-icon.imageset │ │ ├── Contents.json │ │ └── apple-touch-icon.png │ └── chatgpt.imageset │ │ ├── Contents.json │ │ ├── chatgpt-icon-black@2x.png │ │ └── chatgpt-icon-white@2x.png ├── ChatAPISettingView.swift ├── ChatContextMenu.swift ├── ChatHistoryListView.swift ├── ChatInputView.swift ├── ChatRoomConfigView.swift ├── Extensions │ ├── Dates.swift │ ├── ImageLoaderView.swift │ ├── MarkdownStyles.swift │ ├── MultilineTextField.swift │ ├── Strings.swift │ └── View.swift ├── Info.plist ├── Models │ ├── AIChatInputModel.swift │ ├── AIChatModel.swift │ ├── AIChatRoom.swift │ └── ChatGPT.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Store │ ├── ChatMessageStore.swift │ └── ChatRoomStore.swift ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── iChatGPTApp.swift ├── ja.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── iChatGPTTests └── iChatGPTTests.swift ├── iChatGPTUITests ├── iChatGPTUITests.swift └── iChatGPTUITestsLaunchTests.swift ├── icon.png └── screenshot ├── 01.jpeg ├── 02.jpeg ├── 03.jpeg ├── 03.png ├── 04.jpeg ├── 05.jpeg ├── 06.jpeg ├── 07.jpeg ├── cf_clearance.png └── user_agent.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /iChatGPT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /iChatGPT/AIChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/AIChatView.swift -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/AppIcon.appiconset/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/AppIcon.appiconset/chatgpt.png -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon-4.imageset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon-4.imageset/chatgpt-icon-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon-4.imageset/chatgpt-icon-4.png -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon-user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon-user.imageset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon-user.imageset/chatgpt-icon-user-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon-user.imageset/chatgpt-icon-user-white.png -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon.imageset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt-icon.imageset/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt-icon.imageset/apple-touch-icon.png -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt.imageset/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt.imageset/chatgpt-icon-black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt.imageset/chatgpt-icon-black@2x.png -------------------------------------------------------------------------------- /iChatGPT/Assets.xcassets/chatgpt.imageset/chatgpt-icon-white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Assets.xcassets/chatgpt.imageset/chatgpt-icon-white@2x.png -------------------------------------------------------------------------------- /iChatGPT/ChatAPISettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ChatAPISettingView.swift -------------------------------------------------------------------------------- /iChatGPT/ChatContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ChatContextMenu.swift -------------------------------------------------------------------------------- /iChatGPT/ChatHistoryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ChatHistoryListView.swift -------------------------------------------------------------------------------- /iChatGPT/ChatInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ChatInputView.swift -------------------------------------------------------------------------------- /iChatGPT/ChatRoomConfigView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ChatRoomConfigView.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/Dates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/Dates.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/ImageLoaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/ImageLoaderView.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/MarkdownStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/MarkdownStyles.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/MultilineTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/MultilineTextField.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/Strings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/Strings.swift -------------------------------------------------------------------------------- /iChatGPT/Extensions/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Extensions/View.swift -------------------------------------------------------------------------------- /iChatGPT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Info.plist -------------------------------------------------------------------------------- /iChatGPT/Models/AIChatInputModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Models/AIChatInputModel.swift -------------------------------------------------------------------------------- /iChatGPT/Models/AIChatModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Models/AIChatModel.swift -------------------------------------------------------------------------------- /iChatGPT/Models/AIChatRoom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Models/AIChatRoom.swift -------------------------------------------------------------------------------- /iChatGPT/Models/ChatGPT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Models/ChatGPT.swift -------------------------------------------------------------------------------- /iChatGPT/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iChatGPT/Store/ChatMessageStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Store/ChatMessageStore.swift -------------------------------------------------------------------------------- /iChatGPT/Store/ChatRoomStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/Store/ChatRoomStore.swift -------------------------------------------------------------------------------- /iChatGPT/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/iChatGPTApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/iChatGPTApp.swift -------------------------------------------------------------------------------- /iChatGPT/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPT/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPT/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /iChatGPTTests/iChatGPTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPTTests/iChatGPTTests.swift -------------------------------------------------------------------------------- /iChatGPTUITests/iChatGPTUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPTUITests/iChatGPTUITests.swift -------------------------------------------------------------------------------- /iChatGPTUITests/iChatGPTUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/iChatGPTUITests/iChatGPTUITestsLaunchTests.swift -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/icon.png -------------------------------------------------------------------------------- /screenshot/01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/01.jpeg -------------------------------------------------------------------------------- /screenshot/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/02.jpeg -------------------------------------------------------------------------------- /screenshot/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/03.jpeg -------------------------------------------------------------------------------- /screenshot/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/03.png -------------------------------------------------------------------------------- /screenshot/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/04.jpeg -------------------------------------------------------------------------------- /screenshot/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/05.jpeg -------------------------------------------------------------------------------- /screenshot/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/06.jpeg -------------------------------------------------------------------------------- /screenshot/07.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/07.jpeg -------------------------------------------------------------------------------- /screenshot/cf_clearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/cf_clearance.png -------------------------------------------------------------------------------- /screenshot/user_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/37MobileTeam/iChatGPT/HEAD/screenshot/user_agent.png --------------------------------------------------------------------------------