# 川虎 ChatGPT
为ChatGPT API提供了一个Web图形界面。
GUI for ChatGPT API
## 安装方式
- 填入你的 OpenAI API 密钥
- 安装依赖
```
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
```
## 使用技巧
- 使用System Prompt可以很有效地设定前提条件
- 对于长对话,可以使用“优化Tokens”按钮减少Tokens占用。