-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
36 lines (36 loc) · 835 Bytes
/
config.example.json
File metadata and controls
36 lines (36 loc) · 835 Bytes
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
{
"llm": {
"provider": "openai",
"openai": {
"api_key": "your-openai-api-key",
"model": "gpt-3.5-turbo",
"base_url": "",
"org_id": "",
"timeout": 30
},
"azure_openai": {
"api_key": "your-azure-openai-api-key",
"base_url": "https://your-resource.openai.azure.com",
"deployment_id": "your-deployment-id",
"api_version": "2023-12-01-preview",
"timeout": 30
},
"gemini": {
"api_key": "your-gemini-api-key",
"model": "gemini-pro",
"base_url": "",
"timeout": 30
},
"claude": {
"api_key": "your-anthropic-api-key",
"model": "claude-3-haiku-20240307",
"base_url": "",
"timeout": 30
},
"llama_cpp": {
"base_url": "http://localhost:8080",
"model": "",
"timeout": 30
}
}
}