Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update config.json
Browse files- config.json +33 -1
config.json
CHANGED
@@ -1,2 +1,34 @@
|
|
1 |
{
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
// 你的OpenAI API Key,一般必填,
|
3 |
+
// 若缺省填为 "openai_api_key": "" 则必须再在图形界面中填入API Key
|
4 |
+
"openai_api_key": "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",
|
5 |
+
// 你的xmchat API Key,与OpenAI API Key不同
|
6 |
+
"xmchat_api_key": "",
|
7 |
+
"language": "auto",
|
8 |
+
// 如果使用代理,请取消注释下面的两行,并替换代理URL
|
9 |
+
// "https_proxy": "http://127.0.0.1:1079",
|
10 |
+
// "http_proxy": "http://127.0.0.1:1079",
|
11 |
+
"users": [["admin", "Aa13432351536"]], // 用户列表,[[用户名1, 密码1], [用户名2, 密码2], ...]
|
12 |
+
"local_embedding": false, //是否在本地编制索引
|
13 |
+
"default_model": "gpt-3.5-turbo", // 默认模型
|
14 |
+
"advance_docs": {
|
15 |
+
"pdf": {
|
16 |
+
// 是否认为PDF是双栏的
|
17 |
+
"two_column": false,
|
18 |
+
// 是否使用OCR识别PDF中的公式
|
19 |
+
"formula_ocr": true
|
20 |
+
}
|
21 |
+
},
|
22 |
+
// 是否多个API Key轮换使用
|
23 |
+
"multi_api_key": false,
|
24 |
+
"api_key_list": [
|
25 |
+
"sk-xxxxxxxxxxxxxxxxxxxxxxxx1",
|
26 |
+
"sk-xxxxxxxxxxxxxxxxxxxxxxxx2",
|
27 |
+
"sk-xxxxxxxxxxxxxxxxxxxxxxxx3"
|
28 |
+
],
|
29 |
+
// 如果使用自定义端口、自定义ip,请取消注释并替换对应内容
|
30 |
+
// "server_name": "0.0.0.0",
|
31 |
+
// "server_port": 7860,
|
32 |
+
// 如果要share到gradio,设置为true
|
33 |
+
// "share": false,
|
34 |
+
}
|