├── .gitignore ├── Applications ├── LICENSE ├── OSXChatGPT ├── OSXChatGPT.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── OSXChatGPT.xcscheme │ └── xcuserdata │ │ ├── lianchen.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── mustangym.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── OSXChatGPT │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── App_Icon.imageset │ │ │ ├── App_Icon.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── User.imageset │ │ │ ├── Contents.json │ │ │ └── User.png │ │ ├── github-fill 1.imageset │ │ │ ├── Contents.json │ │ │ └── github4 (1).svg │ │ ├── openAI_icon.imageset │ │ │ ├── Contents.json │ │ │ └── openAI_icon.png │ │ └── retry.imageset │ │ │ ├── Contents.json │ │ │ └── retry.png │ ├── DataProvider │ │ ├── AIPromptDataManager.swift │ │ ├── AIPromptViewMdoel.swift │ │ ├── ChatGPTManager.swift │ │ ├── CoreDataManager.swift │ │ ├── KeyboardMonitor.swift │ │ ├── Localization.swift │ │ ├── PluginViewModel.swift │ │ ├── ProjectSettingManager.swift │ │ ├── ServerManager.swift │ │ ├── SystemManager.swift │ │ └── ViewModel.swift │ ├── Info.plist │ ├── Interface │ │ ├── AppDelegate.swift │ │ └── OSXChatGPTApp.swift │ ├── Markdown │ │ ├── CodeHighlighter.swift │ │ ├── Extensions │ │ │ ├── CharacterSet │ │ │ │ └── CharacterSet+Contains.swift │ │ │ ├── Equatable │ │ │ │ └── Equatable+AnyOf.swift │ │ │ ├── Int │ │ │ │ └── Int+IsOdd.swift │ │ │ ├── Sequence │ │ │ │ ├── Sequence+AnyOf.swift │ │ │ │ └── Sequence+Occurrences.swift │ │ │ └── Strings │ │ │ │ ├── String+HTMLEntities.swift │ │ │ │ ├── String+IsNumber.swift │ │ │ │ ├── String+PrefixChecking.swift │ │ │ │ ├── String+Removing.swift │ │ │ │ └── Substring+HasSuffix.swift │ │ ├── Grammar.swift │ │ ├── MarkdownTextAttributesReader.swift │ │ ├── MarkdownTextBuilder.swift │ │ ├── MarkdownTheme.swift │ │ ├── MarkdownTokenType.swift │ │ ├── MarkdownView.swift │ │ ├── MessageTextModel.swift │ │ ├── Segment.swift │ │ ├── SwiftGrammar.swift │ │ ├── SyntaxRule.swift │ │ └── Tokenizer.swift │ ├── Models │ │ ├── ChatGPT+CoreDataClass.swift │ │ ├── ChatGPT+CoreDataProperties.swift │ │ ├── Conversation+CoreDataClass.swift │ │ ├── Conversation+CoreDataProperties.swift │ │ ├── GoogleSearch+CoreDataClass.swift │ │ ├── GoogleSearch+CoreDataProperties.swift │ │ ├── GoogleSearchResult+CoreDataClass.swift │ │ ├── GoogleSearchResult+CoreDataProperties.swift │ │ ├── Message+CoreDataClass.swift │ │ ├── Message+CoreDataProperties.swift │ │ ├── MessageText+CoreDataClass.swift │ │ ├── MessageText+CoreDataProperties.swift │ │ ├── NSColor.swift │ │ ├── PluginAPIInstall+CoreDataClass.swift │ │ ├── PluginAPIInstall+CoreDataProperties.swift │ │ ├── PluginManifest+CoreDataClass.swift │ │ ├── PluginManifest+CoreDataProperties.swift │ │ ├── PluginManifestAPI+CoreDataClass.swift │ │ ├── PluginManifestAPI+CoreDataProperties.swift │ │ ├── PluginManifestAuth+CoreDataClass.swift │ │ ├── PluginManifestAuth+CoreDataProperties.swift │ │ ├── Prompt+CoreDataClass.swift │ │ └── Prompt+CoreDataProperties.swift │ ├── NetWork │ │ └── HTTPClient.swift │ ├── OSXChatGPT.entitlements │ ├── OSXChatGPT.xcdatamodeld │ │ └── OSXChatGPT.xcdatamodel │ │ │ └── contents │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── mac-128x128.png │ │ │ ├── mac-128x128@2x.png │ │ │ ├── mac-16x16.png │ │ │ ├── mac-16x16@2x.png │ │ │ ├── mac-256x256.png │ │ │ ├── mac-256x256@2x.png │ │ │ ├── mac-32x32.png │ │ │ ├── mac-32x32@2x.png │ │ │ ├── mac-512x512.png │ │ │ └── mac-512x512@2x.png │ │ │ └── Contents.json │ ├── Storyboard.storyboard │ ├── SyntaxHighlighter │ │ ├── SplashCodeSyntaxHighlighter.swift │ │ └── TextOutputFormat.swift │ ├── WindowView │ │ ├── AIPromptInputView.swift │ │ ├── AIPromptPopView.swift │ │ ├── AIPromptView.swift │ │ ├── ChatRoomInputView.swift │ │ ├── ChatRoomToolBar.swift │ │ ├── ChatRoomView.swift │ │ ├── EidtSessionRemarkView.swift │ │ ├── EnterAPIView.swift │ │ ├── ExportView.swift │ │ ├── GoogleSearchPopView.swift │ │ ├── GoogleSearchSettingView.swift │ │ ├── MainContentView.swift │ │ ├── MarkdownContentView.swift │ │ ├── PluginContentView.swift │ │ ├── PluginPopView.swift │ │ ├── SessionsView.swift │ │ ├── SettingsView.swift │ │ ├── ThinkingAnimationView.swift │ │ ├── UserInitializeView.swift │ │ └── View.swift │ ├── en.lproj │ │ └── Localizable.strings │ └── zh-Hans.lproj │ │ └── Localizable.strings └── picture │ ├── 3351682492206_.pic_hd.jpg │ ├── 3361682492895_.pic.jpg │ ├── WX20230312-023142@2x.psd │ ├── WechatIMG299.png │ ├── WechatIMG300.png │ ├── WechatIMG301.png │ └── home-tuya.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /Applications: -------------------------------------------------------------------------------- 1 | /Applications/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/xcshareddata/xcschemes/OSXChatGPT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/xcshareddata/xcschemes/OSXChatGPT.xcscheme -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/lianchen.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/lianchen.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/mustangym.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/mustangym.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/mustangym.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT.xcodeproj/xcuserdata/mustangym.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/App_Icon.imageset/App_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/App_Icon.imageset/App_Icon.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/App_Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/App_Icon.imageset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/User.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/User.imageset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/User.imageset/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/User.imageset/User.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/github-fill 1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/github-fill 1.imageset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/github-fill 1.imageset/github4 (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/github-fill 1.imageset/github4 (1).svg -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/openAI_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/openAI_icon.imageset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/openAI_icon.imageset/openAI_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/openAI_icon.imageset/openAI_icon.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/retry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/retry.imageset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Assets.xcassets/retry.imageset/retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Assets.xcassets/retry.imageset/retry.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/AIPromptDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/AIPromptDataManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/AIPromptViewMdoel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/AIPromptViewMdoel.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/ChatGPTManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/ChatGPTManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/CoreDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/CoreDataManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/KeyboardMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/KeyboardMonitor.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/Localization.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/PluginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/PluginViewModel.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/ProjectSettingManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/ProjectSettingManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/ServerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/ServerManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/SystemManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/SystemManager.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/DataProvider/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/DataProvider/ViewModel.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Info.plist -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Interface/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Interface/AppDelegate.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Interface/OSXChatGPTApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Interface/OSXChatGPTApp.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/CodeHighlighter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/CodeHighlighter.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/CharacterSet/CharacterSet+Contains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/CharacterSet/CharacterSet+Contains.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Equatable/Equatable+AnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Equatable/Equatable+AnyOf.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Int/Int+IsOdd.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Int/Int+IsOdd.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Sequence/Sequence+AnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Sequence/Sequence+AnyOf.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Sequence/Sequence+Occurrences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Sequence/Sequence+Occurrences.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+HTMLEntities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+HTMLEntities.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+IsNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+IsNumber.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+PrefixChecking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+PrefixChecking.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+Removing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/String+Removing.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/Substring+HasSuffix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Extensions/Strings/Substring+HasSuffix.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Grammar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Grammar.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MarkdownTextAttributesReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MarkdownTextAttributesReader.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MarkdownTextBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MarkdownTextBuilder.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MarkdownTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MarkdownTheme.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MarkdownTokenType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MarkdownTokenType.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MarkdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MarkdownView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/MessageTextModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/MessageTextModel.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Segment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Segment.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/SwiftGrammar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/SwiftGrammar.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/SyntaxRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/SyntaxRule.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Markdown/Tokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Markdown/Tokenizer.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/ChatGPT+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/ChatGPT+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/ChatGPT+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/ChatGPT+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Conversation+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Conversation+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Conversation+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Conversation+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/GoogleSearch+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/GoogleSearch+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/GoogleSearch+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/GoogleSearch+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/GoogleSearchResult+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/GoogleSearchResult+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/GoogleSearchResult+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/GoogleSearchResult+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Message+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Message+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Message+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Message+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/MessageText+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/MessageText+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/MessageText+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/MessageText+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/NSColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/NSColor.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginAPIInstall+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginAPIInstall+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginAPIInstall+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginAPIInstall+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifest+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifest+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifest+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifest+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifestAPI+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifestAPI+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifestAPI+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifestAPI+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifestAuth+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifestAuth+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/PluginManifestAuth+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/PluginManifestAuth+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Prompt+CoreDataClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Prompt+CoreDataClass.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Models/Prompt+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Models/Prompt+CoreDataProperties.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/NetWork/HTTPClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/NetWork/HTTPClient.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/OSXChatGPT.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/OSXChatGPT.entitlements -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/OSXChatGPT.xcdatamodeld/OSXChatGPT.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/OSXChatGPT.xcdatamodeld/OSXChatGPT.xcdatamodel/contents -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-128x128.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-128x128@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-16x16.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-16x16@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-256x256.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-256x256@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-32x32.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-32x32@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-512x512.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/AppIcon.appiconset/mac-512x512@2x.png -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/Storyboard.storyboard -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/SyntaxHighlighter/SplashCodeSyntaxHighlighter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/SyntaxHighlighter/SplashCodeSyntaxHighlighter.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/SyntaxHighlighter/TextOutputFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/SyntaxHighlighter/TextOutputFormat.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/AIPromptInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/AIPromptInputView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/AIPromptPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/AIPromptPopView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/AIPromptView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/AIPromptView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/ChatRoomInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/ChatRoomInputView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/ChatRoomToolBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/ChatRoomToolBar.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/ChatRoomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/ChatRoomView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/EidtSessionRemarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/EidtSessionRemarkView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/EnterAPIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/EnterAPIView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/ExportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/ExportView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/GoogleSearchPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/GoogleSearchPopView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/GoogleSearchSettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/GoogleSearchSettingView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/MainContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/MainContentView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/MarkdownContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/MarkdownContentView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/PluginContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/PluginContentView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/PluginPopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/PluginPopView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/SessionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/SessionsView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/SettingsView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/ThinkingAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/ThinkingAnimationView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/UserInitializeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/UserInitializeView.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/WindowView/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/WindowView/View.swift -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /OSXChatGPT/OSXChatGPT/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/OSXChatGPT/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /OSXChatGPT/picture/3351682492206_.pic_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/3351682492206_.pic_hd.jpg -------------------------------------------------------------------------------- /OSXChatGPT/picture/3361682492895_.pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/3361682492895_.pic.jpg -------------------------------------------------------------------------------- /OSXChatGPT/picture/WX20230312-023142@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/WX20230312-023142@2x.psd -------------------------------------------------------------------------------- /OSXChatGPT/picture/WechatIMG299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/WechatIMG299.png -------------------------------------------------------------------------------- /OSXChatGPT/picture/WechatIMG300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/WechatIMG300.png -------------------------------------------------------------------------------- /OSXChatGPT/picture/WechatIMG301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/WechatIMG301.png -------------------------------------------------------------------------------- /OSXChatGPT/picture/home-tuya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/OSXChatGPT/picture/home-tuya.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MustangYM/OSXChatGPT/HEAD/README.md --------------------------------------------------------------------------------