-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
57 lines (57 loc) · 1.54 KB
/
config.json.example
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
53
54
55
56
57
{
"site_config": {
"host" : "0.0.0.0",
"port" : 8080,
"debug": false
},
"openai_key": "",
"openai_api_base": "https://api.openai.com/",
"proxy": {
"enable": false,
"http": "127.0.0.1:10809",
"https": "127.0.0.1:10809"
},
"models": [
{
"llm_name": "deepseek",
"enable": true,
"api_key": "sk-",
"api_base": "https://api.deepseek.com",
"model": "deepseek-chat",
"developer": "DEEPSEEK"
},
{
"llm_name": "llama3-70B",
"enable": true,
"api_key": "",
"api_base": "https://api.groq.com/openai/",
"model": "llama3-70b-8192",
"developer": "META"
},
{
"llm_name": "Mixtral 8x7b",
"enable": true,
"enable": true,
"api_key": "gsk_xxxx",
"api_base": "https://api.groq.com/openai/",
"model": "mixtral-8x7b-32768",
"developer": "Mistral"
},
{
"llm_name": "baichuan",
"enable": true,
"api_key": "sk-",
"api_base": "https://api.baichuan-ai.com",
"model": "Baichuan2-Turbo",
"developer": "BAICHUAN"
},
{
"llm_name": "openai",
"enable": false,
"api_key": "sk-",
"api_base": "https://api.openai.com/",
"model": "gpt-3.5-turbo",
"developer": "OPENAI"
}
]
}