├── .DS_Store ├── .gitignore ├── LICENSE ├── OllamaSpring.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── xcshareddata │ └── xcschemes │ │ └── OllamaSpring.xcscheme └── xcuserdata │ └── neilstudio.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── OllamaSpring ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024-mac.png │ │ ├── 128-mac.png │ │ ├── 16-mac.png │ │ ├── 256-mac 1.png │ │ ├── 256-mac.png │ │ ├── 32-mac 1.png │ │ ├── 32-mac.png │ │ ├── 512-mac 1.png │ │ ├── 512-mac.png │ │ ├── 64-mac.png │ │ └── Contents.json │ ├── Contents.json │ ├── file-icon-pdf.imageset │ │ ├── Contents.json │ │ └── file-icon-pdf.png │ ├── file-icon-txt.imageset │ │ ├── Contents.json │ │ └── file-icon-txt.png │ ├── ollama-1.imageset │ │ ├── 222.png │ │ └── Contents.json │ ├── ollama-2.imageset │ │ ├── 111.png │ │ └── Contents.json │ └── ollama-3.imageset │ │ ├── Contents.json │ │ └── ollama-1.png ├── Constant.swift ├── Database │ └── RealmModel.swift ├── Info.plist ├── MarkdownStyle.swift ├── Model │ ├── ApiHostModel.swift │ ├── ChatModel.swift │ ├── DeepSeekModel.swift │ ├── GroqModel.swift │ ├── MessageModel.swift │ ├── OllamaModel.swift │ ├── OptionsModel.swift │ └── PreferredResponseLangModel.swift ├── Network │ ├── DeepSeekApi.swift │ ├── GroqApi.swift │ ├── OllamaApi.swift │ └── OllamaSpringModelsApi.swift ├── OllamaSpring.entitlements ├── OllamaSpringApp.swift ├── OllamaSpringRelease.entitlements ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Utilities │ └── common.swift ├── View │ ├── Menu │ │ ├── CheckForUpdatesView.swift │ │ ├── RightTopBarView.swift │ │ └── StatusBarView.swift │ ├── Modal │ │ ├── ConfirmModalView.swift │ │ ├── DeepSeekApiKeyConfigModalView.swift │ │ ├── GroqApiKeyConfigModalView.swift │ │ ├── OllamaHostConfigModalView.swift │ │ └── OllamaLibraryModalView.swift │ ├── Panel │ │ ├── ChatListPanelView.swift │ │ ├── HttpProxyConfigPanelView.swift │ │ ├── MainPanelView.swift │ │ ├── MessagesPanelView.swift │ │ ├── QuickCompletionPanelView.swift │ │ ├── SendMsgPanelView.swift │ │ └── WelcomePanelView.swift │ ├── ScrollViewRow │ │ ├── ChatListRowView.swift │ │ ├── MessagesRowView.swift │ │ └── OllamaLocalModelListRowView.swift │ ├── custom.swift │ └── extension.swift ├── ViewModel │ ├── ChatListViewModel.swift │ ├── CheckForUpdatesViewModel.swift │ ├── CommonViewModel.swift │ ├── MessagesViewModel.swift │ ├── OllamaDownloadViewModel.swift │ └── QuickCompletionViewModel.swift ├── ar.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings └── zh-Hans.lproj │ └── Localizable.strings ├── OllamaSpringTests └── OllamaSpringTests.swift ├── OllamaSpringUITests ├── OllamaSpringUITests.swift └── OllamaSpringUITestsLaunchTests.swift ├── README.md ├── ar.lproj └── Localizable.strings ├── de.lproj └── Localizable.strings ├── en.lproj └── Localizable.strings ├── es.lproj └── Localizable.strings ├── fr.lproj └── Localizable.strings ├── ja.lproj └── Localizable.strings ├── ko.lproj └── Localizable.strings └── zh-Hans.lproj └── Localizable.strings /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/LICENSE -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/xcshareddata/xcschemes/OllamaSpring.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/xcshareddata/xcschemes/OllamaSpring.xcscheme -------------------------------------------------------------------------------- /OllamaSpring.xcodeproj/xcuserdata/neilstudio.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring.xcodeproj/xcuserdata/neilstudio.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OllamaSpring/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/.DS_Store -------------------------------------------------------------------------------- /OllamaSpring/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/AppDelegate.swift -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/1024-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/1024-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/128-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/128-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/16-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/16-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/256-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/256-mac 1.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/256-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/256-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/32-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/32-mac 1.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/32-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/32-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/512-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/512-mac 1.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/512-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/512-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/64-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/64-mac.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/file-icon-pdf.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/file-icon-pdf.imageset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/file-icon-pdf.imageset/file-icon-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/file-icon-pdf.imageset/file-icon-pdf.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/file-icon-txt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/file-icon-txt.imageset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/file-icon-txt.imageset/file-icon-txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/file-icon-txt.imageset/file-icon-txt.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-1.imageset/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-1.imageset/222.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-1.imageset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-2.imageset/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-2.imageset/111.png -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-2.imageset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-3.imageset/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Assets.xcassets/ollama-3.imageset/ollama-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Assets.xcassets/ollama-3.imageset/ollama-1.png -------------------------------------------------------------------------------- /OllamaSpring/Constant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Constant.swift -------------------------------------------------------------------------------- /OllamaSpring/Database/RealmModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Database/RealmModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Info.plist -------------------------------------------------------------------------------- /OllamaSpring/MarkdownStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/MarkdownStyle.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/ApiHostModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/ApiHostModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/ChatModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/ChatModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/DeepSeekModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/DeepSeekModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/GroqModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/GroqModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/MessageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/MessageModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/OllamaModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/OllamaModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/OptionsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/OptionsModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Model/PreferredResponseLangModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Model/PreferredResponseLangModel.swift -------------------------------------------------------------------------------- /OllamaSpring/Network/DeepSeekApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Network/DeepSeekApi.swift -------------------------------------------------------------------------------- /OllamaSpring/Network/GroqApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Network/GroqApi.swift -------------------------------------------------------------------------------- /OllamaSpring/Network/OllamaApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Network/OllamaApi.swift -------------------------------------------------------------------------------- /OllamaSpring/Network/OllamaSpringModelsApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Network/OllamaSpringModelsApi.swift -------------------------------------------------------------------------------- /OllamaSpring/OllamaSpring.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/OllamaSpring.entitlements -------------------------------------------------------------------------------- /OllamaSpring/OllamaSpringApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/OllamaSpringApp.swift -------------------------------------------------------------------------------- /OllamaSpring/OllamaSpringRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/OllamaSpringRelease.entitlements -------------------------------------------------------------------------------- /OllamaSpring/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OllamaSpring/Utilities/common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/Utilities/common.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Menu/CheckForUpdatesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Menu/CheckForUpdatesView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Menu/RightTopBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Menu/RightTopBarView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Menu/StatusBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Menu/StatusBarView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Modal/ConfirmModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Modal/ConfirmModalView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Modal/DeepSeekApiKeyConfigModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Modal/DeepSeekApiKeyConfigModalView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Modal/GroqApiKeyConfigModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Modal/GroqApiKeyConfigModalView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Modal/OllamaHostConfigModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Modal/OllamaHostConfigModalView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Modal/OllamaLibraryModalView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Modal/OllamaLibraryModalView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/ChatListPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/ChatListPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/HttpProxyConfigPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/HttpProxyConfigPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/MainPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/MainPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/MessagesPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/MessagesPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/QuickCompletionPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/QuickCompletionPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/SendMsgPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/SendMsgPanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/Panel/WelcomePanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/Panel/WelcomePanelView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/ScrollViewRow/ChatListRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/ScrollViewRow/ChatListRowView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/ScrollViewRow/MessagesRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/ScrollViewRow/MessagesRowView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/ScrollViewRow/OllamaLocalModelListRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/ScrollViewRow/OllamaLocalModelListRowView.swift -------------------------------------------------------------------------------- /OllamaSpring/View/custom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/custom.swift -------------------------------------------------------------------------------- /OllamaSpring/View/extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/View/extension.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/ChatListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/ChatListViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/CheckForUpdatesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/CheckForUpdatesViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/CommonViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/CommonViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/MessagesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/MessagesViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/OllamaDownloadViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/OllamaDownloadViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ViewModel/QuickCompletionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ViewModel/QuickCompletionViewModel.swift -------------------------------------------------------------------------------- /OllamaSpring/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpring/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpring/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /OllamaSpringTests/OllamaSpringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpringTests/OllamaSpringTests.swift -------------------------------------------------------------------------------- /OllamaSpringUITests/OllamaSpringUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpringUITests/OllamaSpringUITests.swift -------------------------------------------------------------------------------- /OllamaSpringUITests/OllamaSpringUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/OllamaSpringUITests/OllamaSpringUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/README.md -------------------------------------------------------------------------------- /ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyNeil/OllamaSpring/HEAD/zh-Hans.lproj/Localizable.strings --------------------------------------------------------------------------------