-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
31 lines (31 loc) · 1.14 KB
/
config.example.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"fireworks-ai": {
"npm": "@ai-sdk/fireworks",
"name": "Fireworks AI",
"models": {
"deepseek-v4-pro": {
"id": "fireworks/deepseek-v4-pro",
"name": "DeepSeek V4 Pro (SIN)",
"options": {
"thinking": { "type": "enabled", "budgetTokens": 64000 },
"temperature": 0
},
"variants": {
"off": { "thinking": { "type": "disabled" }, "temperature": 0 },
"low": { "thinking": { "type": "enabled", "budgetTokens": 4000 }, "temperature": 0 },
"medium": { "thinking": { "type": "enabled", "budgetTokens": 16000 }, "temperature": 0 },
"high": { "thinking": { "type": "enabled", "budgetTokens": 64000 }, "temperature": 0 },
"max": { "thinking": { "type": "enabled", "budgetTokens": 65536 }, "temperature": 0 }
},
"limit": { "context": 1048576, "output": 65536 }
}
},
"options": {
"baseURL": "https://sinatorpool-router.delqhi.com/inference/v1",
"apiKey": "<DEIN_API_KEY>"
}
}
}
}