├── .gitignore ├── LICENSE ├── README.md ├── README_CH.md ├── README_JP.md ├── README_KR.md ├── appstore.md ├── changelog.md ├── image_en.jpg ├── image_settings.jpg ├── macollama.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── macollama.xcscheme └── macollama ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── 1024.png │ ├── 128.png │ ├── 16.png │ ├── 256.png │ ├── 32.png │ ├── 512.png │ ├── 64.png │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist ├── Models └── ChatMessage.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── Services ├── Network │ ├── LLMService.swift │ └── swift_llm_bridge.swift └── Persistence │ ├── DatabaseManager.swift │ └── Localized.swift ├── ViewModels ├── ChatViewModel.swift └── SidebarViewModel.swift ├── Views ├── Components │ ├── CenterAlertView.swift │ ├── ImageButton.swift │ ├── MessageBubble.swift │ ├── MessageInputView.swift │ └── ModelSelectionMenu.swift ├── DetailView.swift ├── Settings │ └── SettingsView.swift └── SidebarView.swift ├── en.lproj ├── InfoPlist.strings └── Localizable.strings ├── ja.lproj ├── InfoPlist.strings └── Localizable.strings ├── ko.lproj ├── InfoPlist.strings └── Localizable.strings ├── macollama.entitlements ├── macollamaApp.swift └── zh-Hans.lproj ├── InfoPlist.strings └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/README.md -------------------------------------------------------------------------------- /README_CH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/README_CH.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/README_JP.md -------------------------------------------------------------------------------- /README_KR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/README_KR.md -------------------------------------------------------------------------------- /appstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/appstore.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/changelog.md -------------------------------------------------------------------------------- /image_en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/image_en.jpg -------------------------------------------------------------------------------- /image_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/image_settings.jpg -------------------------------------------------------------------------------- /macollama.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macollama.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macollama.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /macollama.xcodeproj/xcshareddata/xcschemes/macollama.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama.xcodeproj/xcshareddata/xcschemes/macollama.xcscheme -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /macollama/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macollama/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macollama/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ContentView.swift -------------------------------------------------------------------------------- /macollama/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Info.plist -------------------------------------------------------------------------------- /macollama/Models/ChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Models/ChatMessage.swift -------------------------------------------------------------------------------- /macollama/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macollama/Services/Network/LLMService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Services/Network/LLMService.swift -------------------------------------------------------------------------------- /macollama/Services/Network/swift_llm_bridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Services/Network/swift_llm_bridge.swift -------------------------------------------------------------------------------- /macollama/Services/Persistence/DatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Services/Persistence/DatabaseManager.swift -------------------------------------------------------------------------------- /macollama/Services/Persistence/Localized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Services/Persistence/Localized.swift -------------------------------------------------------------------------------- /macollama/ViewModels/ChatViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ViewModels/ChatViewModel.swift -------------------------------------------------------------------------------- /macollama/ViewModels/SidebarViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ViewModels/SidebarViewModel.swift -------------------------------------------------------------------------------- /macollama/Views/Components/CenterAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Components/CenterAlertView.swift -------------------------------------------------------------------------------- /macollama/Views/Components/ImageButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Components/ImageButton.swift -------------------------------------------------------------------------------- /macollama/Views/Components/MessageBubble.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Components/MessageBubble.swift -------------------------------------------------------------------------------- /macollama/Views/Components/MessageInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Components/MessageInputView.swift -------------------------------------------------------------------------------- /macollama/Views/Components/ModelSelectionMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Components/ModelSelectionMenu.swift -------------------------------------------------------------------------------- /macollama/Views/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/DetailView.swift -------------------------------------------------------------------------------- /macollama/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /macollama/Views/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/Views/SidebarView.swift -------------------------------------------------------------------------------- /macollama/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macollama/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /macollama/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macollama/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /macollama/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macollama/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /macollama/macollama.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/macollama.entitlements -------------------------------------------------------------------------------- /macollama/macollamaApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/macollamaApp.swift -------------------------------------------------------------------------------- /macollama/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /macollama/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bipark/mac_llm_client/HEAD/macollama/zh-Hans.lproj/Localizable.strings --------------------------------------------------------------------------------