Last active
August 9, 2026 15:33
-
-
Save GaetanoPiazzolla/61cc2ecf7d729faac98a14f3caad41e5 to your computer and use it in GitHub Desktop.
Open Code Config to point at a local running Llama server with Qwen 3.6, plus multi agent setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://opencode.ai/config.json", | |
| "provider": { | |
| "llamacpp": { | |
| "npm": "@ai-sdk/openai-compatible", | |
| "name": "llama-server (local)", | |
| "options": { | |
| "baseURL": "http://127.0.0.1:8080/v1" | |
| }, | |
| "models": { | |
| "qwen3.6-35b-a3b": { | |
| "name": "Qwen3.6 35B-A3B (UD-Q4_K_S)", | |
| "tool_call": true, | |
| "reasoning": true, | |
| "limit": { | |
| "context": 65536, | |
| "output": 8192 | |
| } | |
| } | |
| } | |
| } | |
| }, | |
| "model": "llamacpp/qwen3.6-35b-a3b", | |
| "small_model": "llamacpp/qwen3.6-35b-a3b", | |
| "compaction": { | |
| "auto": true, | |
| "prune": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment