├── .env.example ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── funding.yml ├── .gitignore ├── .idea ├── .gitignore ├── chatgpt-web.iml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLibraryMappings.xml ├── modules.xml └── vcs.xml ├── .npmrc ├── Dockerfile ├── LICENSE ├── README.md ├── app.vue ├── components ├── AppData.vue ├── AppSidebar.vue ├── Chat.vue ├── Chat │ ├── ClientDropdown.vue │ └── ClientSettings.vue └── Icons │ ├── BingIcon.vue │ └── GPTIcon.vue ├── demos ├── client-dropdown.png ├── client-settings.png └── client.png ├── fork-corner.js ├── nuxt.config.js ├── package.json ├── public ├── favicon.ico └── icon.png ├── stores ├── app.js ├── conversations.js └── presets.js ├── tailwind.config.js └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | API_BASE_URL=http://localhost:3000 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: [waylaidwanderer] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/chatgpt-web.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/chatgpt-web.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | strict-peer-dependencies=false 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/app.vue -------------------------------------------------------------------------------- /components/AppData.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/AppData.vue -------------------------------------------------------------------------------- /components/AppSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/AppSidebar.vue -------------------------------------------------------------------------------- /components/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/Chat.vue -------------------------------------------------------------------------------- /components/Chat/ClientDropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/Chat/ClientDropdown.vue -------------------------------------------------------------------------------- /components/Chat/ClientSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/Chat/ClientSettings.vue -------------------------------------------------------------------------------- /components/Icons/BingIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/Icons/BingIcon.vue -------------------------------------------------------------------------------- /components/Icons/GPTIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/components/Icons/GPTIcon.vue -------------------------------------------------------------------------------- /demos/client-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/demos/client-dropdown.png -------------------------------------------------------------------------------- /demos/client-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/demos/client-settings.png -------------------------------------------------------------------------------- /demos/client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/demos/client.png -------------------------------------------------------------------------------- /fork-corner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/fork-corner.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/public/icon.png -------------------------------------------------------------------------------- /stores/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/stores/app.js -------------------------------------------------------------------------------- /stores/conversations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/stores/conversations.js -------------------------------------------------------------------------------- /stores/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/stores/presets.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylaidwanderer/PandoraAI/HEAD/tsconfig.json --------------------------------------------------------------------------------