Playable example preview
Official example media can be added as model access and asset usage are approved.
Qwen
QwenQwen3.8 Max Preview is an always-thinking Token Plan model for reasoning, visual understanding and text generation. Nfero explains its preview status, limits and Alibaba access route without claiming a public pay-as-you-go price or live demo.
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.
Model answer
Your model answer will appear here after the demo runs.
Estimate shown; confirm final terms in Alibaba Cloud.
Terms apply. Confirm usage terms in the customer's Alibaba agreement before production launch.
The Individual plan documents qwen3.8-max-preview for reasoning, visual understanding and text generation. It is a preview model, always uses thinking, and is not currently a public Nfero demo.
curl -X POST https://nfero.com/api/models/qwen3.8-max-preview/run \
-H 'content-type: application/json' \
-d '{"system_prompt":"You are a precise, helpful assistant.","prompt":"Explain why Singapore-region inference matters for a public AI demo.","temperature":0.7,"top_p":0.8,"max_tokens":512,"stream":false,"json_mode":false}'await fetch('/api/models/qwen3.8-max-preview/run', {
method: 'POST',
headers: { 'content-type': 'application/json' },
body: JSON.stringify({
"system_prompt": "You are a precise, helpful assistant.",
"prompt": "Explain why Singapore-region inference matters for a public AI demo.",
"temperature": 0.7,
"top_p": 0.8,
"max_tokens": 512,
"stream": false,
"json_mode": false
})
});import requests
requests.post('https://nfero.com/api/models/qwen3.8-max-preview/run', json={
"system_prompt": "You are a precise, helpful assistant.",
"prompt": "Explain why Singapore-region inference matters for a public AI demo.",
"temperature": 0.7,
"top_p": 0.8,
"max_tokens": 512,
"stream": false,
"json_mode": false
})