Qwen3 Coder
An open source model from the Qwen family specialized in code — generation, explanation, refactoring, and review. Mixture-of-experts architecture, served with quantization.
id | qwen3-coder |
| Type | Chat / text (code) |
| Context | 16K tokens |
| Available on | Standard, Pro |
When to use
Section titled “When to use”- Generate functions, tests, and scripts
- Explain and review code snippets
- Refactor and migrate code between styles or languages
Example
Section titled “Example”resp = client.chat.completions.create( model="qwen3-coder", messages=[{"role": "user", "content": "Write a Python function that validates a CPF."}],)print(resp.choices[0].message.content)curl https://api.norlen.io/v1/chat/completions \ -H "Authorization: Bearer $NORLEN_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"qwen3-coder","messages":[{"role":"user","content":"Function that validates CPF in Python."}]}'Full parameters in Chat completions.