-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathconfig_online.json
45 lines (45 loc) · 1.25 KB
/
config_online.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
39
40
41
42
43
44
45
{
"services": {
"dmx": {
"base_url": "https://www.dmxapi.com/v1",
"api_key": "sk-xx",
"description": "DMX API 服务"
},
"siliconflow": {
"base_url": "https://api.siliconflow.cn/v1",
"api_key": "sk-xxxx",
"description": "SiliconFlow API 服务"
},
"rerank": {
"base_url": "http://localhost:3600",
"api_key": "sk-xxx",
"description": "重排序服务"
}
},
"models": {
"llm": {
"name": "gpt-4o-all",
"service": "dmx",
"description": "主要的 LLM 模型"
},
"deepseek_r1": {
"name": "deepseek-ai/DeepSeek-R1",
"service": "siliconflow",
"description": "DeepSeek-R1 模型"
},
"embedding": {
"name": "text-embedding-3-large",
"service": "dmx",
"description": "文本嵌入模型"
},
"reranker": {
"name": "BAAI/bge-reranker-v2-m3",
"service": "rerank",
"description": "BGE重排序模型"
}
},
"paths": {
"docs": "./data/docs",
"index": "./examples/retrievers/dense_cache"
}
}