扫码阅读
手机扫码阅读

一键拥有你自己的 ChatGPT 网页服务

498 2024-04-04
ChatGPT Web Applications Summary

ChatGPT's Global Impact

Since its launch in November 2022, ChatGPT has experienced a meteoric rise to global fame, attracting a million users within five days and reaching 100 million users in the months that followed. Its success can be attributed to its advanced capabilities and widespread adoption across various industries for customer support, data analysis, and content generation.

Limitations and Alternative Applications

Despite regional and account restrictions preventing many users from accessing ChatGPT, alternative applications (wrappers) have emerged, allowing people to leverage AI's powerful capabilities and partake in the benefits of technological advancements.

Introducing ChatGPT Next Web

ChatGPT Next Web is an application that facilitates the creation of ChatGPT-based web applications, relying on a crucial parameter: OPENAI_API_KEY.

Features of ChatGPT Next Web:

  • Lightweight cross-platform client (~5MB) for Linux, Windows, and MacOS.
  • Comprehensive Markdown support for LaTex formulas, Mermaid flowcharts, and code highlighting.
  • Well-designed UI with responsive design, dark mode, PWA support, and fast initial load speed (~100kb).
  • Privacy-focused with local data storage in the user's browser.
  • Pre-built personas (masks) for easy creation, sharing, and debugging personalized conversations.
  • Extensive built-in prompt list in multiple languages.
  • Automatic compression of chat history to support lengthy conversations while saving tokens.
  • Multi-language support including English, Chinese, Japanese, Spanish, and more.
  • Option to configure a personal domain for easy, unobstructed access anywhere.

Deployment Options

ChatGPT Next Web can be deployed via containers or locally, with detailed technical details available in the official repository.

Container Deployment:

Requires Docker version 20 or above. Users may encounter a notification about updates as the Docker version often lags 1-2 days behind the latest version.

docker pull yidadaa/chatgpt-next-web
docker run -d -p 3000:3000 -e OPENAI_API_KEY="sk-xxxx" -e CODE="page access password" yidadaa/chatgpt-next-web

Proxy configuration is possible:

docker run -d -p 3000:3000 -e OPENAI_API_KEY="sk-xxxx" -e CODE="page access password" --net=host -e PROXY_URL="http://127.0.0.1:7890" yidadaa/chatgpt-next-web

Local Deployment:

Run the following commands in the console to deploy locally:

bash
想要了解更多,点击 查看原文