|
@@ -54,6 +54,9 @@
|
|
|
|
|
|
|
|
> 项目中使用的对话模型是 davinci,计费方式是约每 750 字 (包含请求和回复) 消耗 $0.02,图片生成是每张消耗 $0.016,账号创建有免费的 $18 额度 (更新3.25: 最新注册的已经无免费额度了),使用完可以更换邮箱重新注册。
|
|
> 项目中使用的对话模型是 davinci,计费方式是约每 750 字 (包含请求和回复) 消耗 $0.02,图片生成是每张消耗 $0.016,账号创建有免费的 $18 额度 (更新3.25: 最新注册的已经无免费额度了),使用完可以更换邮箱重新注册。
|
|
|
|
|
|
|
|
|
|
+#### 1.1 ChapGPT service On Azure
|
|
|
|
|
+一种替换以上的方法是使用Azure推出的[ChatGPT service](https://azure.microsoft.com/en-in/products/cognitive-services/openai-service/)。它host在公有云Azure上,因此不需要VPN就可以直接访问。不过目前仍然处于preview阶段。新用户可以通过Try Azure for free来薅一段时间的羊毛
|
|
|
|
|
+
|
|
|
|
|
|
|
|
### 2.运行环境
|
|
### 2.运行环境
|
|
|
|
|
|
|
@@ -94,7 +97,7 @@ pip3 install --upgrade openai
|
|
|
# config.json文件内容示例
|
|
# config.json文件内容示例
|
|
|
{
|
|
{
|
|
|
"open_ai_api_key": "YOUR API KEY", # 填入上面创建的 OpenAI API KEY
|
|
"open_ai_api_key": "YOUR API KEY", # 填入上面创建的 OpenAI API KEY
|
|
|
- "model": "gpt-3.5-turbo", # 模型名称
|
|
|
|
|
|
|
+ "model": "gpt-3.5-turbo", # 模型名称。当use_azure_chatgpt为true时,其名称为Azure上model deployment名称
|
|
|
"proxy": "127.0.0.1:7890", # 代理客户端的ip和端口
|
|
"proxy": "127.0.0.1:7890", # 代理客户端的ip和端口
|
|
|
"single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复
|
|
"single_chat_prefix": ["bot", "@bot"], # 私聊时文本需要包含该前缀才能触发机器人回复
|
|
|
"single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人
|
|
"single_chat_reply_prefix": "[bot] ", # 私聊时自动回复的前缀,用于区分真人
|
|
@@ -104,7 +107,8 @@ pip3 install --upgrade openai
|
|
|
"image_create_prefix": ["画", "看", "找"], # 开启图片回复的前缀
|
|
"image_create_prefix": ["画", "看", "找"], # 开启图片回复的前缀
|
|
|
"conversation_max_tokens": 1000, # 支持上下文记忆的最多字符数
|
|
"conversation_max_tokens": 1000, # 支持上下文记忆的最多字符数
|
|
|
"speech_recognition": false, # 是否开启语音识别
|
|
"speech_recognition": false, # 是否开启语音识别
|
|
|
- "character_desc": "你是ChatGPT, 一个由OpenAI训练的大型语言模型, 你旨在回答并解决人们的任何问题,并且可以使用多种语言与人交流。", # 人格描述
|
|
|
|
|
|
|
+ "use_azure_chatgpt": false, # 是否使用Azure ChatGPT service代替openai ChatGPT service. 当设置为true时需要设置 open_ai_api_base,如 https://xxx.openai.azure.com/
|
|
|
|
|
+ "character_desc": "你是ChatGPT, 一个由OpenAI训练的大型语言模型, 你旨在回答并解决人们的任何问题,并且可以使用多种语言与人交流。", # 人格描述,
|
|
|
}
|
|
}
|
|
|
```
|
|
```
|
|
|
**配置说明:**
|
|
**配置说明:**
|
|
@@ -173,6 +177,14 @@ nohup python3 app.py & tail -f nohup.out # 在后台运行程序并通
|
|
|
|
|
|
|
|
参考文档 [Docker部署](https://github.com/limccn/chatgpt-on-wechat/wiki/Docker%E9%83%A8%E7%BD%B2) (Contributed by [limccn](https://github.com/limccn))。
|
|
参考文档 [Docker部署](https://github.com/limccn/chatgpt-on-wechat/wiki/Docker%E9%83%A8%E7%BD%B2) (Contributed by [limccn](https://github.com/limccn))。
|
|
|
|
|
|
|
|
|
|
+### 4. Railway部署
|
|
|
|
|
+[Use with Railway](#use-with-railway)(PaaS, Free, Stable, ✅Recommended)
|
|
|
|
|
+> Railway offers $5 (500 hours) of runtime per month
|
|
|
|
|
+1. Click the [Railway](https://railway.app/) button to go to the Railway homepage
|
|
|
|
|
+2. Click the `Start New Project` button.
|
|
|
|
|
+3. Click the `Deploy from Github repo` button.
|
|
|
|
|
+4. Choose your repo (you can fork this repo firstly)
|
|
|
|
|
+5. Set environment variable to override settings in config-template.json, such as: model, open_ai_api_base, open_ai_api_key, use_azure_chatgpt etc.
|
|
|
|
|
|
|
|
## 常见问题
|
|
## 常见问题
|
|
|
|
|
|