├── .gitignore ├── ChatGKD.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── ChatGKD ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── chatgkd-icon.png │ └── Contents.json ├── ChatGKD.xcdatamodeld │ ├── .xccurrentversion │ └── ChatGKD.xcdatamodel │ │ └── contents ├── ChatGKDApp.swift ├── ChatListView.swift ├── ContentView.swift ├── HistoryChatView.swift ├── MainView.swift ├── Model │ └── ChatModel.swift ├── Persistence.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SettingsView.swift └── Utils │ ├── ChatGPTHelper.swift │ └── ChatProvider.swift ├── README.md ├── assets ├── index-47f8a1c6.js └── index-c837ffa6.css ├── index.html ├── manifest.webmanifest ├── registerSW.js ├── resources ├── chatgkd-icon.png ├── history.PNG ├── main.PNG └── web.jpeg ├── sw.js ├── web ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc.json ├── .vscode │ └── extensions.json ├── README.md ├── assets │ ├── index-452cecbb.js │ └── index-f97c6ee6.css ├── env.d.ts ├── index.html ├── package-lock.json ├── package.json ├── src │ ├── App.vue │ ├── AppState.ts │ ├── ChatGPTAPI.ts │ ├── OpenAIChatAPI.ts │ ├── assets │ │ └── main.css │ └── main.ts ├── tsconfig.config.json ├── tsconfig.json └── vite.config.ts └── workbox-7369c0e1.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatGKD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatGKD.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatGKD.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChatGKD.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /ChatGKD/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ChatGKD/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatGKD/Assets.xcassets/AppIcon.appiconset/chatgkd-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Assets.xcassets/AppIcon.appiconset/chatgkd-icon.png -------------------------------------------------------------------------------- /ChatGKD/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatGKD/ChatGKD.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/ChatGKD.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /ChatGKD/ChatGKD.xcdatamodeld/ChatGKD.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/ChatGKD.xcdatamodeld/ChatGKD.xcdatamodel/contents -------------------------------------------------------------------------------- /ChatGKD/ChatGKDApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/ChatGKDApp.swift -------------------------------------------------------------------------------- /ChatGKD/ChatListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/ChatListView.swift -------------------------------------------------------------------------------- /ChatGKD/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/ContentView.swift -------------------------------------------------------------------------------- /ChatGKD/HistoryChatView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/HistoryChatView.swift -------------------------------------------------------------------------------- /ChatGKD/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/MainView.swift -------------------------------------------------------------------------------- /ChatGKD/Model/ChatModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Model/ChatModel.swift -------------------------------------------------------------------------------- /ChatGKD/Persistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Persistence.swift -------------------------------------------------------------------------------- /ChatGKD/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatGKD/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/SettingsView.swift -------------------------------------------------------------------------------- /ChatGKD/Utils/ChatGPTHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Utils/ChatGPTHelper.swift -------------------------------------------------------------------------------- /ChatGKD/Utils/ChatProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/ChatGKD/Utils/ChatProvider.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/README.md -------------------------------------------------------------------------------- /assets/index-47f8a1c6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/assets/index-47f8a1c6.js -------------------------------------------------------------------------------- /assets/index-c837ffa6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/assets/index-c837ffa6.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/index.html -------------------------------------------------------------------------------- /manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/manifest.webmanifest -------------------------------------------------------------------------------- /registerSW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/registerSW.js -------------------------------------------------------------------------------- /resources/chatgkd-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/resources/chatgkd-icon.png -------------------------------------------------------------------------------- /resources/history.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/resources/history.PNG -------------------------------------------------------------------------------- /resources/main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/resources/main.PNG -------------------------------------------------------------------------------- /resources/web.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/resources/web.jpeg -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/sw.js -------------------------------------------------------------------------------- /web/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/.eslintrc.cjs -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /web/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/.vscode/extensions.json -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/README.md -------------------------------------------------------------------------------- /web/assets/index-452cecbb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/assets/index-452cecbb.js -------------------------------------------------------------------------------- /web/assets/index-f97c6ee6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/assets/index-f97c6ee6.css -------------------------------------------------------------------------------- /web/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/AppState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/AppState.ts -------------------------------------------------------------------------------- /web/src/ChatGPTAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/ChatGPTAPI.ts -------------------------------------------------------------------------------- /web/src/OpenAIChatAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/OpenAIChatAPI.ts -------------------------------------------------------------------------------- /web/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/assets/main.css -------------------------------------------------------------------------------- /web/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/src/main.ts -------------------------------------------------------------------------------- /web/tsconfig.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/tsconfig.config.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/web/vite.config.ts -------------------------------------------------------------------------------- /workbox-7369c0e1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingcos/ChatGKD/HEAD/workbox-7369c0e1.js --------------------------------------------------------------------------------