├── Chatbot.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── motianjun4.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Chatbot ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Chatbot.entitlements ├── ChatbotApp.swift ├── Info.plist ├── Model │ ├── ChatGPTAPI.swift │ ├── ChatGPTWebViewStore.swift │ ├── ModelData.swift │ ├── WebViewStore.swift │ └── script.js ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── View │ ├── Chat.swift │ ├── ChatGPTAuth.swift │ ├── ChatGPTPage.swift │ ├── ContentView.swift │ ├── MessageRow.swift │ └── WebView.swift ├── LICENSE ├── images ├── 2022-12-13-13-04-03.png ├── 2022-12-13-13-05-41.png └── 2022-12-13-13-06-42.png ├── readme.md └── server └── .gitignore /Chatbot.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chatbot.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chatbot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Chatbot.xcodeproj/xcuserdata/motianjun4.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot.xcodeproj/xcuserdata/motianjun4.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Chatbot/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Chatbot/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chatbot/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chatbot/Chatbot.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Chatbot.entitlements -------------------------------------------------------------------------------- /Chatbot/ChatbotApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/ChatbotApp.swift -------------------------------------------------------------------------------- /Chatbot/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Info.plist -------------------------------------------------------------------------------- /Chatbot/Model/ChatGPTAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Model/ChatGPTAPI.swift -------------------------------------------------------------------------------- /Chatbot/Model/ChatGPTWebViewStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Model/ChatGPTWebViewStore.swift -------------------------------------------------------------------------------- /Chatbot/Model/ModelData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Model/ModelData.swift -------------------------------------------------------------------------------- /Chatbot/Model/WebViewStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Model/WebViewStore.swift -------------------------------------------------------------------------------- /Chatbot/Model/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Model/script.js -------------------------------------------------------------------------------- /Chatbot/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Chatbot/View/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/Chat.swift -------------------------------------------------------------------------------- /Chatbot/View/ChatGPTAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/ChatGPTAuth.swift -------------------------------------------------------------------------------- /Chatbot/View/ChatGPTPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/ChatGPTPage.swift -------------------------------------------------------------------------------- /Chatbot/View/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/ContentView.swift -------------------------------------------------------------------------------- /Chatbot/View/MessageRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/MessageRow.swift -------------------------------------------------------------------------------- /Chatbot/View/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/Chatbot/View/WebView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /images/2022-12-13-13-04-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/images/2022-12-13-13-04-03.png -------------------------------------------------------------------------------- /images/2022-12-13-13-05-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/images/2022-12-13-13-05-41.png -------------------------------------------------------------------------------- /images/2022-12-13-13-06-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/images/2022-12-13-13-06-42.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motianjun4/ChatGPT_Chatbot/HEAD/readme.md -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | .kpt-pipeline 2 | venv --------------------------------------------------------------------------------