NextChat is an open-source, lightweight, and fast AI assistant application, formerly known as ChatGPT-Next-Web. The project focuses on providing users with a simple and efficient AI conversation experience, supporting the integration of various mainstream AI models.
docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 \
-e OPENAI_API_KEY=sk-xxxx \
-e CODE=your-password \
yidadaa/chatgpt-next-web
# Install dependencies
yarn install
# Configure environment variables
echo "OPENAI_API_KEY=your-api-key" > .env.local
# Start the development server
yarn dev
CODE
: Access passwordOPENAI_API_KEY
: OpenAI API keyBASE_URL
: API proxy addressCUSTOM_MODELS
: Custom model listHIDE_USER_API_KEY
: Hide user API key inputDISABLE_GPT4
: Disable GPT-4 modelNextChat, as a mature open-source AI assistant project, achieves a good balance between simplicity, functionality, and scalability. It not only provides individual users with a convenient AI conversation experience, but also provides enterprise users with a complete private deployment solution. With its active community support and continuous technological innovation, NextChat has become an important reference project in the field of AI application development.