Last active
August 4, 2025 02:29
-
-
Save steipete/1508c6fd01c27734f786dd70533116d2 to your computer and use it in GitHub Desktop.
How to configure opencode with Cerebras Qwen 3 Coder 480B (it's so fast!)
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", | |
"model": "cerebras/qwen-3-coder-480b", | |
"provider": { | |
"cerebras": { | |
"api": "https://api.cerebras.ai/v1", | |
"npm": "@ai-sdk/openai-compatible", | |
"name": "Cerebras", | |
"env": [], | |
"options": { | |
"apiKey": "csk-......" | |
}, | |
"models": { | |
"qwen-3-coder-480b": { | |
"name": "Qwen 3 Coder 480B", | |
"attachment": false, | |
"reasoning": false, | |
"temperature": true, | |
"tool_call": true, | |
"cost": { | |
"input": 0, | |
"output": 0 | |
}, | |
"limit": { | |
"context": 131072, | |
"output": 8192 | |
}, | |
"options": { | |
"stream": true | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment