Image
Playable example preview
Official example media can be added as model access and asset usage are approved.
Qwen
QwenQwen3.6 Flash is the faster Qwen route for lightweight prompts, tool trials, and rapid comparison against Max and Plus models. It is useful when latency and demo volume matter.
Model answer
Your model answer will appear here after the demo runs.
Visual demos
Official example media can be added as model access and asset usage are approved.
Official example media can be added as model access and asset usage are approved.
Official example media can be added as model access and asset usage are approved.
Official example media can be added as model access and asset usage are approved.
Terms apply. Confirm usage terms in the customer's Alibaba agreement before production launch.
Live demos are available through the daily free tier, with upgrade paths to Alibaba Cloud and Qoder.
curl -X POST https://nfero.com/api/models/qwen3.6-flash/run \
-H 'content-type: application/json' \
-d '{"prompt":"Give three concise Alibaba model hub filters.","max_tokens":160}'await fetch('/api/models/qwen3.6-flash/run', {
method: 'POST',
headers: { 'content-type': 'application/json' },
body: JSON.stringify({
"prompt": "Give three concise Alibaba model hub filters.",
"max_tokens": 160
})
});import requests
requests.post('https://nfero.com/api/models/qwen3.6-flash/run', json={
"prompt": "Give three concise Alibaba model hub filters.",
"max_tokens": 160
})