-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopencode.json
More file actions
96 lines (96 loc) · 2.87 KB
/
Copy pathopencode.json
File metadata and controls
96 lines (96 loc) · 2.87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"llama-cpp": {
"name": "llama.cpp (local)",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://localhost:8000/v1"
},
"models": {
"qwen3.6-35b-a3b": {
"name": "Qwen3.6 35B-A3B MoE",
"limit": { "context": 256000, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
},
"qwen3.6-27b": {
"name": "Qwen3.6 27B",
"limit": { "context": 256000, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
},
"qwen3.8-27b": {
"name": "Qwen3.8 27B",
"limit": { "context": 256000, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
}
}
},
"llama-cpp-onyx": {
"name": "llama.cpp (onyx)",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://localhost:8001/v1"
},
"models": {
"qwen3.6-35b-a3b": {
"name": "Qwen3.6 35B-A3B MoE",
"limit": { "context": 256000, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
}
}
},
"llama-cpp-test": {
"name": "llama.cpp (update_and_test_llama_image.py)",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://localhost:8000/v1"
},
"models": {
"qwen3.6-35b-a3b": {
"name": "Qwen3.6 35B-A3B MoE (test)",
"limit": { "context": 32768, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
},
"qwen3.6-27b": {
"name": "Qwen3.6 27B (test)",
"limit": { "context": 32768, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
},
"qwen3.8-27b": {
"name": "Qwen3.8 27B (test)",
"limit": { "context": 32768, "output": 8192 },
"modalities": { "input": ["text", "image"], "output": ["text"] }
},
"deepseek-v4-flash-q8": {
"name": "DeepSeek-V4-Flash Q8_0 (test)",
"limit": { "context": 32768, "output": 8192 },
"modalities": { "input": ["text"], "output": ["text"] }
}
}
},
"ollama": {
"name": "Ollama (local)",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://127.0.0.1:11434/v1"
},
"models": {
"qwen3.6:35b-a3b": {
"name": "qwen3.6:35b-a3b"
}
}
},
"onyx": {
"name": "Ollama on onyx",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://127.0.0.1:11435/v1"
},
"models": {
"qwen3.6:35b-a3b": {
"name": "qwen3.6:35b-a3b"
}
}
}
}
}