PandoraAI is a web chat client powered by node-chatgpt-api, allowing users to easily chat with multiple AI systems while also offering support for custom presets. With its seamless and convenient design, PandoraAI provides an engaging conversational AI experience.
Built using Nuxt 3, a Vue 3 framework.
You may also use PandoraAI with other API server implementations as long as the endpoints are compatible.
- Chat with all the AI that
node-chatgpt-api
supports, includinggpt-3.5-turbo
,text-davinci-003
, ChatGPT, and Bing. - Supports creating multiple presets for each client.
- Choose between different clients or custom presets.
- Everything is stored in local storage, so you can use this client without an account, and it can be imported or exported to other devices.
- Some extra features:
- Support for deleting messages and copying Markdown sources
- Support for rendering LaTeX formula
- Typing preview
- Dockerfile optimization
- UI icon beautify
Nuxt 3 Setup
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Check out the deployment documentation for more information.
- Follow the Nuxt 3 setup instructions above.
- Run the API server from node-chatgpt-api.
- Copy
.env.example
to.env
and fill in theNUXT_PUBLIC_API_BASE_URL
variable with the URL of the API server. - Run
npm run dev
to start the development server, ornpm run build
to build the application for production.- If you see an empty white page after pulling the latest changes, run
nuxi upgrade --force
first and thennpm run dev
.
- If you see an empty white page after pulling the latest changes, run
Build the image, such as docker build -t pandora-ai .
.
Run:
docker run --name pandora-ai -it -d -p 3000:3000 -e NUXT_PUBLIC_API_BASE_URL=http://node-chatgpt-api/ pandora-ai
Make sure you override the NUXT_PUBLIC_API_BASE_URL
environment variable.
If you'd like to contribute to this project, please create a pull request with a detailed description of your changes.
This project is licensed under the MIT License.