Qwen3.8 Omni Flash

Qwen3.8 Omni Flash
Alibaba Cloud · Text Generation
POST /v1/chat/completions

Omni-modal reasoner that reads text, images, audio, and video and answers in text, with a 1M token context, thinking, and native web search.

At a glance

FieldValue
Model idqwen3-8-omni-flash
Model release date2026-09-17
Input modalitiesText, Image, Audio, Video
Output modalitiesText
Context window1M
Weight precision-
Max output tokens131,072
RegionSingapore
Featuresreasoning, vision, audio_in, video, web_search, function_calling, structured_output
Native inferenceNo
NewYes
Structured outputJSON Schema
Supported endpointsPOST /v1/chat/completions, POST /v1/responses, POST /v1/messages, POST /v1beta/models/qwen3-8-omni-flash:generateContent
Alternate model idsqwen3.8-omni-flash

Pricing

ChargeSpecRate
Inputper 1M prompt tokens$0.30
Outputper 1M generated tokens$0.94
Web searchper call when invoked$0.02

Example request

curl https://api.empiriolabs.ai/v1/chat/completions \
-H 'Authorization: Bearer $EMPIRIOLABS_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"model": "qwen3-8-omni-flash", "messages": [{"role":"user","content":"Hello"}]}'

Parameters

ParameterTypeRequiredDefaultDescription
temperaturenumberno0.7Sampling temperature. 0 is deterministic and 2 is maximum randomness. · Range: 0 – 2
top_pnumberno0.9Nucleus sampling probability mass. Lower values make outputs more focused. · Range: 0 – 1
max_tokensnumberno4096Maximum output tokens. · Range: 1 – 131072
stopstringno-Up to 4 strings where the model will stop generating further tokens.
enable_thinkingbooleannotrueEnable reasoning before answering.
reasoning_effortenumno"medium"Reasoning effort level. none disables thinking. low, medium, high, and max set bounded thinking budgets sized to the selected model. · Allowed: none, low, medium, high, max
thinking_budgetnumberno32768Maximum tokens reserved for reasoning when thinking is enabled. · Range: 1 – 262144
vl_high_resolution_imagesbooleannotrueUse higher resolution processing for image inputs.
max_pixelsnumberno2621440Maximum pixel count per image when high resolution processing is disabled. · Range: 4096 – 16777216
video_fpsnumberno2Frames per second to sample from video inputs. · Range: 0.1 – 10
treat_images_as_videobooleannofalseTreat a sequence of images as video frames.
tool_web_searchbooleannofalseSearch the web for real-time information. Adds $0.02 to the request cost for each invoked call.
disable_formattingbooleannofalseReturn raw provider-style output without EmpirioLabs source formatting where supported.
response_formatenumno-Constrain the output to valid JSON. Use JSON mode for any JSON object, or supply a JSON Schema to force an exact response shape.

Notes

Text, image, audio, and video input are supported, and the model replies in text. Thinking is on by default; use enable_thinking to turn it off and thinking_budget to cap it at up to 262144 tokens. Thinking tokens are billed as output tokens. Web search is an optional built-in tool exposed through tool_web_search and adds $0.02 for each invoked call; a single request can invoke it more than once, and each invoked call is billed. For audio input, pass the file as a URL or a base64 data URI. A video’s soundtrack is billed as audio tokens alongside its video tokens.

Per-tool billing (usage.tool_usage)

When this model invokes built-in tools inside a single request, the response carries a normalized usage.tool_usage map alongside the token counts:

"usage": {
"prompt_tokens": 123,
"completion_tokens": 456,
"cost_usd": 0.0042,
"tool_usage": {"web_search": 3}
}

Tool counts are already factored into cost_usd and are surfaced for transparency so you can audit per-tool billing. The field is omitted when no tools were invoked.


Machine-readable schema: GET https://api.empiriolabs.ai/v1/models/qwen3-8-omni-flash.