├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Found-Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LICENSE-BASE ├── LICENSE.zh ├── Packages ├── Localizables │ ├── en.lproj │ │ └── Localizable.strings │ ├── openaiapi.py │ ├── translation.py │ └── zh-Hans.lproj │ │ └── Localizable.strings ├── MacaifyServiceKit │ ├── .gitignore │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ ├── MacaifyServiceKit │ │ │ ├── API │ │ │ │ ├── APIError.swift │ │ │ │ ├── ETagRequestPlugin.swift │ │ │ │ ├── ModelsAPI.swift │ │ │ │ ├── ModelsTarget.swift │ │ │ │ ├── TitlesAPI.swift │ │ │ │ └── TitlesTarget.swift │ │ │ ├── Cache │ │ │ │ └── ResponseCache.swift │ │ │ ├── Core │ │ │ │ ├── DateProvider.swift │ │ │ │ └── ServiceConfig.swift │ │ │ └── Models │ │ │ │ ├── AvailableModels.swift │ │ │ │ └── ChatTitleModels.swift │ │ └── MacaifyServiceKitRunner │ │ │ └── main.swift │ └── Tests │ │ └── MacaifyServiceKitTests │ │ ├── MockURLProtocol.swift │ │ └── ModelsAPITests.swift └── SwiftEx │ ├── Environments.swift │ ├── HoveredEffect.swift │ ├── SelectedEffect.swift │ └── View+Base.swift ├── README.md ├── README.zh.md ├── Shared ├── ChatGPTAPI.swift ├── ChatGPTAPIModels.swift ├── CommandKeyView.swift ├── ContentView.swift ├── DotLoadingView.swift ├── DropdownView.swift ├── Globals.swift ├── Helpers │ ├── EmojiData.swift │ └── EmojiPickerViewModel.swift ├── InputEditor.swift ├── MessageExtension.swift ├── MessageRow.swift ├── MessageRowView.swift ├── Models │ └── Emoji.swift ├── MyTextField.swift ├── Persistence.swift ├── ProvidersSettingsLink.swift ├── Resources │ ├── accessibility_guide.mp4 │ ├── models.xml │ └── providers.xml ├── RoundedButtonStyle.swift ├── ViewModel.swift ├── Views │ ├── EmojiButtonStyle.swift │ ├── EmojiCategoryTabView.swift │ ├── EmojiCategoryView.swift │ ├── EmojiPickerPopoverView.swift │ ├── EmojiPickerView.swift │ └── EmojiSearchView.swift ├── assets │ └── provider-icons │ │ ├── anthropic.svg │ │ ├── deepseek.svg │ │ ├── google.svg │ │ ├── meta.svg │ │ ├── mistral.svg │ │ ├── moonshot.svg │ │ ├── openai.svg │ │ ├── perplexity.svg │ │ ├── qwen.svg │ │ ├── raycast-check.svg │ │ ├── raycast.svg │ │ └── xai.svg ├── backend │ ├── BackendClientFactory.swift │ └── BackendEnvironment.swift ├── components │ ├── AnchoredPopover.swift │ ├── GrowingTextView.swift │ ├── HoverPopover.swift │ ├── MembershipUpgradeSheet.swift │ ├── ModelDetailCard.swift │ ├── ModelPickerPopover.swift │ ├── ModelPickerPresenter.swift │ ├── ProviderIconView.swift │ ├── ProviderListView.swift │ ├── ProvidersSettingsLink.swift │ ├── QuickModelPickerView.swift │ ├── SessionModelPicker.swift │ └── UnboundComposer.swift ├── data │ ├── GPTAnswerExtensions.swift │ ├── GPTConversationExtensions.swift │ ├── GPTSessionExtensions.swift │ └── LLMModels.swift ├── design │ ├── ChatTokens.swift │ └── SettingsUI.swift ├── emoji_metadata.json ├── gptexpir.xcdatamodeld │ ├── .xccurrentversion │ └── gptexpir.xcdatamodel │ │ └── contents └── utils │ ├── Base.swift │ ├── CommandKeyMonitor.swift │ ├── Constants.swift │ ├── Defaults+Base.swift │ ├── GlobalConfig.swift │ ├── KeyUtils.swift │ ├── PlainStorage.swift │ ├── StringExtensions.swift │ └── Utils.swift ├── XCAChatGPT.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Macaify.xcscheme ├── XCAChatGPT ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-128.png │ │ ├── icon-128@2x.png │ │ ├── icon-16.png │ │ ├── icon-16@2x.png │ │ ├── icon-256.png │ │ ├── icon-256@2x.png │ │ ├── icon-32.png │ │ ├── icon-32@2x.png │ │ ├── icon-512.png │ │ └── icon-512@2x.png │ ├── Contents.json │ ├── openai.imageset │ │ ├── Contents.json │ │ └── openai.png │ └── profile.imageset │ │ ├── Contents.json │ │ └── icon-512@2x.png ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── TextView.swift ├── TokenizerView.swift ├── TokenizerViewModel.swift └── XCAChatGPTApp.swift ├── XCAChatGPTMac ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── macaify-iOS-Default-1024x1024@1x.png │ ├── Contents.json │ ├── icon.imageset │ │ ├── Contents.json │ │ └── Shape.png │ ├── menubar.imageset │ │ ├── Contents.json │ │ ├── menubar备份 6@2x.png │ │ └── menubar备份 6@3x.png │ ├── openai.imageset │ │ ├── Contents.json │ │ ├── openai.png │ │ ├── openai@2x.png │ │ └── openai@3x.png │ └── profile.imageset │ │ ├── Contents.json │ │ ├── profile.png │ │ ├── profile@2x.png │ │ └── profile@3x.png ├── Color.swift ├── GoogleService-Info.plist ├── KeyEvents │ ├── KeyAction.swift │ └── KeyEvents.swift ├── PathManager.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Themes.swift ├── XCAChatGPTMac.entitlements ├── XCAChatGPTMacApp.swift ├── business │ ├── cmdk │ │ ├── CMDKService.swift │ │ ├── CmdKWindowController.swift │ │ └── Prompts.swift │ ├── hotkey │ │ ├── HotKeyConstants.swift │ │ └── HotKeyManager.swift │ ├── main │ │ ├── APIKeyManager.swift │ │ ├── AppInfo.swift │ │ ├── AppShortcuts.swift │ │ ├── BotTemplatePicker.swift │ │ ├── ChatDetailView.swift │ │ ├── CommandDetailView.swift │ │ ├── CommandStore.swift │ │ ├── ConversationPreferenceView.swift │ │ ├── ConversationViewModel.swift │ │ ├── DataManager.swift │ │ ├── KeyboardShortcutManager.swift │ │ ├── LanguageOptions.swift │ │ ├── LoginView.swift │ │ ├── ModelSelectionManager.swift │ │ ├── NewMainView.swift │ │ └── SettingView.swift │ ├── menu │ │ └── MenuBarManager.swift │ ├── onboarding │ │ └── AccessibilityOnboardingView.swift │ ├── prompts │ │ ├── PromptPlayground.swift │ │ ├── PromptStore.swift │ │ ├── PromptTemplate.swift │ │ └── QuickOpen.swift │ ├── settings │ │ ├── AccountSettingsView.swift │ │ ├── AdvancedSettingsView.swift │ │ ├── AppUpdaterHelper.swift │ │ ├── AppUpdaterLink.swift │ │ ├── DefaultsSettingsView.swift │ │ ├── GithubProxy.swift │ │ ├── ModelsSettingsView.swift │ │ ├── ProvidersSettingsView.swift │ │ ├── SettingsCard.swift │ │ ├── SettingsTabs.swift │ │ ├── SettingsView.swift │ │ └── StandardSettingsView.swift │ └── tutorial │ │ ├── NewFeatureIntroductionView.swift │ │ ├── PreferenceInitializerView.swift │ │ └── StartUpView.swift ├── components │ ├── Compacts.swift │ ├── ConfigurableHeaderView.swift │ ├── ConversationIconView.swift │ ├── PlainButton.swift │ ├── PurpleButtonStyle.swift │ ├── StartUpButtonStyle.swift │ └── form │ │ └── MSection.swift ├── debuging │ ├── AppQuickOpen.swift │ └── SelectedText.swift ├── prompts.json ├── prompts_zh.json └── utils │ ├── Differ │ ├── BatchUpdate.swift │ ├── Diff+AppKit.swift │ ├── Diff+UIKit.swift │ ├── Diff.swift │ ├── ExtendedDiff.swift │ ├── ExtendedPatch+Apply.swift │ ├── ExtendedPatch.swift │ ├── GenericPatch.swift │ ├── LinkedList.swift │ ├── NestedBatchUpdate.swift │ ├── NestedDiff.swift │ ├── NestedExtendedDiff.swift │ ├── Patch+Apply.swift │ ├── Patch+Sort.swift │ └── Patch.swift │ ├── EmojiManager.swift │ ├── Initializer.swift │ ├── KeyMonitorManager.swift │ ├── LaunchAtLoginManager.swift │ ├── RecordManager.swift │ ├── StartupPasteboardManager.swift │ ├── TypingInPlace.swift │ └── WindowBridge.swift ├── XCAChatGPTTV ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ ├── openai.imageset │ │ ├── Contents.json │ │ └── openai.png │ └── profile.imageset │ │ ├── Contents.json │ │ └── unnamed.jpg ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ScrollView.swift └── XCAChatGPTTVApp.swift ├── XCAChatGPTWatch Watch App ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── openai.imageset │ │ ├── Contents.json │ │ └── openai.png │ └── profile.imageset │ │ ├── Contents.json │ │ └── unnamed.jpg ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── XCAChatGPTWatchApp.swift ├── XCAChatGPTWatch-Watch-App-Info.plist ├── docs ├── Assets │ ├── AppIcon.webp │ ├── Snapshot.gif │ └── Snapshot.mp4 ├── Design │ ├── Agents-Sessions-Plan.md │ ├── Colors.md │ ├── Components.md │ ├── Localization-Spec.md │ ├── MacContentView-Spec.md │ ├── Settings-Design.md │ └── Settings-Guidelines.md └── Product │ ├── ModelDirectory-Roadmap.md │ ├── Requirements.md │ └── Roadmap.md └── fastlane ├── Appfile ├── Fastfile ├── Pluginfile ├── README.md ├── changelog └── changelog.zh.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/.gitmodules -------------------------------------------------------------------------------- /Found-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Found-Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-BASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/LICENSE-BASE -------------------------------------------------------------------------------- /LICENSE.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/LICENSE.zh -------------------------------------------------------------------------------- /Packages/Localizables/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/Localizables/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Packages/Localizables/openaiapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/Localizables/openaiapi.py -------------------------------------------------------------------------------- /Packages/Localizables/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/Localizables/translation.py -------------------------------------------------------------------------------- /Packages/Localizables/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/Localizables/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/.gitignore -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Package.resolved -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Package.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/APIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/APIError.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ETagRequestPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ETagRequestPlugin.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ModelsAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ModelsAPI.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ModelsTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/ModelsTarget.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/TitlesAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/TitlesAPI.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/TitlesTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/API/TitlesTarget.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Cache/ResponseCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Cache/ResponseCache.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Core/DateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Core/DateProvider.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Core/ServiceConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Core/ServiceConfig.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Models/AvailableModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Models/AvailableModels.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Models/ChatTitleModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKit/Models/ChatTitleModels.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Sources/MacaifyServiceKitRunner/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Sources/MacaifyServiceKitRunner/main.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Tests/MacaifyServiceKitTests/MockURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Tests/MacaifyServiceKitTests/MockURLProtocol.swift -------------------------------------------------------------------------------- /Packages/MacaifyServiceKit/Tests/MacaifyServiceKitTests/ModelsAPITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/MacaifyServiceKit/Tests/MacaifyServiceKitTests/ModelsAPITests.swift -------------------------------------------------------------------------------- /Packages/SwiftEx/Environments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/SwiftEx/Environments.swift -------------------------------------------------------------------------------- /Packages/SwiftEx/HoveredEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/SwiftEx/HoveredEffect.swift -------------------------------------------------------------------------------- /Packages/SwiftEx/SelectedEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/SwiftEx/SelectedEffect.swift -------------------------------------------------------------------------------- /Packages/SwiftEx/View+Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Packages/SwiftEx/View+Base.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/README.zh.md -------------------------------------------------------------------------------- /Shared/ChatGPTAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/ChatGPTAPI.swift -------------------------------------------------------------------------------- /Shared/ChatGPTAPIModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/ChatGPTAPIModels.swift -------------------------------------------------------------------------------- /Shared/CommandKeyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/CommandKeyView.swift -------------------------------------------------------------------------------- /Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/ContentView.swift -------------------------------------------------------------------------------- /Shared/DotLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/DotLoadingView.swift -------------------------------------------------------------------------------- /Shared/DropdownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/DropdownView.swift -------------------------------------------------------------------------------- /Shared/Globals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Globals.swift -------------------------------------------------------------------------------- /Shared/Helpers/EmojiData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Helpers/EmojiData.swift -------------------------------------------------------------------------------- /Shared/Helpers/EmojiPickerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Helpers/EmojiPickerViewModel.swift -------------------------------------------------------------------------------- /Shared/InputEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/InputEditor.swift -------------------------------------------------------------------------------- /Shared/MessageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/MessageExtension.swift -------------------------------------------------------------------------------- /Shared/MessageRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/MessageRow.swift -------------------------------------------------------------------------------- /Shared/MessageRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/MessageRowView.swift -------------------------------------------------------------------------------- /Shared/Models/Emoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Models/Emoji.swift -------------------------------------------------------------------------------- /Shared/MyTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/MyTextField.swift -------------------------------------------------------------------------------- /Shared/Persistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Persistence.swift -------------------------------------------------------------------------------- /Shared/ProvidersSettingsLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/ProvidersSettingsLink.swift -------------------------------------------------------------------------------- /Shared/Resources/accessibility_guide.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Resources/accessibility_guide.mp4 -------------------------------------------------------------------------------- /Shared/Resources/models.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Resources/models.xml -------------------------------------------------------------------------------- /Shared/Resources/providers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Resources/providers.xml -------------------------------------------------------------------------------- /Shared/RoundedButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/RoundedButtonStyle.swift -------------------------------------------------------------------------------- /Shared/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/ViewModel.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiButtonStyle.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiCategoryTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiCategoryTabView.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiCategoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiCategoryView.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiPickerPopoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiPickerPopoverView.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiPickerView.swift -------------------------------------------------------------------------------- /Shared/Views/EmojiSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/Views/EmojiSearchView.swift -------------------------------------------------------------------------------- /Shared/assets/provider-icons/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/anthropic.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/deepseek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/deepseek.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/google.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/meta.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/mistral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/mistral.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/moonshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/moonshot.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/openai.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/perplexity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/perplexity.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/qwen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/qwen.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/raycast-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/raycast-check.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/raycast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/raycast.svg -------------------------------------------------------------------------------- /Shared/assets/provider-icons/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/assets/provider-icons/xai.svg -------------------------------------------------------------------------------- /Shared/backend/BackendClientFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/backend/BackendClientFactory.swift -------------------------------------------------------------------------------- /Shared/backend/BackendEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/backend/BackendEnvironment.swift -------------------------------------------------------------------------------- /Shared/components/AnchoredPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/AnchoredPopover.swift -------------------------------------------------------------------------------- /Shared/components/GrowingTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/GrowingTextView.swift -------------------------------------------------------------------------------- /Shared/components/HoverPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/HoverPopover.swift -------------------------------------------------------------------------------- /Shared/components/MembershipUpgradeSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/MembershipUpgradeSheet.swift -------------------------------------------------------------------------------- /Shared/components/ModelDetailCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ModelDetailCard.swift -------------------------------------------------------------------------------- /Shared/components/ModelPickerPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ModelPickerPopover.swift -------------------------------------------------------------------------------- /Shared/components/ModelPickerPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ModelPickerPresenter.swift -------------------------------------------------------------------------------- /Shared/components/ProviderIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ProviderIconView.swift -------------------------------------------------------------------------------- /Shared/components/ProviderListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ProviderListView.swift -------------------------------------------------------------------------------- /Shared/components/ProvidersSettingsLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/ProvidersSettingsLink.swift -------------------------------------------------------------------------------- /Shared/components/QuickModelPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/QuickModelPickerView.swift -------------------------------------------------------------------------------- /Shared/components/SessionModelPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/SessionModelPicker.swift -------------------------------------------------------------------------------- /Shared/components/UnboundComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/components/UnboundComposer.swift -------------------------------------------------------------------------------- /Shared/data/GPTAnswerExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/data/GPTAnswerExtensions.swift -------------------------------------------------------------------------------- /Shared/data/GPTConversationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/data/GPTConversationExtensions.swift -------------------------------------------------------------------------------- /Shared/data/GPTSessionExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/data/GPTSessionExtensions.swift -------------------------------------------------------------------------------- /Shared/data/LLMModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/data/LLMModels.swift -------------------------------------------------------------------------------- /Shared/design/ChatTokens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/design/ChatTokens.swift -------------------------------------------------------------------------------- /Shared/design/SettingsUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/design/SettingsUI.swift -------------------------------------------------------------------------------- /Shared/emoji_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/emoji_metadata.json -------------------------------------------------------------------------------- /Shared/gptexpir.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/gptexpir.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Shared/gptexpir.xcdatamodeld/gptexpir.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/gptexpir.xcdatamodeld/gptexpir.xcdatamodel/contents -------------------------------------------------------------------------------- /Shared/utils/Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/Base.swift -------------------------------------------------------------------------------- /Shared/utils/CommandKeyMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/CommandKeyMonitor.swift -------------------------------------------------------------------------------- /Shared/utils/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/Constants.swift -------------------------------------------------------------------------------- /Shared/utils/Defaults+Base.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/Defaults+Base.swift -------------------------------------------------------------------------------- /Shared/utils/GlobalConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/GlobalConfig.swift -------------------------------------------------------------------------------- /Shared/utils/KeyUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/KeyUtils.swift -------------------------------------------------------------------------------- /Shared/utils/PlainStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/PlainStorage.swift -------------------------------------------------------------------------------- /Shared/utils/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/StringExtensions.swift -------------------------------------------------------------------------------- /Shared/utils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/Shared/utils/Utils.swift -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /XCAChatGPT.xcodeproj/xcshareddata/xcschemes/Macaify.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT.xcodeproj/xcshareddata/xcschemes/Macaify.xcscheme -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-128.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-128@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-16.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-16@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-256.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-256@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-32.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-32@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-512.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/AppIcon.appiconset/icon-512@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/openai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/openai.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/openai.imageset/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/openai.imageset/openai.png -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/Assets.xcassets/profile.imageset/icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Assets.xcassets/profile.imageset/icon-512@2x.png -------------------------------------------------------------------------------- /XCAChatGPT/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPT/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/TextView.swift -------------------------------------------------------------------------------- /XCAChatGPT/TokenizerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/TokenizerView.swift -------------------------------------------------------------------------------- /XCAChatGPT/TokenizerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/TokenizerViewModel.swift -------------------------------------------------------------------------------- /XCAChatGPT/XCAChatGPTApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPT/XCAChatGPTApp.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/AppIcon.appiconset/macaify-iOS-Default-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/AppIcon.appiconset/macaify-iOS-Default-1024x1024@1x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/icon.imageset/Shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/icon.imageset/Shape.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/menubar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/menubar.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/menubar.imageset/menubar备份 6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/menubar.imageset/menubar备份 6@2x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/menubar.imageset/menubar备份 6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/menubar.imageset/menubar备份 6@3x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/openai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/openai.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/openai.imageset/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/openai.imageset/openai.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/openai.imageset/openai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/openai.imageset/openai@2x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/openai.imageset/openai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/openai.imageset/openai@3x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/profile.imageset/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/profile.imageset/profile.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/profile.imageset/profile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/profile.imageset/profile@2x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Assets.xcassets/profile.imageset/profile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Assets.xcassets/profile.imageset/profile@3x.png -------------------------------------------------------------------------------- /XCAChatGPTMac/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Color.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/GoogleService-Info.plist -------------------------------------------------------------------------------- /XCAChatGPTMac/KeyEvents/KeyAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/KeyEvents/KeyAction.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/KeyEvents/KeyEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/KeyEvents/KeyEvents.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/PathManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/PathManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTMac/Themes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/Themes.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/XCAChatGPTMac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/XCAChatGPTMac.entitlements -------------------------------------------------------------------------------- /XCAChatGPTMac/XCAChatGPTMacApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/XCAChatGPTMacApp.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/cmdk/CMDKService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/cmdk/CMDKService.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/cmdk/CmdKWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/cmdk/CmdKWindowController.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/cmdk/Prompts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/cmdk/Prompts.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/hotkey/HotKeyConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/hotkey/HotKeyConstants.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/hotkey/HotKeyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/hotkey/HotKeyManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/APIKeyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/APIKeyManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/AppInfo.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/AppShortcuts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/AppShortcuts.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/BotTemplatePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/BotTemplatePicker.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/ChatDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/ChatDetailView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/CommandDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/CommandDetailView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/CommandStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/CommandStore.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/ConversationPreferenceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/ConversationPreferenceView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/ConversationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/ConversationViewModel.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/DataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/DataManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/KeyboardShortcutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/KeyboardShortcutManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/LanguageOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/LanguageOptions.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/LoginView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/ModelSelectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/ModelSelectionManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/NewMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/NewMainView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/main/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/main/SettingView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/menu/MenuBarManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/menu/MenuBarManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/onboarding/AccessibilityOnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/onboarding/AccessibilityOnboardingView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/prompts/PromptPlayground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/prompts/PromptPlayground.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/prompts/PromptStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/prompts/PromptStore.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/prompts/PromptTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/prompts/PromptTemplate.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/prompts/QuickOpen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/prompts/QuickOpen.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/AccountSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/AccountSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/AdvancedSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/AdvancedSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/AppUpdaterHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/AppUpdaterHelper.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/AppUpdaterLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/AppUpdaterLink.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/DefaultsSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/DefaultsSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/GithubProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/GithubProxy.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/ModelsSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/ModelsSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/ProvidersSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/ProvidersSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/SettingsCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/SettingsCard.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/SettingsTabs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/SettingsTabs.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/SettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/settings/StandardSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/settings/StandardSettingsView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/tutorial/NewFeatureIntroductionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/tutorial/NewFeatureIntroductionView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/tutorial/PreferenceInitializerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/tutorial/PreferenceInitializerView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/business/tutorial/StartUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/business/tutorial/StartUpView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/Compacts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/Compacts.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/ConfigurableHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/ConfigurableHeaderView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/ConversationIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/ConversationIconView.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/PlainButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/PlainButton.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/PurpleButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/PurpleButtonStyle.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/StartUpButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/StartUpButtonStyle.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/components/form/MSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/components/form/MSection.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/debuging/AppQuickOpen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/debuging/AppQuickOpen.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/debuging/SelectedText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/debuging/SelectedText.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/prompts.json -------------------------------------------------------------------------------- /XCAChatGPTMac/prompts_zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/prompts_zh.json -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/BatchUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/BatchUpdate.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Diff+AppKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Diff+AppKit.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Diff+UIKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Diff+UIKit.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Diff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Diff.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/ExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/ExtendedDiff.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/ExtendedPatch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/ExtendedPatch+Apply.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/ExtendedPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/ExtendedPatch.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/GenericPatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/GenericPatch.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/LinkedList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/LinkedList.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/NestedBatchUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/NestedBatchUpdate.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/NestedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/NestedDiff.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/NestedExtendedDiff.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/NestedExtendedDiff.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Patch+Apply.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Patch+Apply.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Patch+Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Patch+Sort.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Differ/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Differ/Patch.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/EmojiManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/EmojiManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/Initializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/Initializer.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/KeyMonitorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/KeyMonitorManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/LaunchAtLoginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/LaunchAtLoginManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/RecordManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/RecordManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/StartupPasteboardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/StartupPasteboardManager.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/TypingInPlace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/TypingInPlace.swift -------------------------------------------------------------------------------- /XCAChatGPTMac/utils/WindowBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTMac/utils/WindowBridge.swift -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/openai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/openai.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/openai.imageset/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/openai.imageset/openai.png -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/Assets.xcassets/profile.imageset/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Assets.xcassets/profile.imageset/unnamed.jpg -------------------------------------------------------------------------------- /XCAChatGPTTV/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTTV/ScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/ScrollView.swift -------------------------------------------------------------------------------- /XCAChatGPTTV/XCAChatGPTTVApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTTV/XCAChatGPTTVApp.swift -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/openai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/openai.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/openai.imageset/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/openai.imageset/openai.png -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/profile.imageset/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Assets.xcassets/profile.imageset/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Assets.xcassets/profile.imageset/unnamed.jpg -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XCAChatGPTWatch Watch App/XCAChatGPTWatchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch Watch App/XCAChatGPTWatchApp.swift -------------------------------------------------------------------------------- /XCAChatGPTWatch-Watch-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/XCAChatGPTWatch-Watch-App-Info.plist -------------------------------------------------------------------------------- /docs/Assets/AppIcon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Assets/AppIcon.webp -------------------------------------------------------------------------------- /docs/Assets/Snapshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Assets/Snapshot.gif -------------------------------------------------------------------------------- /docs/Assets/Snapshot.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Assets/Snapshot.mp4 -------------------------------------------------------------------------------- /docs/Design/Agents-Sessions-Plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Agents-Sessions-Plan.md -------------------------------------------------------------------------------- /docs/Design/Colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Colors.md -------------------------------------------------------------------------------- /docs/Design/Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Components.md -------------------------------------------------------------------------------- /docs/Design/Localization-Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Localization-Spec.md -------------------------------------------------------------------------------- /docs/Design/MacContentView-Spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/MacContentView-Spec.md -------------------------------------------------------------------------------- /docs/Design/Settings-Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Settings-Design.md -------------------------------------------------------------------------------- /docs/Design/Settings-Guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Design/Settings-Guidelines.md -------------------------------------------------------------------------------- /docs/Product/ModelDirectory-Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Product/ModelDirectory-Roadmap.md -------------------------------------------------------------------------------- /docs/Product/Requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Product/Requirements.md -------------------------------------------------------------------------------- /docs/Product/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/docs/Product/Roadmap.md -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/changelog -------------------------------------------------------------------------------- /fastlane/changelog.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macaify/MacaifyApp/HEAD/fastlane/changelog.zh.md --------------------------------------------------------------------------------