Skip to content

Commit

Permalink
Update README.ZH_CN.md
Browse files Browse the repository at this point in the history
  • Loading branch information
WPeace-HcH authored Aug 7, 2024
1 parent 0aefc4e commit 718a23d
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions README.ZH_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ChatGPT 的分析结果**仅供参考**,不然我们这些分析师就当场
|2.1|2023-03-07|修复 OpenAI-API 的 timed out 问题。(详见节***关于 OpenAI-API 报错***|
|2.3|2023-04-23|添加 **Auto-WPeGPT v0.1**,支持对二进制文件的自动分析功能。<br>(从此版本需要添加包 *anytree*,使用 *requirements.txt**pip install anytree*|
|2.4|2023-11-10|1. 修改了一些显示细节。<br>2. 更新 **Auto-WPeGPT v0.2**|
|2.5|2024-08-07|1. 添加了对其他模型的支持。@tpsnt<br> - 通过修改 *MODEL* 变量,可以支持其他模型<br> - 设置环境变量 *OPENAI_API_BASE* 为 "https://dashscope.aliyuncs.com/compatible-mode/v1" ,将 *MODEL* 设置为 qwen-max、qwen-long、qwen-plus 等,可以使用灵积API<br> - 将插件进行复制并修改 *PLUGIN_NAME*,可以允许多个模型同时存在<br>2. 修改代码适配最新的 python openai 包。|
## 安装
1. 运行如下命令安装所需包。
```
Expand Down Expand Up @@ -95,12 +96,16 @@ effectiveStrings.txt -> 二进制文件中的可疑字符串
pip uninstall urllib3
pip install urllib3==1.25.11
```
- 如果 urllib3 版本没错或重装 1.25 版本还是存在 API 访问问题的话,那么请下载最新版本,对插件指定代理
- 将下面三行代码取消注释,然后把代理地址及端口信息填入 ***proxies*** 变量即可
- 插件支持指定正向或反向代理
- 把代理地址及端口信息填入 ***proxy*** 变量可实现正向代理
```
#print("WPeChatGPT has appointed the proxy.")
#proxies = {'http': "http://127.0.0.1:7890", 'https': "http://127.0.0.1:7890"}
#openai.proxy = proxies
# Set your forward-proxy if necessary. (e.g. Clash = http://127.0.0.1:7890)
proxy = ""
```
- 把反向URL信息填入 ***proxy_address*** 变量可实现反向代理:
```
# Set reverse-proxy URL if you need. (e.g. Azure OpenAI)
proxy_address = ""
```
## 联系我
如果使用插件时遇到问题或有任何疑问,欢迎留言或发送邮件联系我。
Expand Down

0 comments on commit 718a23d

Please sign in to comment.