-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.jsonc
More file actions
69 lines (69 loc) · 2.12 KB
/
opencode.jsonc
File metadata and controls
69 lines (69 loc) · 2.12 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
61
62
63
64
65
66
67
68
69
{
"$schema": "https://opencode.ai/config.json",
// Agents
"default_agent": "plan",
// Permissions
"permission": {
"webfetch": "allow",
"question": "allow",
},
// Providers
"enabled_providers": [
"llama.cpp"
],
"provider": {
"llama.cpp": {
"npm": "@ai-sdk/openai-compatible",
"name": "llama-server",
"options": {
"baseURL": "http://jupiter:8001/v1",
},
// Models
"models": {
"unsloth/Qwen3.5-122B-A10B": {
"name": "unsloth/Qwen3.5-122B-A10B",
"limit": {
"context": 65536,
"output": 32768,
},
},
"unsloth/Qwen3.6-35B-A3B": {
"name": "unsloth/Qwen3.6-35B-A3B",
"limit": {
"context": 131072,
"output": 32768,
},
},
"unsloth/Qwen3.6-35B-A3B_UD-Q8-K-XL": {
"name": "unsloth/Qwen3.6-35B-A3B (UD-Q8_K_XL)",
"limit": {
"context": 131072,
"output": 32768,
},
},
"unsloth/Qwen3.5-27B": {
"name": "unsloth/Qwen3.5-27B",
"limit": {
"context": 131072,
"output": 32768,
},
},
"unsloth/Gemma-4-31B": {
"name": "unsloth/Gemma-4-31B",
"limit": {
"context": 131072,
// "output": 16384,
"output": 32768,
},
},
"unsloth/Gemma-4-26B-A4B": {
"name": "unsloth/Gemma-4-26B-A4B",
"limit": {
"context": 262144,
"output": 65536,
},
},
},
},
},
}