Qwen3.6 35B
Norlen’s flagship for general-purpose chat, instructions, and reasoning. An open source model from the Qwen family (mixture-of-experts architecture), served with quantization for fast responses without sacrificing quality.
id | qwen3.6-35b |
| Type | Chat / text |
| Context | 16K tokens |
| Available on | Starter, Standard, Pro |
When to use
Section titled “When to use”- General-purpose assistants and chatbots
- Summarization, rewriting, and information extraction
- Reasoning and answers that require more depth
For code, prefer Qwen3 Coder. For short, fast responses, Gemma 4 12B.
Example
Section titled “Example”resp = client.chat.completions.create( model="qwen3.6-35b", messages=[{"role": "user", "content": "Summarize the concept of idempotency."}],)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.6-35b","messages":[{"role":"user","content":"Summarize idempotency."}]}'Full parameters in Chat completions.