-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproviders_config.json.example
More file actions
60 lines (60 loc) · 1.39 KB
/
providers_config.json.example
File metadata and controls
60 lines (60 loc) · 1.39 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
51
52
53
54
55
56
57
58
59
60
{
"default_provider": "openai",
"service_config": {
"log_level": "INFO",
"request_timeout": 30,
"max_retries": 3,
"max_prompt_length": 200000,
"service_api_key": null
},
"providers": {
"openai": {
"base_url": "https://api.openai.com/v1",
"api_key": "your-openai-api-key-here",
"models": [
"gpt-4",
"gpt-4-turbo",
"gpt-3.5-turbo",
"gpt-3.5-turbo-16k"
],
"headers": {
"User-Agent": "LLM-Tool-Call-Wrapper/1.0"
}
},
"anthropic": {
"base_url": "https://api.anthropic.com/v1",
"api_key": "your-anthropic-api-key-here",
"models": [
"claude-3-opus-20240229",
"claude-3-sonnet-20240229",
"claude-3-haiku-20240307"
],
"headers": {
"anthropic-version": "2023-06-01",
"User-Agent": "LLM-Tool-Call-Wrapper/1.0"
}
},
"local_llm": {
"base_url": "http://localhost:8000",
"api_key": null,
"models": [
"llama2-7b",
"llama2-13b",
"codellama-7b",
"mistral-7b"
],
"headers": {}
},
"azure_openai": {
"base_url": "https://your-resource.openai.azure.com",
"api_key": "your-azure-openai-api-key-here",
"models": [
"gpt-4-azure",
"gpt-35-turbo-azure"
],
"headers": {
"api-version": "2023-12-01-preview"
}
}
}
}