Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dairoot/chatgpt-mirror
🚀 一键部署个人的 ChatGPT 镜像站
https://github.com/dairoot/chatgpt-mirror
chatapi chatgpt chatgpt-api chatgpt-plus chatgpt-share
Last synced: about 1 month ago
JSON representation
🚀 一键部署个人的 ChatGPT 镜像站
- Host: GitHub
- URL: https://github.com/dairoot/chatgpt-mirror
- Owner: dairoot
- License: gpl-3.0
- Created: 2024-06-07T09:15:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T08:10:57.000Z (3 months ago)
- Last Synced: 2024-10-21T23:17:18.185Z (3 months ago)
- Topics: chatapi, chatgpt, chatgpt-api, chatgpt-plus, chatgpt-share
- Language: Shell
- Homepage: https://chatgpt.dairoot.cn
- Size: 611 KB
- Stars: 397
- Watchers: 4
- Forks: 74
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ChatGPT-repositories - ChatGPT-Mirror - 🚀 一键部署自己的 ChatGPT 镜像站 (Others)
README
ChatGPT Mirror
[![Docker](https://img.shields.io/docker/pulls/dairoot/chatgpt-mirror?label=ChatGPT-Mirror&logo=docker)](https://hub.docker.com/r/dairoot/chatgpt-mirror)
[![License](https://img.shields.io/github/license/dairoot/ChatGPT-Mirror)](https://github.com/dairoot/ChatGPT-Mirror/blob/main/LICENSE)ChatGPT Mirror 后台是一个 ChatGPT 镜像站,允许多账号共享管理。实现多人同时使用 ChatGPT 服务。
## 特点
- 提供与官网同等的极致体验。
- 提供 ChatGPT 聊天接口 转 API `/v1/chat/completions`
- 用户无需翻墙,便可轻松访问并使用 ChatGPT 官方网站的所有功能。
- 通过在 `Mirror` 后台录入 `ChatGPT Token`,让团队成员每人拥有独立账号 (或共享同一个`ChatGPT Plus`账号)。
- 提供便捷的管理后台,帮助管理员高效管理账号。## 在线体验
https://chatgpt.dairoot.cn
## 部署
为了获得最佳体验,请先观看以下视频教程
https://github.com/user-attachments/assets/7b868672-cfaf-430c-9ec4-f1617a428225
打开命令行终端,执行以下命令
```bash
# 切换到 home 目录,并克隆 ChatGPT-Mirror 仓库
cd /home/ && git clone https://github.com/dairoot/ChatGPT-Mirror.gitcd ChatGPT-Mirror/
# 修改管理后台账号密码
cp .env.example .env && vi .env# 启动
./deploy.sh```
访问 http://127.0.0.1:50002 或访问 http://外网ip:50002配置域名,请点击查看[完整部署流程](./docs/deploy.md)
## 环境变量
分类
变量名
类型
默认值
描述
管理后台
ADMIN_USERNAME
String
None
管理后台账号
ADMIN_PASSWORD
String
None
管理后台密码
ALLOW_REGISTER
Boolean
true
是否允许注册
USE_SERVER_RENDER
Boolean
true
服务端托管 Proofofwork
API 相关
ENABLE_MIRROR_API
Boolean
true
是否开启 API 访问
MIRROR_API_PREFIX
String
None
API 访问前缀,建议配置
HATD
Boolean
false
开启临时聊天(不保存聊天记录)
系统变量
PROXY_URL_POOL
String
None
代理池链接,多个代理用逗号分隔http://username:password@ip:port,
socks5://username:password@ip:port
VOICE_PROXY_URL
String
None
语音代理地址 点击自建
若不配置,则用户需要翻墙才能使用语音功能
# 聊天 API 接口
可搭配 [ChatGPT-Next-Web](https://app.nextchat.dev)、[Lobe-Chat](https://github.com/lobehub/lobe-chat) 使用
```
accessToken 获取地址:https://chatgpt.com/api/auth/sessionAPI 地址为:https://你的地址
```聊天接口请求示例:
```bash
export accessToken=XXXXX # 获取地址:https://chatgpt.com/api/auth/session
export yourUrl=http://127.0.0.1:50002curl --location "${yourUrl}/v1/chat/completions" \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${accessToken}" \
--data '{
"model": "gpt-4o-mini",
"messages": [{"role": "user", "content": "你好呀!"}],
"stream": true,
"conversation_id": null,
"parent_message_id": null,
"hatd": false
}'
```更多 API 请点击查看:[高阶玩法](./docs/chatapi-gateway.md)
## FQA
[简体中文 > 常见问题](./docs/faq-cn.md)
## 加入群聊
[Telegram](https://t.me/+34aYksZdq5ZhMzhl)
## 捐赠
[Buy Me a Coffee](./docs/donation.md)
## Star History
![Star History Chart](https://api.star-history.com/svg?repos=dairoot/ChatGPT-Mirror&type=Timeline)