├── .bundle └── config ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── custom.md │ └── feature_request.yaml ├── PULL_REQUEST_TEMPLATE │ ├── default.md │ └── pull_request_template.md ├── assets │ ├── 302ai.jpg │ ├── icons │ │ └── appstorebadge.svg │ └── screenshots │ │ └── chatmate-gpt-ios.jpg ├── config.yml ├── config │ └── changelog_configuration.json ├── stale.yml └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierrc.js ├── .vscode ├── extensions.json └── settings.json ├── .watchmanconfig ├── Gemfile ├── LICENSE ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── build.gradle │ ├── chatmate.keystore │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── github │ │ │ │ └── funnyzak │ │ │ │ └── chatmate │ │ │ │ └── ReactNativeFlipper.java │ │ └── res │ │ │ └── values │ │ │ └── ic_launcher_background.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── github │ │ │ │ └── funnyzak │ │ │ │ └── chatmate │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── chatmate.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── layout │ │ │ └── launch_screen.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── release │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── github │ │ └── funnyzak │ │ └── v2ex │ │ └── ReactNativeFlipper.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── global.d.ts ├── index.js ├── ios ├── .xcode.env ├── Podfile ├── _xcode.env ├── app-Bridging-Header.h ├── app.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── app.xcscheme ├── app.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── app │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 102.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 172.png │ │ │ ├── 180.png │ │ │ ├── 196.png │ │ │ ├── 20.png │ │ │ ├── 216.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 48.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 55.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 66.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ ├── 92.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── chatmate.imageset │ │ │ ├── Contents.json │ │ │ └── chatmate.svg │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── app.entitlements │ ├── appRelease.entitlements │ └── main.m ├── appTests │ ├── Info.plist │ └── appTests.m └── bridge.swift ├── metro.config.js ├── node-version ├── package.json ├── patches ├── @react-navigation │ └── core+6.4.8.patch ├── react-native-gifted-chat+2.0.1.patch └── react-native-numeric-input+1.9.1.patch ├── plop ├── component │ ├── append.hbs │ ├── component.hbs │ ├── index.hbs │ └── prompt.cjs └── screen │ ├── append.hbs │ ├── index.hbs │ ├── prompt.cjs │ └── screen.hbs ├── plopfile.cjs ├── src ├── App.tsx ├── actions │ ├── CacheActions.ts │ ├── ChatActions.ts │ ├── ChatSettingActions.ts │ ├── OpenAISettingActions.ts │ ├── RestActions.ts │ ├── SettingActions.ts │ ├── index.ts │ └── types.ts ├── api │ ├── index.ts │ ├── lib │ │ ├── account.ts │ │ ├── completion.ts │ │ └── index.ts │ └── types.ts ├── assets │ └── images │ │ └── light │ │ ├── drawer │ │ ├── add.png │ │ ├── add@2x.png │ │ ├── add@3x.png │ │ ├── appCenter.png │ │ ├── appCenter@2x.png │ │ ├── appCenter@3x.png │ │ ├── chat.png │ │ ├── chat@2x.png │ │ ├── chat@3x.png │ │ ├── darkMode.png │ │ ├── darkMode@2x.png │ │ ├── darkMode@3x.png │ │ ├── recycle.png │ │ ├── recycle@2x.png │ │ ├── recycle@3x.png │ │ ├── setting.png │ │ ├── setting@2x.png │ │ ├── setting@3x.png │ │ ├── share.png │ │ ├── share@2x.png │ │ └── share@3x.png │ │ ├── form │ │ ├── send.png │ │ ├── send@2x.png │ │ └── send@3x.png │ │ ├── general │ │ ├── chatgpt.png │ │ ├── chatgpt@2x.png │ │ └── chatgpt@3x.png │ │ ├── header │ │ ├── back.png │ │ ├── back@2x.png │ │ ├── back@3x.png │ │ ├── edit.png │ │ ├── edit@2x.png │ │ ├── edit@3x.png │ │ ├── message.png │ │ ├── message@2x.png │ │ └── message@3x.png │ │ └── setting │ │ ├── apiKey.png │ │ ├── apiKey@2x.png │ │ ├── apiKey@3x.png │ │ ├── apiServer.png │ │ ├── apiServer@2x.png │ │ ├── apiServer@3x.png │ │ ├── chatModel.png │ │ ├── chatModel@2x.png │ │ ├── chatModel@3x.png │ │ ├── darkMode.png │ │ ├── darkMode@2x.png │ │ ├── darkMode@3x.png │ │ ├── email.png │ │ ├── email@2x.png │ │ ├── email@3x.png │ │ ├── language.png │ │ ├── language@2x.png │ │ ├── language@3x.png │ │ ├── lightMode.png │ │ ├── lightMode@2x.png │ │ ├── lightMode@3x.png │ │ ├── limitCount.png │ │ ├── limitCount@2x.png │ │ ├── limitCount@3x.png │ │ ├── privacyPolicy.png │ │ ├── privacyPolicy@2x.png │ │ ├── privacyPolicy@3x.png │ │ ├── right-arrow.png │ │ ├── right-arrow@2x.png │ │ ├── right-arrow@3x.png │ │ ├── share.png │ │ ├── share@2x.png │ │ ├── share@3x.png │ │ ├── theme.png │ │ ├── theme@2x.png │ │ └── theme@3x.png ├── components │ ├── actions-sheet │ │ ├── Btn.tsx │ │ ├── ConfirmSheet.tsx │ │ ├── ContentSheet.tsx │ │ ├── MenuSheet.tsx │ │ ├── NodeSheet.tsx │ │ └── index.ts │ ├── atoms │ │ ├── index.ts │ │ └── logo │ │ │ └── index.tsx │ ├── avatar │ │ └── index.tsx │ ├── common │ │ ├── Button.tsx │ │ ├── CheckUpdate.tsx │ │ ├── HideKeyword.tsx │ │ ├── Input.tsx │ │ ├── Placeholder.tsx │ │ ├── Spinner.tsx │ │ ├── Text.tsx │ │ └── index.ts │ ├── header │ │ └── index.tsx │ ├── index.ts │ ├── loading-modal │ │ └── index.tsx │ ├── loading │ │ └── index.tsx │ ├── search-bar │ │ ├── ClearIcon.tsx │ │ ├── SearchBar.tsx │ │ ├── SearchIcon.tsx │ │ └── index.ts │ └── toast │ │ ├── ToastContext.ts │ │ ├── ToastProvider.tsx │ │ └── index.ts ├── config │ ├── constants.ts │ ├── index.ts │ └── prompt │ │ ├── index.ts │ │ ├── prompt.en-US.json │ │ ├── prompt.zh-CN.json │ │ ├── prompt.zh-TW.json │ │ └── prompts.json ├── helper │ ├── app.ts │ ├── chatHelper.ts │ ├── conversation.ts │ ├── demo.ts │ ├── icloudHelper.ts │ ├── index.ts │ ├── logger.ts │ ├── openai.ts │ ├── papaparse.ts │ ├── quickAction.ts │ ├── resourcePrompts.ts │ └── tts.ts ├── hooks │ ├── index.ts │ ├── useChatAction.ts │ ├── useChatMessageAction.ts │ ├── useGPTChat.ts │ ├── useICloud.ts │ └── useSettingAction.ts ├── i18n │ ├── i18n.ts │ ├── index.ts │ ├── locales │ │ ├── en-US.json │ │ ├── ja-JP.json │ │ ├── zh-CN.json │ │ └── zh-TW.json │ └── translate.ts ├── navigation │ ├── NavigationService.ts │ ├── Navigator.tsx │ ├── ScreenHelper.tsx │ ├── index.ts │ └── routes.ts ├── reducers │ ├── AppReducer.ts │ ├── CacheReducer.ts │ ├── ChatReducer.ts │ ├── ChatSettingReducer.ts │ ├── OpenAiSettingReducer.ts │ ├── SettingReducer.ts │ └── index.ts ├── screens │ ├── chat │ │ ├── Chat.tsx │ │ ├── ChatDrawer.tsx │ │ ├── Shortcut.tsx │ │ ├── SideBarChat.tsx │ │ └── index.ts │ ├── components │ │ ├── action-sheet │ │ │ ├── SubmitSheet.tsx │ │ │ ├── SubmitSheets.tsx │ │ │ ├── WebSheet.tsx │ │ │ └── index.ts │ │ ├── chat │ │ │ ├── Bubble.tsx │ │ │ ├── ChatConverstation.tsx │ │ │ ├── ChatStyles.ts │ │ │ ├── Conversations.tsx │ │ │ ├── GPTChat.tsx │ │ │ ├── MessageText.tsx │ │ │ └── index.ts │ │ ├── common │ │ │ ├── Form.tsx │ │ │ ├── General.tsx │ │ │ ├── Header.tsx │ │ │ ├── Icons.tsx │ │ │ └── index.ts │ │ ├── context-menu │ │ │ ├── ChatContextMenu.tsx │ │ │ ├── ChatContextMenu2.tsx │ │ │ ├── MessageContextMenu.tsx │ │ │ ├── MessageContextMenu2.tsx │ │ │ └── index.tsx │ │ ├── edit │ │ │ ├── EditApiIdentifier.tsx │ │ │ ├── EditChatAvatar.tsx │ │ │ ├── EditChatPrompt.tsx │ │ │ ├── EditChatTitle.tsx │ │ │ ├── EditChatUserName.tsx │ │ │ ├── Input2Save.tsx │ │ │ ├── Input2Submit.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── list │ │ │ ├── TableList.tsx │ │ │ └── index.ts │ │ ├── setting │ │ │ ├── SettingActionSheets.tsx │ │ │ ├── SettingICloud.tsx │ │ │ ├── SettingOpenAI.tsx │ │ │ ├── SettingOptions.tsx │ │ │ ├── SettingTable.tsx │ │ │ └── index.ts │ │ ├── shortcut │ │ │ ├── PromptShortcuts.tsx │ │ │ └── index.ts │ │ ├── sidebar │ │ │ ├── SettingSideBar.tsx │ │ │ └── index.ts │ │ └── statusbar │ │ │ └── index.tsx │ ├── edit │ │ ├── EditChatTitle.tsx │ │ └── index.ts │ ├── general │ │ ├── OpenSource.tsx │ │ ├── WebViewer.tsx │ │ └── index.ts │ ├── index.ts │ ├── setting │ │ ├── ApiKeyConfig.tsx │ │ ├── ApiKeys.tsx │ │ ├── ApiServerConfig.tsx │ │ ├── ApiServers.tsx │ │ ├── PrivacyPolicy.tsx │ │ ├── Setting.tsx │ │ ├── SettingAI.tsx │ │ ├── SettingApp.tsx │ │ ├── SettingChat.tsx │ │ ├── SettingTheme.tsx │ │ ├── URLScheme.tsx │ │ └── index.ts │ └── sync │ │ ├── ICloudSync.tsx │ │ └── index.ts ├── store │ ├── index.ts │ └── types.ts ├── svg │ ├── ChatMate.tsx │ ├── index.tsx │ ├── other │ │ ├── Add.tsx │ │ ├── AddApp.tsx │ │ ├── Api.tsx │ │ ├── AppCenter.tsx │ │ ├── ArrowDown.tsx │ │ ├── ArrowLeft.tsx │ │ ├── ArrowRight.tsx │ │ ├── ArrowUp.tsx │ │ ├── CalcNum.tsx │ │ ├── Char.tsx │ │ ├── Chat.tsx │ │ ├── ChatGPT.tsx │ │ ├── ChatModel.tsx │ │ ├── Chats.tsx │ │ ├── Clear.tsx │ │ ├── Close.tsx │ │ ├── Digg.tsx │ │ ├── Download.tsx │ │ ├── Edit.tsx │ │ ├── Email.tsx │ │ ├── Faq.tsx │ │ ├── Image.tsx │ │ ├── Info.tsx │ │ ├── Key.tsx │ │ ├── Language.tsx │ │ ├── LightMode.tsx │ │ ├── Like.tsx │ │ ├── Logout.tsx │ │ ├── Markdown.tsx │ │ ├── Max.tsx │ │ ├── Message.tsx │ │ ├── More.tsx │ │ ├── NewChat.tsx │ │ ├── NightMode.tsx │ │ ├── OpenSource.tsx │ │ ├── PrivacyPolicy.tsx │ │ ├── Refresh.tsx │ │ ├── Replay.tsx │ │ ├── Send.tsx │ │ ├── Server.tsx │ │ ├── Setting.tsx │ │ ├── Share.tsx │ │ ├── Theme.tsx │ │ ├── Translate.tsx │ │ ├── Web.tsx │ │ └── index.ts │ ├── radio-button │ │ ├── RadioButton.tsx │ │ ├── RadioButtonSelected.tsx │ │ └── index.ts │ └── societ │ │ ├── Discord.tsx │ │ ├── Github.tsx │ │ ├── Telegram.tsx │ │ ├── Twitter.tsx │ │ ├── Weibo.tsx │ │ └── index.ts ├── theme │ ├── ThemeContext.ts │ ├── ThemeProvider.tsx │ ├── black │ │ ├── colors.ts │ │ └── typography.ts │ ├── common.ts │ ├── grey │ │ ├── assets.ts │ │ ├── colors.ts │ │ ├── dimens.ts │ │ ├── spacing.ts │ │ └── typography.ts │ ├── index.ts │ ├── lovely │ │ ├── colors.ts │ │ └── typography.ts │ ├── moon │ │ ├── colors.ts │ │ └── typography.ts │ ├── themes.ts │ └── types.ts ├── types │ └── index.ts └── utils │ ├── adapter.ts │ ├── alert.ts │ ├── clipboard.ts │ ├── date.ts │ ├── devices.ts │ ├── gpt.ts │ ├── haptic.ts │ ├── index.ts │ ├── openai-api │ ├── api.ts │ ├── base.ts │ ├── common.ts │ ├── configuration.ts │ └── index.ts │ ├── paging.ts │ ├── params.ts │ ├── parser.ts │ ├── promise.ts │ ├── urls.ts │ ├── utils.ts │ └── uuid.ts ├── target └── npmlist.json ├── tsconfig.json └── yarn.lock /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.bundle/config -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/utils/openai-api -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/PULL_REQUEST_TEMPLATE/default.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/assets/302ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/assets/302ai.jpg -------------------------------------------------------------------------------- /.github/assets/icons/appstorebadge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/assets/icons/appstorebadge.svg -------------------------------------------------------------------------------- /.github/assets/screenshots/chatmate-gpt-ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/assets/screenshots/chatmate-gpt-ios.jpg -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/config/changelog_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/config/changelog_configuration.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/chatmate.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/chatmate.keystore -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/debug/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/debug/java/github/funnyzak/chatmate/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/debug/java/github/funnyzak/chatmate/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/debug/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/debug/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/java/github/funnyzak/chatmate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/java/github/funnyzak/chatmate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/github/funnyzak/chatmate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/java/github/funnyzak/chatmate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/chatmate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/drawable/chatmate.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/release/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/release/java/github/funnyzak/v2ex/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/app/src/release/java/github/funnyzak/v2ex/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/babel.config.js -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/global.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | export NODE_BINARY=$(command -v node) 2 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/_xcode.env -------------------------------------------------------------------------------- /ios/app-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app-Bridging-Header.h -------------------------------------------------------------------------------- /ios/app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/app.xcodeproj/xcshareddata/xcschemes/app.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app.xcodeproj/xcshareddata/xcschemes/app.xcscheme -------------------------------------------------------------------------------- /ios/app.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/app.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/app/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/AppDelegate.h -------------------------------------------------------------------------------- /ios/app/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/AppDelegate.mm -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /ios/app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/app/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/app/Images.xcassets/chatmate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/chatmate.imageset/Contents.json -------------------------------------------------------------------------------- /ios/app/Images.xcassets/chatmate.imageset/chatmate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Images.xcassets/chatmate.imageset/chatmate.svg -------------------------------------------------------------------------------- /ios/app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/Info.plist -------------------------------------------------------------------------------- /ios/app/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/app/app.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/app.entitlements -------------------------------------------------------------------------------- /ios/app/appRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/appRelease.entitlements -------------------------------------------------------------------------------- /ios/app/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/app/main.m -------------------------------------------------------------------------------- /ios/appTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/appTests/Info.plist -------------------------------------------------------------------------------- /ios/appTests/appTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/appTests/appTests.m -------------------------------------------------------------------------------- /ios/bridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/ios/bridge.swift -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/metro.config.js -------------------------------------------------------------------------------- /node-version: -------------------------------------------------------------------------------- 1 | 18 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/package.json -------------------------------------------------------------------------------- /patches/@react-navigation/core+6.4.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/patches/@react-navigation/core+6.4.8.patch -------------------------------------------------------------------------------- /patches/react-native-gifted-chat+2.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/patches/react-native-gifted-chat+2.0.1.patch -------------------------------------------------------------------------------- /patches/react-native-numeric-input+1.9.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/patches/react-native-numeric-input+1.9.1.patch -------------------------------------------------------------------------------- /plop/component/append.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/component/append.hbs -------------------------------------------------------------------------------- /plop/component/component.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/component/component.hbs -------------------------------------------------------------------------------- /plop/component/index.hbs: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by leon on {{ dtime }} 3 | */ -------------------------------------------------------------------------------- /plop/component/prompt.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/component/prompt.cjs -------------------------------------------------------------------------------- /plop/screen/append.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/screen/append.hbs -------------------------------------------------------------------------------- /plop/screen/index.hbs: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by leon on {{ dtime }} 3 | */ 4 | -------------------------------------------------------------------------------- /plop/screen/prompt.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/screen/prompt.cjs -------------------------------------------------------------------------------- /plop/screen/screen.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plop/screen/screen.hbs -------------------------------------------------------------------------------- /plopfile.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/plopfile.cjs -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/actions/CacheActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/CacheActions.ts -------------------------------------------------------------------------------- /src/actions/ChatActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/ChatActions.ts -------------------------------------------------------------------------------- /src/actions/ChatSettingActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/ChatSettingActions.ts -------------------------------------------------------------------------------- /src/actions/OpenAISettingActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/OpenAISettingActions.ts -------------------------------------------------------------------------------- /src/actions/RestActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/RestActions.ts -------------------------------------------------------------------------------- /src/actions/SettingActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/SettingActions.ts -------------------------------------------------------------------------------- /src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/index.ts -------------------------------------------------------------------------------- /src/actions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/actions/types.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/lib/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/api/lib/account.ts -------------------------------------------------------------------------------- /src/api/lib/completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/api/lib/completion.ts -------------------------------------------------------------------------------- /src/api/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/api/lib/index.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/assets/images/light/drawer/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/add.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/add@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/add@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/appCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/appCenter.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/appCenter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/appCenter@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/appCenter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/appCenter@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/chat.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/chat@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/chat@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/darkMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/darkMode.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/darkMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/darkMode@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/darkMode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/darkMode@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/recycle.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/recycle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/recycle@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/recycle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/recycle@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/setting.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/setting@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/setting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/setting@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/share.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/share@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/drawer/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/drawer/share@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/form/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/form/send.png -------------------------------------------------------------------------------- /src/assets/images/light/form/send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/form/send@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/form/send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/form/send@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/general/chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/general/chatgpt.png -------------------------------------------------------------------------------- /src/assets/images/light/general/chatgpt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/general/chatgpt@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/general/chatgpt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/general/chatgpt@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/back.png -------------------------------------------------------------------------------- /src/assets/images/light/header/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/back@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/back@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/edit.png -------------------------------------------------------------------------------- /src/assets/images/light/header/edit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/edit@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/edit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/edit@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/message.png -------------------------------------------------------------------------------- /src/assets/images/light/header/message@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/message@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/header/message@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/header/message@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiKey.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiKey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiKey@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiKey@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiKey@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiServer.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiServer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiServer@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/apiServer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/apiServer@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/chatModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/chatModel.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/chatModel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/chatModel@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/chatModel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/chatModel@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/darkMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/darkMode.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/darkMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/darkMode@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/darkMode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/darkMode@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/email.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/email@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/email@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/email@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/language.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/language@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/language@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/language@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/language@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/lightMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/lightMode.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/lightMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/lightMode@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/lightMode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/lightMode@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/limitCount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/limitCount.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/limitCount@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/limitCount@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/limitCount@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/limitCount@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/privacyPolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/privacyPolicy.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/privacyPolicy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/privacyPolicy@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/privacyPolicy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/privacyPolicy@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/right-arrow.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/right-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/right-arrow@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/right-arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/right-arrow@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/share.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/share@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/share@3x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/theme.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/theme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/theme@2x.png -------------------------------------------------------------------------------- /src/assets/images/light/setting/theme@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/assets/images/light/setting/theme@3x.png -------------------------------------------------------------------------------- /src/components/actions-sheet/Btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/Btn.tsx -------------------------------------------------------------------------------- /src/components/actions-sheet/ConfirmSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/ConfirmSheet.tsx -------------------------------------------------------------------------------- /src/components/actions-sheet/ContentSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/ContentSheet.tsx -------------------------------------------------------------------------------- /src/components/actions-sheet/MenuSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/MenuSheet.tsx -------------------------------------------------------------------------------- /src/components/actions-sheet/NodeSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/NodeSheet.tsx -------------------------------------------------------------------------------- /src/components/actions-sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/actions-sheet/index.ts -------------------------------------------------------------------------------- /src/components/atoms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/atoms/index.ts -------------------------------------------------------------------------------- /src/components/atoms/logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/atoms/logo/index.tsx -------------------------------------------------------------------------------- /src/components/avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/avatar/index.tsx -------------------------------------------------------------------------------- /src/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/Button.tsx -------------------------------------------------------------------------------- /src/components/common/CheckUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/CheckUpdate.tsx -------------------------------------------------------------------------------- /src/components/common/HideKeyword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/HideKeyword.tsx -------------------------------------------------------------------------------- /src/components/common/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/Input.tsx -------------------------------------------------------------------------------- /src/components/common/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/Placeholder.tsx -------------------------------------------------------------------------------- /src/components/common/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/Spinner.tsx -------------------------------------------------------------------------------- /src/components/common/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/Text.tsx -------------------------------------------------------------------------------- /src/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/common/index.ts -------------------------------------------------------------------------------- /src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/header/index.tsx -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/components/loading-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/loading-modal/index.tsx -------------------------------------------------------------------------------- /src/components/loading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/loading/index.tsx -------------------------------------------------------------------------------- /src/components/search-bar/ClearIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/search-bar/ClearIcon.tsx -------------------------------------------------------------------------------- /src/components/search-bar/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/search-bar/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/search-bar/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/search-bar/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/search-bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/search-bar/index.ts -------------------------------------------------------------------------------- /src/components/toast/ToastContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/toast/ToastContext.ts -------------------------------------------------------------------------------- /src/components/toast/ToastProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/toast/ToastProvider.tsx -------------------------------------------------------------------------------- /src/components/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/components/toast/index.ts -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/config/prompt/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/prompt/index.ts -------------------------------------------------------------------------------- /src/config/prompt/prompt.en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/prompt/prompt.en-US.json -------------------------------------------------------------------------------- /src/config/prompt/prompt.zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/prompt/prompt.zh-CN.json -------------------------------------------------------------------------------- /src/config/prompt/prompt.zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/prompt/prompt.zh-TW.json -------------------------------------------------------------------------------- /src/config/prompt/prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/config/prompt/prompts.json -------------------------------------------------------------------------------- /src/helper/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/app.ts -------------------------------------------------------------------------------- /src/helper/chatHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/chatHelper.ts -------------------------------------------------------------------------------- /src/helper/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/conversation.ts -------------------------------------------------------------------------------- /src/helper/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/demo.ts -------------------------------------------------------------------------------- /src/helper/icloudHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/icloudHelper.ts -------------------------------------------------------------------------------- /src/helper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/index.ts -------------------------------------------------------------------------------- /src/helper/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/logger.ts -------------------------------------------------------------------------------- /src/helper/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/openai.ts -------------------------------------------------------------------------------- /src/helper/papaparse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/papaparse.ts -------------------------------------------------------------------------------- /src/helper/quickAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/quickAction.ts -------------------------------------------------------------------------------- /src/helper/resourcePrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/resourcePrompts.ts -------------------------------------------------------------------------------- /src/helper/tts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/helper/tts.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useChatAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/useChatAction.ts -------------------------------------------------------------------------------- /src/hooks/useChatMessageAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/useChatMessageAction.ts -------------------------------------------------------------------------------- /src/hooks/useGPTChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/useGPTChat.ts -------------------------------------------------------------------------------- /src/hooks/useICloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/useICloud.ts -------------------------------------------------------------------------------- /src/hooks/useSettingAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/hooks/useSettingAction.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/locales/en-US.json -------------------------------------------------------------------------------- /src/i18n/locales/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/locales/ja-JP.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/locales/zh-CN.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/locales/zh-TW.json -------------------------------------------------------------------------------- /src/i18n/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/i18n/translate.ts -------------------------------------------------------------------------------- /src/navigation/NavigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/navigation/NavigationService.ts -------------------------------------------------------------------------------- /src/navigation/Navigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/navigation/Navigator.tsx -------------------------------------------------------------------------------- /src/navigation/ScreenHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/navigation/ScreenHelper.tsx -------------------------------------------------------------------------------- /src/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/navigation/index.ts -------------------------------------------------------------------------------- /src/navigation/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/navigation/routes.ts -------------------------------------------------------------------------------- /src/reducers/AppReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/AppReducer.ts -------------------------------------------------------------------------------- /src/reducers/CacheReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/CacheReducer.ts -------------------------------------------------------------------------------- /src/reducers/ChatReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/ChatReducer.ts -------------------------------------------------------------------------------- /src/reducers/ChatSettingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/ChatSettingReducer.ts -------------------------------------------------------------------------------- /src/reducers/OpenAiSettingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/OpenAiSettingReducer.ts -------------------------------------------------------------------------------- /src/reducers/SettingReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/SettingReducer.ts -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/screens/chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/chat/Chat.tsx -------------------------------------------------------------------------------- /src/screens/chat/ChatDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/chat/ChatDrawer.tsx -------------------------------------------------------------------------------- /src/screens/chat/Shortcut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/chat/Shortcut.tsx -------------------------------------------------------------------------------- /src/screens/chat/SideBarChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/chat/SideBarChat.tsx -------------------------------------------------------------------------------- /src/screens/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/chat/index.ts -------------------------------------------------------------------------------- /src/screens/components/action-sheet/SubmitSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/action-sheet/SubmitSheet.tsx -------------------------------------------------------------------------------- /src/screens/components/action-sheet/SubmitSheets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/action-sheet/SubmitSheets.tsx -------------------------------------------------------------------------------- /src/screens/components/action-sheet/WebSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/action-sheet/WebSheet.tsx -------------------------------------------------------------------------------- /src/screens/components/action-sheet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/action-sheet/index.ts -------------------------------------------------------------------------------- /src/screens/components/chat/Bubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/Bubble.tsx -------------------------------------------------------------------------------- /src/screens/components/chat/ChatConverstation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/ChatConverstation.tsx -------------------------------------------------------------------------------- /src/screens/components/chat/ChatStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/ChatStyles.ts -------------------------------------------------------------------------------- /src/screens/components/chat/Conversations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/Conversations.tsx -------------------------------------------------------------------------------- /src/screens/components/chat/GPTChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/GPTChat.tsx -------------------------------------------------------------------------------- /src/screens/components/chat/MessageText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/MessageText.tsx -------------------------------------------------------------------------------- /src/screens/components/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/chat/index.ts -------------------------------------------------------------------------------- /src/screens/components/common/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/common/Form.tsx -------------------------------------------------------------------------------- /src/screens/components/common/General.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/common/General.tsx -------------------------------------------------------------------------------- /src/screens/components/common/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/common/Header.tsx -------------------------------------------------------------------------------- /src/screens/components/common/Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/common/Icons.tsx -------------------------------------------------------------------------------- /src/screens/components/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/common/index.ts -------------------------------------------------------------------------------- /src/screens/components/context-menu/ChatContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/context-menu/ChatContextMenu.tsx -------------------------------------------------------------------------------- /src/screens/components/context-menu/ChatContextMenu2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/context-menu/ChatContextMenu2.tsx -------------------------------------------------------------------------------- /src/screens/components/context-menu/MessageContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/context-menu/MessageContextMenu.tsx -------------------------------------------------------------------------------- /src/screens/components/context-menu/MessageContextMenu2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/context-menu/MessageContextMenu2.tsx -------------------------------------------------------------------------------- /src/screens/components/context-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/context-menu/index.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/EditApiIdentifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/EditApiIdentifier.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/EditChatAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/EditChatAvatar.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/EditChatPrompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/EditChatPrompt.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/EditChatTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/EditChatTitle.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/EditChatUserName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/EditChatUserName.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/Input2Save.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/Input2Save.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/Input2Submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/Input2Submit.tsx -------------------------------------------------------------------------------- /src/screens/components/edit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/edit/index.ts -------------------------------------------------------------------------------- /src/screens/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/index.ts -------------------------------------------------------------------------------- /src/screens/components/list/TableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/list/TableList.tsx -------------------------------------------------------------------------------- /src/screens/components/list/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by Leon at 2023-03-14. 3 | */ 4 | 5 | export * from './TableList' 6 | -------------------------------------------------------------------------------- /src/screens/components/setting/SettingActionSheets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/SettingActionSheets.tsx -------------------------------------------------------------------------------- /src/screens/components/setting/SettingICloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/SettingICloud.tsx -------------------------------------------------------------------------------- /src/screens/components/setting/SettingOpenAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/SettingOpenAI.tsx -------------------------------------------------------------------------------- /src/screens/components/setting/SettingOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/SettingOptions.tsx -------------------------------------------------------------------------------- /src/screens/components/setting/SettingTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/SettingTable.tsx -------------------------------------------------------------------------------- /src/screens/components/setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/setting/index.ts -------------------------------------------------------------------------------- /src/screens/components/shortcut/PromptShortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/shortcut/PromptShortcuts.tsx -------------------------------------------------------------------------------- /src/screens/components/shortcut/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/shortcut/index.ts -------------------------------------------------------------------------------- /src/screens/components/sidebar/SettingSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/sidebar/SettingSideBar.tsx -------------------------------------------------------------------------------- /src/screens/components/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/sidebar/index.ts -------------------------------------------------------------------------------- /src/screens/components/statusbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/components/statusbar/index.tsx -------------------------------------------------------------------------------- /src/screens/edit/EditChatTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/edit/EditChatTitle.tsx -------------------------------------------------------------------------------- /src/screens/edit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/edit/index.ts -------------------------------------------------------------------------------- /src/screens/general/OpenSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/general/OpenSource.tsx -------------------------------------------------------------------------------- /src/screens/general/WebViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/general/WebViewer.tsx -------------------------------------------------------------------------------- /src/screens/general/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/general/index.ts -------------------------------------------------------------------------------- /src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/index.ts -------------------------------------------------------------------------------- /src/screens/setting/ApiKeyConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/ApiKeyConfig.tsx -------------------------------------------------------------------------------- /src/screens/setting/ApiKeys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/ApiKeys.tsx -------------------------------------------------------------------------------- /src/screens/setting/ApiServerConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/ApiServerConfig.tsx -------------------------------------------------------------------------------- /src/screens/setting/ApiServers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/ApiServers.tsx -------------------------------------------------------------------------------- /src/screens/setting/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/screens/setting/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/Setting.tsx -------------------------------------------------------------------------------- /src/screens/setting/SettingAI.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/SettingAI.tsx -------------------------------------------------------------------------------- /src/screens/setting/SettingApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/SettingApp.tsx -------------------------------------------------------------------------------- /src/screens/setting/SettingChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/SettingChat.tsx -------------------------------------------------------------------------------- /src/screens/setting/SettingTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/SettingTheme.tsx -------------------------------------------------------------------------------- /src/screens/setting/URLScheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/URLScheme.tsx -------------------------------------------------------------------------------- /src/screens/setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/setting/index.ts -------------------------------------------------------------------------------- /src/screens/sync/ICloudSync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/sync/ICloudSync.tsx -------------------------------------------------------------------------------- /src/screens/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/screens/sync/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/store/types.ts -------------------------------------------------------------------------------- /src/svg/ChatMate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/ChatMate.tsx -------------------------------------------------------------------------------- /src/svg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/index.tsx -------------------------------------------------------------------------------- /src/svg/other/Add.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Add.tsx -------------------------------------------------------------------------------- /src/svg/other/AddApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/AddApp.tsx -------------------------------------------------------------------------------- /src/svg/other/Api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Api.tsx -------------------------------------------------------------------------------- /src/svg/other/AppCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/AppCenter.tsx -------------------------------------------------------------------------------- /src/svg/other/ArrowDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ArrowDown.tsx -------------------------------------------------------------------------------- /src/svg/other/ArrowLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ArrowLeft.tsx -------------------------------------------------------------------------------- /src/svg/other/ArrowRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ArrowRight.tsx -------------------------------------------------------------------------------- /src/svg/other/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ArrowUp.tsx -------------------------------------------------------------------------------- /src/svg/other/CalcNum.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/CalcNum.tsx -------------------------------------------------------------------------------- /src/svg/other/Char.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Char.tsx -------------------------------------------------------------------------------- /src/svg/other/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Chat.tsx -------------------------------------------------------------------------------- /src/svg/other/ChatGPT.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ChatGPT.tsx -------------------------------------------------------------------------------- /src/svg/other/ChatModel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/ChatModel.tsx -------------------------------------------------------------------------------- /src/svg/other/Chats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Chats.tsx -------------------------------------------------------------------------------- /src/svg/other/Clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Clear.tsx -------------------------------------------------------------------------------- /src/svg/other/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Close.tsx -------------------------------------------------------------------------------- /src/svg/other/Digg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Digg.tsx -------------------------------------------------------------------------------- /src/svg/other/Download.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Download.tsx -------------------------------------------------------------------------------- /src/svg/other/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Edit.tsx -------------------------------------------------------------------------------- /src/svg/other/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Email.tsx -------------------------------------------------------------------------------- /src/svg/other/Faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Faq.tsx -------------------------------------------------------------------------------- /src/svg/other/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Image.tsx -------------------------------------------------------------------------------- /src/svg/other/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Info.tsx -------------------------------------------------------------------------------- /src/svg/other/Key.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Key.tsx -------------------------------------------------------------------------------- /src/svg/other/Language.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Language.tsx -------------------------------------------------------------------------------- /src/svg/other/LightMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/LightMode.tsx -------------------------------------------------------------------------------- /src/svg/other/Like.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Like.tsx -------------------------------------------------------------------------------- /src/svg/other/Logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Logout.tsx -------------------------------------------------------------------------------- /src/svg/other/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Markdown.tsx -------------------------------------------------------------------------------- /src/svg/other/Max.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Max.tsx -------------------------------------------------------------------------------- /src/svg/other/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Message.tsx -------------------------------------------------------------------------------- /src/svg/other/More.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/More.tsx -------------------------------------------------------------------------------- /src/svg/other/NewChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/NewChat.tsx -------------------------------------------------------------------------------- /src/svg/other/NightMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/NightMode.tsx -------------------------------------------------------------------------------- /src/svg/other/OpenSource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/OpenSource.tsx -------------------------------------------------------------------------------- /src/svg/other/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/svg/other/Refresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Refresh.tsx -------------------------------------------------------------------------------- /src/svg/other/Replay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Replay.tsx -------------------------------------------------------------------------------- /src/svg/other/Send.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Send.tsx -------------------------------------------------------------------------------- /src/svg/other/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Server.tsx -------------------------------------------------------------------------------- /src/svg/other/Setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Setting.tsx -------------------------------------------------------------------------------- /src/svg/other/Share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Share.tsx -------------------------------------------------------------------------------- /src/svg/other/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Theme.tsx -------------------------------------------------------------------------------- /src/svg/other/Translate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Translate.tsx -------------------------------------------------------------------------------- /src/svg/other/Web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/Web.tsx -------------------------------------------------------------------------------- /src/svg/other/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/other/index.ts -------------------------------------------------------------------------------- /src/svg/radio-button/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/radio-button/RadioButton.tsx -------------------------------------------------------------------------------- /src/svg/radio-button/RadioButtonSelected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/radio-button/RadioButtonSelected.tsx -------------------------------------------------------------------------------- /src/svg/radio-button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/radio-button/index.ts -------------------------------------------------------------------------------- /src/svg/societ/Discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/Discord.tsx -------------------------------------------------------------------------------- /src/svg/societ/Github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/Github.tsx -------------------------------------------------------------------------------- /src/svg/societ/Telegram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/Telegram.tsx -------------------------------------------------------------------------------- /src/svg/societ/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/Twitter.tsx -------------------------------------------------------------------------------- /src/svg/societ/Weibo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/Weibo.tsx -------------------------------------------------------------------------------- /src/svg/societ/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/svg/societ/index.ts -------------------------------------------------------------------------------- /src/theme/ThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/ThemeContext.ts -------------------------------------------------------------------------------- /src/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/theme/black/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/black/colors.ts -------------------------------------------------------------------------------- /src/theme/black/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/black/typography.ts -------------------------------------------------------------------------------- /src/theme/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/common.ts -------------------------------------------------------------------------------- /src/theme/grey/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/grey/assets.ts -------------------------------------------------------------------------------- /src/theme/grey/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/grey/colors.ts -------------------------------------------------------------------------------- /src/theme/grey/dimens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/grey/dimens.ts -------------------------------------------------------------------------------- /src/theme/grey/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/grey/spacing.ts -------------------------------------------------------------------------------- /src/theme/grey/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/grey/typography.ts -------------------------------------------------------------------------------- /src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/index.ts -------------------------------------------------------------------------------- /src/theme/lovely/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/lovely/colors.ts -------------------------------------------------------------------------------- /src/theme/lovely/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/lovely/typography.ts -------------------------------------------------------------------------------- /src/theme/moon/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/moon/colors.ts -------------------------------------------------------------------------------- /src/theme/moon/typography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/moon/typography.ts -------------------------------------------------------------------------------- /src/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/themes.ts -------------------------------------------------------------------------------- /src/theme/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/theme/types.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/adapter.ts -------------------------------------------------------------------------------- /src/utils/alert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/alert.ts -------------------------------------------------------------------------------- /src/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/clipboard.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/devices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/devices.ts -------------------------------------------------------------------------------- /src/utils/gpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/gpt.ts -------------------------------------------------------------------------------- /src/utils/haptic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/haptic.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/openai-api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/openai-api/api.ts -------------------------------------------------------------------------------- /src/utils/openai-api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/openai-api/base.ts -------------------------------------------------------------------------------- /src/utils/openai-api/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/openai-api/common.ts -------------------------------------------------------------------------------- /src/utils/openai-api/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/openai-api/configuration.ts -------------------------------------------------------------------------------- /src/utils/openai-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/openai-api/index.ts -------------------------------------------------------------------------------- /src/utils/paging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/paging.ts -------------------------------------------------------------------------------- /src/utils/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/params.ts -------------------------------------------------------------------------------- /src/utils/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/parser.ts -------------------------------------------------------------------------------- /src/utils/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/promise.ts -------------------------------------------------------------------------------- /src/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/urls.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/src/utils/uuid.ts -------------------------------------------------------------------------------- /target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/target/npmlist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funnyzak/ChatMate-GPT/HEAD/yarn.lock --------------------------------------------------------------------------------