-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathproviders.json
More file actions
42 lines (42 loc) · 1.6 KB
/
Copy pathproviders.json
File metadata and controls
42 lines (42 loc) · 1.6 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
{
"default_model": "gemma4:latest",
"providers": {
"ollama": {
"base_url": "http://localhost:11434/v1",
"api_key_env": null,
"structured_output": "json_schema",
"extra_body": { "num_ctx": 32768 },
"models": {
"qwen3:1.7b": { "temperature": 0.0, "top_p": 0.9 },
"gemma3:1b": { "temperature": 0.0, "top_p": 0.9 },
"qwen3:4b": { "temperature": 0.1, "top_p": 0.4 },
"gemma3:4b": { "temperature": 0.1, "top_p": 0.9 },
"gemma3:12b": { "temperature": 0.1, "top_p": 0.9 },
"gemma4:latest": { "temperature": 0.1, "top_p": 0.9 },
"mistral:7b": { "temperature": 0.1, "top_p": 0.9 }
}
},
"gemini": {
"base_url": "https://generativelanguage.googleapis.com/v1beta/openai/",
"api_key_env": "GEMINI_API_KEY",
"structured_output": "json_schema",
"models": {
"gemini-2.0-flash": { "temperature": 0.1, "top_p": 0.9 },
"gemini-2.0-flash-lite": { "temperature": 0.1, "top_p": 0.9 },
"gemini-2.5-flash": { "temperature": 0.1, "top_p": 0.9 },
"gemini-2.5-flash-lite": { "temperature": 0.1, "top_p": 0.9 },
"gemini-2.5-pro": { "temperature": 0.1, "top_p": 0.9 }
}
},
"anthropic": {
"base_url": "https://api.anthropic.com/v1",
"api_key_env": "ANTHROPIC_API_KEY",
"structured_output": "json_object",
"models": {
"claude-opus-4-8": { "temperature": 0.1, "top_p": 0.9 },
"claude-sonnet-5": { "temperature": 0.1, "top_p": 0.9 },
"claude-haiku-4-5": { "temperature": 0.1, "top_p": 0.9 }
}
}
}
}