├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── docker-image-static.yml │ ├── docker-image.yml │ └── docs.yml ├── .gitignore ├── .npmrc ├── Dockerfile ├── LICENSE ├── README.md ├── app.vue ├── components ├── ApiKeyDialog.vue ├── Conversation.vue ├── DocumentsManage.vue ├── MessageActions.vue ├── ModelDialog.vue ├── ModelParameters.client.vue ├── MsgContent.vue ├── MsgEditor.vue ├── NavigationDrawer.vue ├── Prompt.vue ├── Welcome.vue ├── WelcomeCard.vue └── settings │ └── Languages.vue ├── composables ├── fetch.js └── states.js ├── demos ├── bmc_qr.png ├── demo.gif ├── demo.mp4 └── demo.png ├── deployment.sh ├── docker-compose.dev.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── docs ├── .vuepress │ ├── config.ts │ ├── configs │ │ ├── index.ts │ │ ├── navbar │ │ │ ├── en.ts │ │ │ ├── index.ts │ │ │ └── zh.ts │ │ └── sidebar │ │ │ ├── en.ts │ │ │ ├── index.ts │ │ │ └── zh.ts │ └── public │ │ └── images │ │ └── bmc_qr.png ├── README.md ├── guide │ ├── buymeacoffee.md │ ├── configuration.md │ ├── development.md │ ├── problems.md │ └── quick-start.md └── zh │ ├── README.md │ └── guide │ ├── buymeacoffee.md │ ├── configuration.md │ ├── development.md │ ├── problems.md │ └── quick-start.md ├── lang ├── en-US.json ├── es-ES.json ├── fr-FR.json ├── ru-RU.json └── zh-CN.json ├── layouts ├── default.vue └── vuetifyApp.vue ├── middleware └── auth.ts ├── nginx.conf ├── nuxt.config.ts ├── package.json ├── pages ├── account │ ├── onboarding.vue │ ├── resetPassword.vue │ ├── signin.vue │ ├── signup.vue │ └── verify-email.vue └── index.vue ├── plugins ├── initApiKey.js ├── settings.js └── vuetify.js ├── public ├── favicon.ico ├── icon-black.svg ├── icon.png └── robots.txt ├── server └── middleware │ └── apiProxy.ts ├── static.Dockerfile ├── test ├── myproject │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── pipelines.py │ ├── settings.py │ └── spiders │ │ └── __init__.py └── scrapy.cfg ├── tsconfig.json ├── utils ├── enums.js ├── helper.js └── localStorage.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.github/workflows/docker-image-static.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/app.vue -------------------------------------------------------------------------------- /components/ApiKeyDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/ApiKeyDialog.vue -------------------------------------------------------------------------------- /components/Conversation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/Conversation.vue -------------------------------------------------------------------------------- /components/DocumentsManage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/DocumentsManage.vue -------------------------------------------------------------------------------- /components/MessageActions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/MessageActions.vue -------------------------------------------------------------------------------- /components/ModelDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/ModelDialog.vue -------------------------------------------------------------------------------- /components/ModelParameters.client.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/ModelParameters.client.vue -------------------------------------------------------------------------------- /components/MsgContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/MsgContent.vue -------------------------------------------------------------------------------- /components/MsgEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/MsgEditor.vue -------------------------------------------------------------------------------- /components/NavigationDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/NavigationDrawer.vue -------------------------------------------------------------------------------- /components/Prompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/Prompt.vue -------------------------------------------------------------------------------- /components/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/Welcome.vue -------------------------------------------------------------------------------- /components/WelcomeCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/WelcomeCard.vue -------------------------------------------------------------------------------- /components/settings/Languages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/components/settings/Languages.vue -------------------------------------------------------------------------------- /composables/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/composables/fetch.js -------------------------------------------------------------------------------- /composables/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/composables/states.js -------------------------------------------------------------------------------- /demos/bmc_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/demos/bmc_qr.png -------------------------------------------------------------------------------- /demos/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/demos/demo.gif -------------------------------------------------------------------------------- /demos/demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/demos/demo.mp4 -------------------------------------------------------------------------------- /demos/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/demos/demo.png -------------------------------------------------------------------------------- /deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/deployment.sh -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.vuepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/config.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/navbar/en.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/navbar/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/navbar/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/navbar/zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/sidebar/en.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/sidebar/index.ts -------------------------------------------------------------------------------- /docs/.vuepress/configs/sidebar/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/configs/sidebar/zh.ts -------------------------------------------------------------------------------- /docs/.vuepress/public/images/bmc_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/.vuepress/public/images/bmc_qr.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/guide/buymeacoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/guide/buymeacoffee.md -------------------------------------------------------------------------------- /docs/guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/guide/configuration.md -------------------------------------------------------------------------------- /docs/guide/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/guide/development.md -------------------------------------------------------------------------------- /docs/guide/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/guide/problems.md -------------------------------------------------------------------------------- /docs/guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/guide/quick-start.md -------------------------------------------------------------------------------- /docs/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/README.md -------------------------------------------------------------------------------- /docs/zh/guide/buymeacoffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/guide/buymeacoffee.md -------------------------------------------------------------------------------- /docs/zh/guide/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/guide/configuration.md -------------------------------------------------------------------------------- /docs/zh/guide/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/guide/development.md -------------------------------------------------------------------------------- /docs/zh/guide/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/guide/problems.md -------------------------------------------------------------------------------- /docs/zh/guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/docs/zh/guide/quick-start.md -------------------------------------------------------------------------------- /lang/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/lang/en-US.json -------------------------------------------------------------------------------- /lang/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/lang/es-ES.json -------------------------------------------------------------------------------- /lang/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/lang/fr-FR.json -------------------------------------------------------------------------------- /lang/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/lang/ru-RU.json -------------------------------------------------------------------------------- /lang/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/lang/zh-CN.json -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/vuetifyApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/layouts/vuetifyApp.vue -------------------------------------------------------------------------------- /middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/middleware/auth.ts -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/nginx.conf -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/package.json -------------------------------------------------------------------------------- /pages/account/onboarding.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/account/onboarding.vue -------------------------------------------------------------------------------- /pages/account/resetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/account/resetPassword.vue -------------------------------------------------------------------------------- /pages/account/signin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/account/signin.vue -------------------------------------------------------------------------------- /pages/account/signup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/account/signup.vue -------------------------------------------------------------------------------- /pages/account/verify-email.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/account/verify-email.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/pages/index.vue -------------------------------------------------------------------------------- /plugins/initApiKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/plugins/initApiKey.js -------------------------------------------------------------------------------- /plugins/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/plugins/settings.js -------------------------------------------------------------------------------- /plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/plugins/vuetify.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/public/icon-black.svg -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /server/middleware/apiProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/server/middleware/apiProxy.ts -------------------------------------------------------------------------------- /static.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/static.Dockerfile -------------------------------------------------------------------------------- /test/myproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/myproject/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/myproject/items.py -------------------------------------------------------------------------------- /test/myproject/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/myproject/middlewares.py -------------------------------------------------------------------------------- /test/myproject/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/myproject/pipelines.py -------------------------------------------------------------------------------- /test/myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/myproject/settings.py -------------------------------------------------------------------------------- /test/myproject/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/myproject/spiders/__init__.py -------------------------------------------------------------------------------- /test/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/test/scrapy.cfg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/utils/enums.js -------------------------------------------------------------------------------- /utils/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/utils/helper.js -------------------------------------------------------------------------------- /utils/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/utils/localStorage.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atohallan/chatgpt-ui/HEAD/yarn.lock --------------------------------------------------------------------------------