summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/web/src/content/docs/providers.mdx12
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/web/src/content/docs/providers.mdx b/packages/web/src/content/docs/providers.mdx
index e8534ceee..3b4bed757 100644
--- a/packages/web/src/content/docs/providers.mdx
+++ b/packages/web/src/content/docs/providers.mdx
@@ -568,7 +568,7 @@ The `global` region improves availability and reduces errors at no extra cost. U
You can configure opencode to use local models through [llama.cpp's](https://github.com/ggml-org/llama.cpp) llama-server utility
-```json title="opencode.json" "llama.cpp" {5, 6, 8, 10-14}
+```json title="opencode.json" "llama.cpp" {5, 6, 8, 10-15}
{
"$schema": "https://opencode.ai/config.json",
"provider": {
@@ -580,12 +580,12 @@ You can configure opencode to use local models through [llama.cpp's](https://git
},
"models": {
"qwen3-coder:a3b": {
- "name": "Qwen3-Coder: a3b-30b (local)"
+ "name": "Qwen3-Coder: a3b-30b (local)",
+ "limit": {
+ "context": 128000,
+ "output": 65536
+ }
}
- },
- "limit": {
- "context": 128000,
- "output": 65536
}
}
}