-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
50 lines (50 loc) · 1.55 KB
/
config.json
File metadata and controls
50 lines (50 loc) · 1.55 KB
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
{
"server_addr": "0.0.0.0:8080",
"source_list": ["prod", "dev", "test"],
"server_key_list": [],
"proxy_url": "http://127.0.0.1:7890",
"platform_list": {
"openai": {
"name": "openai",
"url": "https://api.openai.com",
"header_key": "Authorization",
"header_values": ["Bearer sk-proj-1234567890"]
},
"claude": {
"name": "claude",
"url": "https://api.anthropic.com",
"header_key": "x-api-key",
"header_values": ["sk-ant-api03-1234567890"]
},
"google": {
"name": "google",
"url": "https://api.google.com",
"header_key": "Authorization",
"header_values": ["Bearer sk-proj-1234567890"]
},
"cohere": {
"name": "cohere",
"url": "https://api.cohere.com",
"header_key": "Authorization",
"header_values": ["bearer sk-proj-1234567890"]
},
"getimg": {
"name": "getimg",
"url": "https://api.getimg.ai",
"header_key": "Authorization",
"header_values": ["bearer sk-proj-1234567890"]
},
"difyupdate": {
"name": "difyupdate",
"url": "https://updates.dify.ai",
"header_key": "",
"header_values": []
},
"difymarketplace": {
"name": "difymarketplace",
"url": "https://marketplace.dify.ai",
"header_key": "",
"header_values": []
}
}
}