Privacy settings

Privacy and GDPR notice

Nfero uses essential storage for language preferences and demo access controls. With your consent, Google Analytics and lightweight usage events help improve model demos and outbound subscription routing. Live demo prompts may be sent to configured Alibaba-hosted model endpoints.

Qwen

Qwen3.6 Flash

Qwen3.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.

QwenChatReasoningVision languageCodingLive
AvailabilityLive
AccessLive demo
RegionSingapore-first

Live prompt

Try this model

Checking free demos

Send a prompt to the live Alibaba endpoint. Your answer appears in the result panel.

Sample prompts
Advanced controls
Have an access code?

Model answer

Result

Model answer
Your model answer will appear here after the demo runs.

Estimated cost

$0.000251
Estimated input tokens< $0.0001
Reserved output tokens$0.00024

Visual demos

Example media slots

Image

Playable example preview

Official example media can be added as model access and asset usage are approved.

Qwen Image sample
Image

Example output

Official example media can be added as model access and asset usage are approved.

Image

Example output

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.

Usage, access, and limitsTerms apply

Usage terms

Terms apply. Confirm usage terms in the customer's Alibaba agreement before production launch.

Hosted access

Live demos are available through the daily free tier, with upgrade paths to Alibaba Cloud and Qoder.

Model limits

Requests per minute120
Input window1,000,000
Output limit65,536
Developer implementationAPI examples
curl
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}'
JavaScript
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
})
});
Python
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
})