forked from Samagra-Development/ai-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
36 lines (36 loc) · 1.01 KB
/
config.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
{
"models": [
{
"serviceName": "embedding_openai",
"modelBasePath": "src/embeddings/openai/remote/.",
"apiBasePath": "/embeddings/openai/remote",
"containerPort": 8000,
"environment": {
"OPENAI_API_KEY": "${OPENAI_API_KEY}"
},
"nginx": ["client_max_body_size 100M;", "proxy_read_timeout 600;", "proxy_connect_timeout 600;", "proxy_send_timeout 600;"],
"build": false
},
{
"serviceName": "coref_fcoref",
"modelBasePath": "src/coref/fcoref/local/.",
"apiBasePath": "/coref/fcoref/local",
"containerPort": 8000,
"environment": {},
"nginx": [],
"constraints": ["node.labels.node_vm_type==gpu"],
"build": false
},
{
"serviceName": "llm_openai_gpt4",
"modelBasePath": "src/llm/openai/chatgpt4/.",
"apiBasePath": "/llm/openai/chatgpt4",
"containerPort": 8000,
"environment": {
"OPENAI_API_KEY": "${OPENAI_API_KEY}"
},
"nginx": [],
"build": false
}
]
}