summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src/content/docs
diff options
context:
space:
mode:
authoropencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>2025-12-04 22:39:13 -0600
committerGitHub <[email protected]>2025-12-04 22:39:13 -0600
commit095a1ab041de65e04234b317f107be9e95fab906 (patch)
tree18ba1f60937966e01242cc5dcafc58f4ffad24a3 /packages/web/src/content/docs
parent71e578eac9dd78324aa9d8e94c72afa767b86dc3 (diff)
downloadopencode-095a1ab041de65e04234b317f107be9e95fab906.tar.gz
opencode-095a1ab041de65e04234b317f107be9e95fab906.zip
docs: llama.cpp docs: `limit` moved under model (#5089)
Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: GitHub Action <[email protected]>
Diffstat (limited to 'packages/web/src/content/docs')
-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
}
}
}