Qwen: Qwen3.6 Plus
qwen3.6-plus
chatQwen
Quick Reference
- Input
- Text, Image
- Output
- Text
- Context
- 1M
- Max Output
- 65.5K
- Input Price
- $0.29/M
- Output Price
- $1.76/M
- Author
- Alibaba
- Version
- main
- Open Source
- Yes
Overview
Qwen3.6 native vision-language Plus model, delivering exceptional performance comparable to today's leading frontier models, with significantly improved results over the 3.5 series. The model is markedly enhanced in agentic coding, front-end programming, and vibe coding, as well as in multimodal universal recognition, OCR, and object localization. This version is functionally equivalent to the snapshot model qwen3.6-plus-2026-04-02.
Input modalities
TextImage
Output modalities
Text
Capabilities
chatvision
Features
Function Calling
Structured Output
Caching
Batch Processing
Web Search
Prefix Completion
Pricing
Per-token prices for Qwen: Qwen3.6 Plus.
Input <= 128K
| Token Type | Price | Unit |
|---|---|---|
| Input | $0.29/M | per million tokens |
| Output | $1.76/M | per million tokens |
| Cache Read | $0.03/M | per million tokens |
Specifications
Context Window
1Mtokens
Max Input
934Ktokens
Max Output
65.5Ktokens
API Reference
OpenAI-compatible endpoint at https://api.inferoute.ai/v1.
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.inferoute.ai/v1",
api_key=os.environ.get("INFEROUTE_API_KEY"),
)
try:
response = client.chat.completions.create(
model="qwen3.6-plus",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Write a haiku about recursion."},
],
max_tokens=512,
temperature=0.7,
)
print(response.choices[0].message.content)
except Exception as e:
print(f"Error: {e}")