Spaces:
Running
Running
Merge branch 'binary-husky:master' into master
Browse files- README.md +2 -2
- crazy_functions/对话历史存档.py +1 -1
README.md
CHANGED
@@ -17,7 +17,7 @@ If you like this project, please give it a Star. If you've come up with more use
|
|
17 |
>
|
18 |
> 2.本项目中每个文件的功能都在自译解[`self_analysis.md`](https://github.com/binary-husky/chatgpt_academic/wiki/chatgpt-academic%E9%A1%B9%E7%9B%AE%E8%87%AA%E8%AF%91%E8%A7%A3%E6%8A%A5%E5%91%8A)详细说明。随着版本的迭代,您也可以随时自行点击相关函数插件,调用GPT重新生成项目的自我解析报告。常见问题汇总在[`wiki`](https://github.com/binary-husky/chatgpt_academic/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)当中。
|
19 |
>
|
20 |
-
> 3
|
21 |
|
22 |
<div align="center">
|
23 |
|
@@ -158,7 +158,7 @@ docker run --rm -it --net=host --gpus=all gpt-academic bash
|
|
158 |
|
159 |
## 安装-方法3:其他部署姿势
|
160 |
|
161 |
-
1. 如何使用反代URL
|
162 |
按照`config.py`中的说明配置API_URL_REDIRECT即可。
|
163 |
|
164 |
2. 远程云服务器部署(需要云服务器知识与经验)
|
|
|
17 |
>
|
18 |
> 2.本项目中每个文件的功能都在自译解[`self_analysis.md`](https://github.com/binary-husky/chatgpt_academic/wiki/chatgpt-academic%E9%A1%B9%E7%9B%AE%E8%87%AA%E8%AF%91%E8%A7%A3%E6%8A%A5%E5%91%8A)详细说明。随着版本的迭代,您也可以随时自行点击相关函数插件,调用GPT重新生成项目的自我解析报告。常见问题汇总在[`wiki`](https://github.com/binary-husky/chatgpt_academic/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)当中。
|
19 |
>
|
20 |
+
> 3.本项目兼容并鼓励尝试国产大语言模型chatglm等。已支持OpenAI和API2D的api-key共存,可在配置文件中填写如`API_KEY="openai-key1,openai-key2,api2d-key3"`。需要临时更换`API_KEY`时,在输入区输入临时的`API_KEY`然后回车键提交后即可生效。
|
21 |
|
22 |
<div align="center">
|
23 |
|
|
|
158 |
|
159 |
## 安装-方法3:其他部署姿势
|
160 |
|
161 |
+
1. 如何使用反代URL/微软云AzureAPI
|
162 |
按照`config.py`中的说明配置API_URL_REDIRECT即可。
|
163 |
|
164 |
2. 远程云服务器部署(需要云服务器知识与经验)
|
crazy_functions/对话历史存档.py
CHANGED
@@ -13,7 +13,7 @@ def write_chat_to_file(chatbot, history=None, file_name=None):
|
|
13 |
os.makedirs('./gpt_log/', exist_ok=True)
|
14 |
with open(f'./gpt_log/{file_name}', 'w', encoding='utf8') as f:
|
15 |
from theme import advanced_css
|
16 |
-
f.write(f'
|
17 |
for i, contents in enumerate(chatbot):
|
18 |
for j, content in enumerate(contents):
|
19 |
try: # 这个bug没找到触发条件,暂时先这样顶一下
|
|
|
13 |
os.makedirs('./gpt_log/', exist_ok=True)
|
14 |
with open(f'./gpt_log/{file_name}', 'w', encoding='utf8') as f:
|
15 |
from theme import advanced_css
|
16 |
+
f.write(f'<!DOCTYPE html><head><meta charset="utf-8"><title>对话历史</title><style>{advanced_css}</style></head>')
|
17 |
for i, contents in enumerate(chatbot):
|
18 |
for j, content in enumerate(contents):
|
19 |
try: # 这个bug没找到触发条件,暂时先这样顶一下
|