├── .editorconfig ├── .env ├── .erb ├── configs │ ├── .eslintrc │ ├── webpack.config.base.ts │ ├── webpack.config.eslint.ts │ ├── webpack.config.main.prod.ts │ ├── webpack.config.preload.dev.ts │ ├── webpack.config.renderer.dev.dll.ts │ ├── webpack.config.renderer.dev.ts │ ├── webpack.config.renderer.prod.ts │ └── webpack.paths.ts ├── img │ ├── erb-banner.svg │ ├── erb-logo.png │ └── palette-sponsor-banner.svg ├── mocks │ └── fileMock.js └── scripts │ ├── .eslintrc │ ├── check-build-exists.ts │ ├── check-native-dep.js │ ├── check-node-env.js │ ├── check-port-in-use.js │ ├── clean.js │ ├── delete-source-maps.js │ ├── electron-builder-debug.js │ ├── electron-rebuild.js │ ├── link-modules.ts │ └── notarize.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── README_EN.md ├── assets ├── assets.d.ts ├── base │ ├── default-platform-icon.png │ └── windows.png ├── fonts │ └── 庞门正道标题体.ttf ├── icon.ico ├── icon.png └── icons │ ├── 128x128.png │ ├── 48x48.png │ ├── 64x64.png │ └── 96x96.png ├── docs ├── contact.png ├── contact2.png ├── first_settings_1.png ├── first_settings_2.png ├── home_settings_1.png ├── home_settings_2.png ├── intro1.jpg ├── intro2.png ├── intro3.png ├── intro4.png ├── intro5.png ├── intro6.png ├── license_AGPL_3.0.svg ├── logo.png ├── other_settings_1.png ├── other_settings_2.png ├── reply_settings_1.png ├── reply_settings_2.png ├── 本地开发-d4eaf7.svg ├── 相关文档-7d09f1.svg └── 立即下载-d4eaf7.svg ├── electron-builder.yml ├── package.json ├── pnpm-lock.yaml ├── release └── app │ ├── package-lock.json │ ├── package.json │ └── pnpm-lock.yaml ├── removeLocales.js ├── src ├── __tests__ │ ├── App.test.tsx │ └── gptproxy.test.js ├── main │ ├── backend │ │ ├── backend.ts │ │ ├── constants │ │ │ └── index.ts │ │ ├── controllers │ │ │ ├── configController.ts │ │ │ ├── keywordReplyController.ts │ │ │ └── messageController.ts │ │ ├── entities │ │ │ ├── config.ts │ │ │ ├── instance.ts │ │ │ ├── keyword.ts │ │ │ ├── message.ts │ │ │ ├── plugin.ts │ │ │ ├── replace.ts │ │ │ ├── session.ts │ │ │ └── transfer.ts │ │ ├── errors │ │ │ └── errors.ts │ │ ├── ormconfig.ts │ │ ├── services │ │ │ ├── appService.ts │ │ │ ├── dispatchService.ts │ │ │ ├── loggerService.ts │ │ │ ├── messageService.ts │ │ │ └── pluginService.ts │ │ └── types │ │ │ └── index.ts │ ├── cron.ts │ ├── gptproxy │ │ ├── README.md │ │ ├── dify │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── resources.ts │ │ ├── ernie │ │ │ ├── index.ts │ │ │ ├── resources │ │ │ │ ├── chat │ │ │ │ │ ├── chat.ts │ │ │ │ │ ├── completions.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── embeddings.ts │ │ │ │ └── index.ts │ │ │ └── util.ts │ │ ├── gemini │ │ │ ├── index.ts │ │ │ ├── resource.ts │ │ │ └── resources │ │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── models.ts │ │ ├── hunyuan │ │ │ ├── index.ts │ │ │ ├── resource.ts │ │ │ └── resources │ │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── minimax │ │ │ ├── error.ts │ │ │ ├── index.ts │ │ │ └── resources │ │ │ │ ├── audio │ │ │ │ ├── audio.ts │ │ │ │ ├── index.ts │ │ │ │ └── speech.ts │ │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ │ ├── embeddings.ts │ │ │ │ └── index.ts │ │ ├── qwen │ │ │ ├── dashscope │ │ │ │ ├── index.ts │ │ │ │ ├── resolvers │ │ │ │ │ ├── chat.ts │ │ │ │ │ ├── completions.ts │ │ │ │ │ ├── embeddings.ts │ │ │ │ │ └── index.ts │ │ │ │ └── types │ │ │ │ │ ├── chat.ts │ │ │ │ │ ├── completions.ts │ │ │ │ │ ├── embeddings.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── openai.ts │ │ │ ├── index.ts │ │ │ └── resources │ │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ │ ├── completions.ts │ │ │ │ ├── embeddings.ts │ │ │ │ ├── images.ts │ │ │ │ └── index.ts │ │ ├── resource.ts │ │ ├── spark │ │ │ ├── index.ts │ │ │ ├── resource.ts │ │ │ └── resources │ │ │ │ ├── chat │ │ │ │ ├── chat.ts │ │ │ │ ├── completions.ts │ │ │ │ └── index.ts │ │ │ │ ├── images.ts │ │ │ │ └── index.ts │ │ ├── streaming.ts │ │ ├── util.ts │ │ └── vyro │ │ │ ├── index.ts │ │ │ ├── resource.ts │ │ │ └── resources │ │ │ ├── images.ts │ │ │ └── index.ts │ ├── ipcHandlers.ts │ ├── main.ts │ ├── menu.ts │ ├── preload.ts │ ├── system │ │ ├── backend.ts │ │ ├── chrome.ts │ │ ├── cron.ts │ │ └── logger.ts │ ├── util.ts │ ├── utils │ │ ├── index.ts │ │ └── strings.ts │ └── windows │ │ ├── dataview-main │ │ └── index.ts │ │ └── settings-main │ │ └── index.ts ├── renderer │ ├── common │ │ ├── App.css │ │ ├── components │ │ │ ├── Markdown │ │ │ │ ├── index.module.scss │ │ │ │ └── index.tsx │ │ │ ├── MyModal │ │ │ │ └── index.tsx │ │ │ ├── MyTextarea │ │ │ │ └── index.tsx │ │ │ └── PageContainer │ │ │ │ └── index.tsx │ │ ├── services │ │ │ ├── analytics │ │ │ │ ├── index.ts │ │ │ │ └── index_template.ts │ │ │ ├── common │ │ │ │ └── api │ │ │ │ │ └── request.ts │ │ │ ├── platform │ │ │ │ ├── constant.ts │ │ │ │ ├── controller.ts │ │ │ │ └── platform.d.ts │ │ │ └── system │ │ │ │ └── controller.ts │ │ ├── styles │ │ │ ├── colors.ts │ │ │ ├── foundations │ │ │ │ ├── IconButton.ts │ │ │ │ └── Table.ts │ │ │ └── theme.ts │ │ └── utils │ │ │ ├── constants │ │ │ └── index.ts │ │ │ └── plugins │ │ │ └── system │ │ │ ├── index.ts │ │ │ └── normal.ts │ ├── dataview-window │ │ ├── App.tsx │ │ ├── components │ │ │ ├── DisplayContextModal │ │ │ │ └── index.tsx │ │ │ ├── EditKeyword │ │ │ │ ├── GlobalSwitch.tsx │ │ │ │ ├── KeywordInput.tsx │ │ │ │ ├── KeywordList.tsx │ │ │ │ ├── PlatformSelector.tsx │ │ │ │ ├── ReplyInput.tsx │ │ │ │ ├── ReplyList.tsx │ │ │ │ └── index.tsx │ │ │ ├── EditReplaceKeyword │ │ │ │ ├── GlobalSwitch.tsx │ │ │ │ ├── KeywordInput.tsx │ │ │ │ ├── KeywordList.tsx │ │ │ │ ├── PlatformSelector.tsx │ │ │ │ ├── ReplaceInput.tsx │ │ │ │ ├── ReplaceList.tsx │ │ │ │ └── index.tsx │ │ │ ├── EditTransferKeyword │ │ │ │ ├── GlobalSwitch.tsx │ │ │ │ ├── KeywordInput.tsx │ │ │ │ ├── KeywordList.tsx │ │ │ │ ├── PlatformSelector.tsx │ │ │ │ └── index.tsx │ │ │ ├── MessageModal │ │ │ │ └── index.tsx │ │ │ ├── ReplaceKeyword │ │ │ │ └── index.tsx │ │ │ ├── ReplyKeyword │ │ │ │ └── index.tsx │ │ │ ├── SessionHistory │ │ │ │ ├── index.css │ │ │ │ └── index.tsx │ │ │ └── TransferKeyword │ │ │ │ └── index.tsx │ │ ├── index.ejs │ │ └── index.tsx │ ├── main-window │ │ ├── App.tsx │ │ ├── components │ │ │ ├── AppManager │ │ │ │ ├── AppCardComponent.tsx │ │ │ │ ├── AppListComponent.tsx │ │ │ │ ├── AppManagerContext.tsx │ │ │ │ ├── InstanceCardComponent.tsx │ │ │ │ ├── InstanceListComponent.tsx │ │ │ │ ├── SearchBarComponent.tsx │ │ │ │ └── index.tsx │ │ │ ├── ErrorBoundary │ │ │ │ └── index.tsx │ │ │ ├── Loader │ │ │ │ ├── index.tsx │ │ │ │ └── loader.css │ │ │ ├── LogBox │ │ │ │ └── index.tsx │ │ │ ├── MyTooltip │ │ │ │ └── index.tsx │ │ │ ├── Panels │ │ │ │ └── index.tsx │ │ │ ├── SystemCheck │ │ │ │ └── index.tsx │ │ │ ├── Updater │ │ │ │ └── index.tsx │ │ │ └── layout │ │ │ │ ├── Footer.tsx │ │ │ │ └── Navbar.tsx │ │ ├── hooks │ │ │ ├── useBroadcastContext.tsx │ │ │ └── useToast.ts │ │ ├── index.ejs │ │ ├── index.tsx │ │ ├── pages │ │ │ ├── FullScreenLoader │ │ │ │ └── index.tsx │ │ │ └── Home │ │ │ │ └── index.tsx │ │ └── stores │ │ │ ├── useGlobalStore.ts │ │ │ └── useSystemStore.ts │ ├── preload.d.ts │ └── settings-window │ │ ├── App.tsx │ │ ├── components │ │ ├── About │ │ │ └── index.tsx │ │ ├── EditKeyword │ │ │ ├── ReplyInput.tsx │ │ │ ├── ReplyList.tsx │ │ │ └── index.tsx │ │ ├── LLMSettings │ │ │ ├── ThirdParty.tsx │ │ │ └── index.tsx │ │ └── Settings │ │ │ ├── AccountSettings.tsx │ │ │ └── GeneralSettings.tsx │ │ ├── index.ejs │ │ ├── index.tsx │ │ ├── pages │ │ ├── Plugin │ │ │ ├── PluginCard.tsx │ │ │ └── index.tsx │ │ └── PluginEdit │ │ │ ├── PluginBasicInfo.tsx │ │ │ ├── PluginEditor.tsx │ │ │ ├── PluginTestPage.tsx │ │ │ └── index.tsx │ │ └── stores │ │ ├── useGlobalStore.ts │ │ └── useSystemStore.ts └── types │ ├── global.d.ts │ ├── node-cron.d.ts │ └── node-windows.d.ts ├── tests └── backend.http └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | PY_HOSTNAME=localhost 2 | PY_PORT=9999 3 | VAR=1234 4 | BKEXE_PATH=./backend/__main__.exe 5 | PKG_VERSION=0.0.1 -------------------------------------------------------------------------------- /.erb/configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/.eslintrc -------------------------------------------------------------------------------- /.erb/configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.eslint.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.dll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.renderer.dev.dll.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.renderer.dev.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.config.renderer.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.config.renderer.prod.ts -------------------------------------------------------------------------------- /.erb/configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/configs/webpack.paths.ts -------------------------------------------------------------------------------- /.erb/img/erb-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/img/erb-banner.svg -------------------------------------------------------------------------------- /.erb/img/erb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/img/erb-logo.png -------------------------------------------------------------------------------- /.erb/img/palette-sponsor-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/img/palette-sponsor-banner.svg -------------------------------------------------------------------------------- /.erb/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.erb/scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/.eslintrc -------------------------------------------------------------------------------- /.erb/scripts/check-build-exists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/check-build-exists.ts -------------------------------------------------------------------------------- /.erb/scripts/check-native-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/check-native-dep.js -------------------------------------------------------------------------------- /.erb/scripts/check-node-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/check-node-env.js -------------------------------------------------------------------------------- /.erb/scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /.erb/scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/clean.js -------------------------------------------------------------------------------- /.erb/scripts/delete-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/delete-source-maps.js -------------------------------------------------------------------------------- /.erb/scripts/electron-builder-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/electron-builder-debug.js -------------------------------------------------------------------------------- /.erb/scripts/electron-rebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/electron-rebuild.js -------------------------------------------------------------------------------- /.erb/scripts/link-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/link-modules.ts -------------------------------------------------------------------------------- /.erb/scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.erb/scripts/notarize.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/README_EN.md -------------------------------------------------------------------------------- /assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/assets.d.ts -------------------------------------------------------------------------------- /assets/base/default-platform-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/base/default-platform-icon.png -------------------------------------------------------------------------------- /assets/base/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/base/windows.png -------------------------------------------------------------------------------- /assets/fonts/庞门正道标题体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/fonts/庞门正道标题体.ttf -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/assets/icons/96x96.png -------------------------------------------------------------------------------- /docs/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/contact.png -------------------------------------------------------------------------------- /docs/contact2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/contact2.png -------------------------------------------------------------------------------- /docs/first_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/first_settings_1.png -------------------------------------------------------------------------------- /docs/first_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/first_settings_2.png -------------------------------------------------------------------------------- /docs/home_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/home_settings_1.png -------------------------------------------------------------------------------- /docs/home_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/home_settings_2.png -------------------------------------------------------------------------------- /docs/intro1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro1.jpg -------------------------------------------------------------------------------- /docs/intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro2.png -------------------------------------------------------------------------------- /docs/intro3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro3.png -------------------------------------------------------------------------------- /docs/intro4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro4.png -------------------------------------------------------------------------------- /docs/intro5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro5.png -------------------------------------------------------------------------------- /docs/intro6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/intro6.png -------------------------------------------------------------------------------- /docs/license_AGPL_3.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/license_AGPL_3.0.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/other_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/other_settings_1.png -------------------------------------------------------------------------------- /docs/other_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/other_settings_2.png -------------------------------------------------------------------------------- /docs/reply_settings_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/reply_settings_1.png -------------------------------------------------------------------------------- /docs/reply_settings_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/reply_settings_2.png -------------------------------------------------------------------------------- /docs/本地开发-d4eaf7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/本地开发-d4eaf7.svg -------------------------------------------------------------------------------- /docs/相关文档-7d09f1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/相关文档-7d09f1.svg -------------------------------------------------------------------------------- /docs/立即下载-d4eaf7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/docs/立即下载-d4eaf7.svg -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /release/app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/release/app/package-lock.json -------------------------------------------------------------------------------- /release/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/release/app/package.json -------------------------------------------------------------------------------- /release/app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/release/app/pnpm-lock.yaml -------------------------------------------------------------------------------- /removeLocales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/removeLocales.js -------------------------------------------------------------------------------- /src/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/__tests__/App.test.tsx -------------------------------------------------------------------------------- /src/__tests__/gptproxy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/__tests__/gptproxy.test.js -------------------------------------------------------------------------------- /src/main/backend/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/backend.ts -------------------------------------------------------------------------------- /src/main/backend/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/constants/index.ts -------------------------------------------------------------------------------- /src/main/backend/controllers/configController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/controllers/configController.ts -------------------------------------------------------------------------------- /src/main/backend/controllers/keywordReplyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/controllers/keywordReplyController.ts -------------------------------------------------------------------------------- /src/main/backend/controllers/messageController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/controllers/messageController.ts -------------------------------------------------------------------------------- /src/main/backend/entities/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/config.ts -------------------------------------------------------------------------------- /src/main/backend/entities/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/instance.ts -------------------------------------------------------------------------------- /src/main/backend/entities/keyword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/keyword.ts -------------------------------------------------------------------------------- /src/main/backend/entities/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/message.ts -------------------------------------------------------------------------------- /src/main/backend/entities/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/plugin.ts -------------------------------------------------------------------------------- /src/main/backend/entities/replace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/replace.ts -------------------------------------------------------------------------------- /src/main/backend/entities/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/session.ts -------------------------------------------------------------------------------- /src/main/backend/entities/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/entities/transfer.ts -------------------------------------------------------------------------------- /src/main/backend/errors/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/errors/errors.ts -------------------------------------------------------------------------------- /src/main/backend/ormconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/ormconfig.ts -------------------------------------------------------------------------------- /src/main/backend/services/appService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/services/appService.ts -------------------------------------------------------------------------------- /src/main/backend/services/dispatchService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/services/dispatchService.ts -------------------------------------------------------------------------------- /src/main/backend/services/loggerService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/services/loggerService.ts -------------------------------------------------------------------------------- /src/main/backend/services/messageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/services/messageService.ts -------------------------------------------------------------------------------- /src/main/backend/services/pluginService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/services/pluginService.ts -------------------------------------------------------------------------------- /src/main/backend/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/backend/types/index.ts -------------------------------------------------------------------------------- /src/main/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/cron.ts -------------------------------------------------------------------------------- /src/main/gptproxy/README.md: -------------------------------------------------------------------------------- 1 | 2 | fork from https://github.com/zhengxs2018/ai -------------------------------------------------------------------------------- /src/main/gptproxy/dify/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/dify/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/dify/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/dify/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/dify/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/dify/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/dify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/dify/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/dify/resources.ts: -------------------------------------------------------------------------------- 1 | export * from './chat/index'; 2 | -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/resources/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/resources/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/resources/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/resources/embeddings.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/resources/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/ernie/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/ernie/util.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resource.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resources/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resources/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resources/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/gemini/resources/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/gemini/resources/models.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/hunyuan/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/hunyuan/resource.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/hunyuan/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/hunyuan/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/resources/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/hunyuan/resources/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/hunyuan/resources/index.ts: -------------------------------------------------------------------------------- 1 | export * from './chat/index'; 2 | -------------------------------------------------------------------------------- /src/main/gptproxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/error.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/audio/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/audio/audio.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/audio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/audio/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/audio/speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/audio/speech.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/embeddings.ts -------------------------------------------------------------------------------- /src/main/gptproxy/minimax/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/minimax/resources/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/resolvers/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/resolvers/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/resolvers/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/resolvers/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/resolvers/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/resolvers/embeddings.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/resolvers/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/types/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/types/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/types/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/types/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/types/embeddings.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/types/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/dashscope/types/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/dashscope/types/openai.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/chat/index.ts: -------------------------------------------------------------------------------- 1 | export * from './chat'; 2 | -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/embeddings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/embeddings.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/images.ts -------------------------------------------------------------------------------- /src/main/gptproxy/qwen/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/qwen/resources/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/resource.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resource.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resources/chat/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resources/chat/chat.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resources/chat/completions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resources/chat/completions.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resources/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resources/chat/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resources/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resources/images.ts -------------------------------------------------------------------------------- /src/main/gptproxy/spark/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/spark/resources/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/streaming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/streaming.ts -------------------------------------------------------------------------------- /src/main/gptproxy/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/util.ts -------------------------------------------------------------------------------- /src/main/gptproxy/vyro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/vyro/index.ts -------------------------------------------------------------------------------- /src/main/gptproxy/vyro/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/vyro/resource.ts -------------------------------------------------------------------------------- /src/main/gptproxy/vyro/resources/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/vyro/resources/images.ts -------------------------------------------------------------------------------- /src/main/gptproxy/vyro/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/gptproxy/vyro/resources/index.ts -------------------------------------------------------------------------------- /src/main/ipcHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/ipcHandlers.ts -------------------------------------------------------------------------------- /src/main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/main.ts -------------------------------------------------------------------------------- /src/main/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/menu.ts -------------------------------------------------------------------------------- /src/main/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/preload.ts -------------------------------------------------------------------------------- /src/main/system/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/system/backend.ts -------------------------------------------------------------------------------- /src/main/system/chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/system/chrome.ts -------------------------------------------------------------------------------- /src/main/system/cron.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/system/cron.ts -------------------------------------------------------------------------------- /src/main/system/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/system/logger.ts -------------------------------------------------------------------------------- /src/main/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/util.ts -------------------------------------------------------------------------------- /src/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/utils/index.ts -------------------------------------------------------------------------------- /src/main/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/utils/strings.ts -------------------------------------------------------------------------------- /src/main/windows/dataview-main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/windows/dataview-main/index.ts -------------------------------------------------------------------------------- /src/main/windows/settings-main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/main/windows/settings-main/index.ts -------------------------------------------------------------------------------- /src/renderer/common/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/App.css -------------------------------------------------------------------------------- /src/renderer/common/components/Markdown/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/components/Markdown/index.module.scss -------------------------------------------------------------------------------- /src/renderer/common/components/Markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/components/Markdown/index.tsx -------------------------------------------------------------------------------- /src/renderer/common/components/MyModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/components/MyModal/index.tsx -------------------------------------------------------------------------------- /src/renderer/common/components/MyTextarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/components/MyTextarea/index.tsx -------------------------------------------------------------------------------- /src/renderer/common/components/PageContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/components/PageContainer/index.tsx -------------------------------------------------------------------------------- /src/renderer/common/services/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/analytics/index.ts -------------------------------------------------------------------------------- /src/renderer/common/services/analytics/index_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/analytics/index_template.ts -------------------------------------------------------------------------------- /src/renderer/common/services/common/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/common/api/request.ts -------------------------------------------------------------------------------- /src/renderer/common/services/platform/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/platform/constant.ts -------------------------------------------------------------------------------- /src/renderer/common/services/platform/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/platform/controller.ts -------------------------------------------------------------------------------- /src/renderer/common/services/platform/platform.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/platform/platform.d.ts -------------------------------------------------------------------------------- /src/renderer/common/services/system/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/services/system/controller.ts -------------------------------------------------------------------------------- /src/renderer/common/styles/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/styles/colors.ts -------------------------------------------------------------------------------- /src/renderer/common/styles/foundations/IconButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/styles/foundations/IconButton.ts -------------------------------------------------------------------------------- /src/renderer/common/styles/foundations/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/styles/foundations/Table.ts -------------------------------------------------------------------------------- /src/renderer/common/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/styles/theme.ts -------------------------------------------------------------------------------- /src/renderer/common/utils/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/utils/constants/index.ts -------------------------------------------------------------------------------- /src/renderer/common/utils/plugins/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/utils/plugins/system/index.ts -------------------------------------------------------------------------------- /src/renderer/common/utils/plugins/system/normal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/common/utils/plugins/system/normal.ts -------------------------------------------------------------------------------- /src/renderer/dataview-window/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/App.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/DisplayContextModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/DisplayContextModal/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/GlobalSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/GlobalSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/KeywordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/KeywordInput.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/KeywordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/KeywordList.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/PlatformSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/PlatformSelector.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/ReplyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/ReplyInput.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/ReplyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/ReplyList.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/GlobalSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/GlobalSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/KeywordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/KeywordInput.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/KeywordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/KeywordList.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/PlatformSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/PlatformSelector.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/ReplaceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/ReplaceInput.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/ReplaceList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/ReplaceList.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditReplaceKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditReplaceKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditTransferKeyword/GlobalSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditTransferKeyword/GlobalSwitch.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditTransferKeyword/KeywordInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditTransferKeyword/KeywordInput.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditTransferKeyword/KeywordList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditTransferKeyword/KeywordList.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditTransferKeyword/PlatformSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditTransferKeyword/PlatformSelector.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/EditTransferKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/EditTransferKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/MessageModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/MessageModal/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/ReplaceKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/ReplaceKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/ReplyKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/ReplyKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/SessionHistory/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/SessionHistory/index.css -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/SessionHistory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/SessionHistory/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/components/TransferKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/components/TransferKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/dataview-window/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/index.ejs -------------------------------------------------------------------------------- /src/renderer/dataview-window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/dataview-window/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/App.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/AppCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/AppCardComponent.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/AppListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/AppListComponent.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/AppManagerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/AppManagerContext.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/InstanceCardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/InstanceCardComponent.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/InstanceListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/InstanceListComponent.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/SearchBarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/SearchBarComponent.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/AppManager/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/AppManager/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/ErrorBoundary/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/ErrorBoundary/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/Loader/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/Loader/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/Loader/loader.css -------------------------------------------------------------------------------- /src/renderer/main-window/components/LogBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/LogBox/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/MyTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/MyTooltip/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/Panels/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/Panels/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/SystemCheck/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/SystemCheck/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/Updater/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/Updater/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/layout/Footer.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/components/layout/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/components/layout/Navbar.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/hooks/useBroadcastContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/hooks/useBroadcastContext.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/hooks/useToast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/hooks/useToast.ts -------------------------------------------------------------------------------- /src/renderer/main-window/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/index.ejs -------------------------------------------------------------------------------- /src/renderer/main-window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/pages/FullScreenLoader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/pages/FullScreenLoader/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/renderer/main-window/stores/useGlobalStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/stores/useGlobalStore.ts -------------------------------------------------------------------------------- /src/renderer/main-window/stores/useSystemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/main-window/stores/useSystemStore.ts -------------------------------------------------------------------------------- /src/renderer/preload.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/preload.d.ts -------------------------------------------------------------------------------- /src/renderer/settings-window/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/App.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/About/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/EditKeyword/ReplyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/EditKeyword/ReplyInput.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/EditKeyword/ReplyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/EditKeyword/ReplyList.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/EditKeyword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/EditKeyword/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/LLMSettings/ThirdParty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/LLMSettings/ThirdParty.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/LLMSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/LLMSettings/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/Settings/AccountSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/Settings/AccountSettings.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/components/Settings/GeneralSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/components/Settings/GeneralSettings.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/index.ejs -------------------------------------------------------------------------------- /src/renderer/settings-window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/Plugin/PluginCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/Plugin/PluginCard.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/Plugin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/Plugin/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/PluginEdit/PluginBasicInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/PluginEdit/PluginBasicInfo.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/PluginEdit/PluginEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/PluginEdit/PluginEditor.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/PluginEdit/PluginTestPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/PluginEdit/PluginTestPage.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/pages/PluginEdit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/pages/PluginEdit/index.tsx -------------------------------------------------------------------------------- /src/renderer/settings-window/stores/useGlobalStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/stores/useGlobalStore.ts -------------------------------------------------------------------------------- /src/renderer/settings-window/stores/useSystemStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/renderer/settings-window/stores/useSystemStore.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/node-cron.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'node-cron'; 2 | -------------------------------------------------------------------------------- /src/types/node-windows.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/src/types/node-windows.d.ts -------------------------------------------------------------------------------- /tests/backend.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/tests/backend.http -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs-lazy-tools/ChatGPT-On-CS/HEAD/tsconfig.json --------------------------------------------------------------------------------