forked from GaiZhenbiao/ChuanhuChatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_example.json
38 lines (38 loc) · 1.48 KB
/
config_example.json
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
{
// 你的OpenAI API Key,一般必填,
// 若缺省填为 "openai_api_key": "" 则必须再在图形界面中填入API Key
"openai_api_key": "",
"usage_limit": 120, // API Key的当月限额,单位:美元
// 你的xmchat API Key,与OpenAI API Key不同
"xmchat_api_key": "",
"language": "auto",
// 如果使用代理,请取消注释下面的两行,并替换代理URL
// "https_proxy": "http://127.0.0.1:1079",
// "http_proxy": "http://127.0.0.1:1079",
// 是否默认渲染LaTeX
"render_latex": true,
"users": [], // 用户列表,[[用户名1, 密码1], [用户名2, 密码2], ...]
"local_embedding": false, //是否在本地编制索引
"hide_history_when_not_logged_in": false, //未登录情况下是否不展示对话历史
"default_model": "gpt-3.5-turbo", // 默认模型
"advance_docs": {
"pdf": {
// 是否认为PDF是双栏的
"two_column": false,
// 是否使用OCR识别PDF中的公式
"formula_ocr": true
}
},
// 是否多个API Key轮换使用
"multi_api_key": false,
"api_key_list": [
"sk-xxxxxxxxxxxxxxxxxxxxxxxx1",
"sk-xxxxxxxxxxxxxxxxxxxxxxxx2",
"sk-xxxxxxxxxxxxxxxxxxxxxxxx3"
],
// 如果使用自定义端口、自定义ip,请取消注释并替换对应内容
// "server_name": "0.0.0.0",
// "server_port": 7860,
// 如果要share到gradio,设置为true
// "share": false,
}