Spaces:
Sleeping
Sleeping
File size: 4,893 Bytes
311aa10 e5fe5de fcf354f f885103 156fd34 8f00c3d ace559b 83dfb9a 9192b22 5ceee6c 29783f9 0def5d5 4811365 6138a55 4811365 000fe8c 5ceee6c 0917ac6 5ceee6c 4811365 e456750 4dab59f d47c75d 000fe8c 5ceee6c 4811365 0def5d5 01f5874 24d50bd 000fe8c 24d50bd 000fe8c 24d50bd 000fe8c 24d50bd d4288bd b203e7b d4288bd b203e7b d4288bd b203e7b d4288bd b203e7b dfcde3a b203e7b dfcde3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
<img height="128" align="left" src="https://user-images.githubusercontent.com/51039745/222689546-7612df0e-e28b-4693-9f5f-4ef2be3daf48.png" alt="Logo">
# 川虎 ChatGPT / Chuanhu ChatGPT
[![LICENSE](https://img.shields.io/github/license/GaiZhenbiao/ChuanhuChatGPT)](https://github.com/GaiZhenbiao/ChuanhuChatGPT/blob/main/LICENSE)
[![Base](https://img.shields.io/badge/Base-Gradio-fb7d1a?style=flat)](https://gradio.app/)
[![Bilibili](https://img.shields.io/badge/Bilibili-%E8%A7%86%E9%A2%91%E6%95%99%E7%A8%8B-ff69b4?style=flat&logo=bilibili)](https://www.bilibili.com/video/BV1mo4y1r7eE)
---
为ChatGPT API提供了一个Web图形界面。在Bilibili上[观看视频教程](https://www.bilibili.com/video/BV1mo4y1r7eE/)。也在Hugging Face上[在线体验](https://huggingface.co/spaces/JohnSmith9982/ChuanhuChatGPT)。
![Animation Demo](https://user-images.githubusercontent.com/51039745/223148794-f4fd2fcb-3e48-4cdf-a759-7aa463d3f14c.gif)
## 🎉🎉🎉 重大更新
- 精简了UI
- 像官方ChatGPT那样实时回复
- 改进的保存/加载功能
## 功能
- [x] 像官方客户端那样支持实时显示回答!
- [x] 重试对话,让ChatGPT再回答一次。
- [x] 优化Tokens,减少Tokens占用,以支持更长的对话。
- [x] 设置System Prompt,有效地设定前置条件
- [x] 保存/加载对话历史记录
- [x] 在图形界面中添加API key
- [ ] System Prompt模板功能,从预置的Prompt库中选择
- [ ] 实时显示Tokens用量
## 使用技巧
- 使用System Prompt可以很有效地设定前提条件
- 对于长对话,可以使用“优化Tokens”按钮减少Tokens占用。
- 如果部署到服务器,将程序最后一句改成`demo.launch(server_name="0.0.0.0", server_port=99999)`。其中`99999`是端口号,应该是1000-65535任意可用端口,请自行更改为实际端口号。
- 如果需要获取公共链接,将程序最后一句改成`demo.launch(share=True)`。注意程序必须在运行,才能通过公共链接访问
## 安装方式
### 填写API密钥
#### 在图形界面中填写你的API密钥
这样设置的密钥会在页面刷新后被清除
<img width="760" alt="image" src="https://user-images.githubusercontent.com/51039745/222873756-3858bb82-30b9-49bc-9019-36e378ee624d.png">
#### ……或者在代码中填入你的 OpenAI API 密钥
这样设置的密钥会成为默认密钥
<img width="552" alt="SCR-20230302-sula" src="https://user-images.githubusercontent.com/51039745/222445258-248f2789-81d2-4f0a-8697-c720f588d8de.png">
### 安装依赖
```
pip install -r requirements.txt
```
如果报错,试试
```
pip3 install -r requirements.txt
```
如果还是不行,请先[安装Python](https://www.runoob.com/python/python-install.html)。
如果下载慢,建议[配置清华源](https://mirrors.tuna.tsinghua.edu.cn/help/pypi/),或者科学上网。
### 启动
```
python ChuanhuChatbot.py
```
如果报错,试试
```
python3 ChuanhuChatbot.py
```
如果还是不行,请先[安装Python](https://www.runoob.com/python/python-install.html)。
## 或者,使用Docker 安装与运行
### 构建镜像
```
docker build -t chuanhuchatgpt:latest .
```
### 一键运行
```
docker run -d --name chatgpt -e my_api_key="替换成API" --network host chuanhuchatgpt:latest
```
### 查看本地访问地址
```
docker logs chatgpt
```
## 疑难杂症解决
### No module named '_bz2'
太空急先锋:部署在CentOS7.6,Python3.11.0上,最后报错ModuleNotFoundError: No module named '_bz2'
解决方案:安装python前得下个bzip编译环境
```
sudo yum install bzip2-devel
```
### openai.error.APIConnectionError
我是一只孤猫 [#5](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/5):
如果有人也出现了`openai.error.APIConnectionError`提示的报错,那可能是`urllib3`的版本导致的。`urllib3`版本大于`1.25.11`,就会出现这个问题。
解决方案是卸载`urllib3`然后重装至`1.25.11`版本再重新运行一遍就可以
在终端或命令提示符中卸载`urllib3`
```
pip uninstall urllib3
```
然后,您可以通过使用指定版本号的`pip install`命令来安装所需的版本:
```
pip install urllib3==1.25.11
```
参考自:
[解决OpenAI API 挂了代理还是连接不上的问题](https://zhuanlan.zhihu.com/p/611080662)
### API 被墙了怎么办
建议把`openai.com`加入Clash等软件的分流规则中。
跑起来之后,输入问题好像就没反应了,也没报错 [#25](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/25)
### 在 Python 文件里 设定 API Key 之后验证失败
在ChuanhuChatbot.py中设置APIkey后验证出错,提示“发生了未知错误Orz” [#26](https://github.com/GaiZhenbiao/ChuanhuChatGPT/issues/26)
### 重装 gradio
很多时候,这样就可以解决问题。
```
pip install gradio --upgrade --force_reinstall
```
|