Spaces:
Sleeping
Sleeping
File size: 2,496 Bytes
1bda668 d40c369 ccade22 d32517d 8d81d5a dfc7bef cef64b2 ce202f9 cad6136 d40c369 968cb26 3646bb0 76699a6 ccade22 f8a0305 93def2f f8a0305 a9516c8 d40c369 a2ba1c0 d40c369 a9516c8 e4df10e d40c369 e4df10e d1cfc73 |
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
{
// 你的OpenAI API Key,一般必填,
// 若缺省填为 "openai_api_key": "" 则必须再在图形界面中填入API Key
"openai_api_key": "",
"google_palm_api_key": "",
"xmchat_api_key": "",
"usage_limit": 120, // API Key的当月限额,单位:美元
// 你的xmchat API Key,与OpenAI API Key不同
// MiniMax的APIKey(见账户管理页面 https://api.minimax.chat/basic-information)和Group ID,用于MiniMax对话模型
"minimax_api_key": "",
"minimax_group_id": "",
"language": "auto",
// 支持自定义OpenAI API Base
// "openai_api_base": "https://api.openai.com",
// 如果使用代理,请取消注释下面的两行,并替换代理URL
// "https_proxy": "http://127.0.0.1:1079",
// "http_proxy": "http://127.0.0.1:1079",
"users": [], // 用户列表,[[用户名1, 密码1], [用户名2, 密码2], ...]
"local_embedding": false, //是否在本地编制索引
"hide_history_when_not_logged_in": false, //未登录情况下是否不展示对话历史
"check_update": true, //是否启用检查更新
"default_model": "gpt-3.5-turbo", // 默认模型
//川虎助理设置
"default_chuanhu_assistant_model": "gpt-4", //川虎助理使用的模型,可选gpt-3.5-turbo或者gpt-4
"GOOGLE_CSE_ID": "", //谷歌搜索引擎ID,用于川虎助理Pro模式,获取方式请看 https://stackoverflow.com/questions/37083058/programmatically-searching-google-in-python-using-custom-search
"GOOGLE_API_KEY": "", //谷歌API Key,用于川虎助理Pro模式
"WOLFRAM_ALPHA_APPID": "", //Wolfram Alpha API Key,用于川虎助理Pro模式,获取方式请看 https://products.wolframalpha.com/api/
"SERPAPI_API_KEY": "", //SerpAPI API Key,用于川虎助理Pro模式,获取方式请看 https://serpapi.com/
"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,
}
|