Qwen3.5 Omni Flash API

成本效益高的全模态模型,处理文本、图像、音频和视频,支持90+语言,最高可达3小时音频和1小时视频。

Alibaba Cloud文本生成256K 上下文发布日期 2026年3月30日Singapore专有端点

关于 Qwen3.5 Omni Flash

成本效益高的全模态模型,处理文本、图像、音频和视频,支持90+语言,最高可达3小时音频和1小时视频。

也称为 Alibaba Cloud Qwen3.5 Omni Flash

visionaudio inaudio outmultilingualfunction callingweb search

Qwen3.5 Omni Flash 规格

模型 ID
qwen3-5-omni-flash
开发方
Alibaba Cloud
类别
文本生成
发布日期
2026年3月30日
上下文窗口
256K 个 token
最大输出
32,768 个 token
输入
文本图像视频音频
输出
文本音频
结构化输出
JSON Schema
区域
Singapore
端点
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1/audio/speechPOST/v1beta/models/qwen3-5-omni-flash:generateContentPOST/v1/audio/speech:stream
备用模型 ID
qwen3.5-omni-flash

Qwen3.5 Omni Flash API 价格

来自 EmpirioLabs 目录的实时按量计费价格。只为实际用量付费,没有月度最低消费。

类型
规格
价格
输入
每100万个提示词标记
per 1M prompt tokens $0.40per 1M prompt tokens $3.00
产出
每100万个生成代币
per 1M generated tokens $2.20per 1M generated tokens $11.90
网络搜索
每次调用时
$0.015
在完整价格页比较

如何调用 Qwen3.5 Omni Flash API

Qwen3.5 Omni Flash 提供 OpenAI 兼容的 Chat Completions API。用你的 EmpirioLabs API 密钥把任意 OpenAI SDK 指向 https://api.empiriolabs.ai/v1,并使用模型 ID qwen3-5-omni-flash。 在EmpirioLabs 控制台获取 API 密钥。

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-5-omni-flash",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="qwen3-5-omni-flash",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Qwen3.5 Omni Flash API 完整参考

Qwen3.5 Omni Flash API 参数

EmpirioLabs 上 Qwen3.5 Omni Flash API 支持的请求参数。省略字段时使用默认值。

参数类型默认值范围 / 值描述
temperaturenumber0.70 到 2采样温度。0是确定性的,2是最大随机性。
top_pnumber0.90 到 1核抽样概率质量。较低的数值使输出更集中。
max_tokensnumber40961 到 32768最大输出令牌。
output_modeenumtexttext, text_audio输出格式模式。文本=仅文本,音频=包含合成语音。
voicestringTina-音频输出的语音名称(output_mode = 音频时)。
vl_high_resolution_imagesbooleantrue-图像输入使用更高分辨率处理。
max_pixelsnumber26214401 到 99999999禁用高分辨率处理时,每张图像的最大像素数。
video_fpsnumber20.1 到 10每秒帧以从视频输入采样。
tool_web_searchbooleanfalse-在网上搜索实时信息。每次呼叫的请求费用都会增加$0.015。
response_formatenum--将输出限制为有效的 JSON。对任意 JSON 对象使用 JSON 模式,或者提供 JSON 模式强制执行精确的响应形态。

须知

音频计费 - 音频的令牌费率高于text/image/视频 - 启用音频输出时,输出文本不计费,只有音频令牌 语音和语言 - 55种语音音色可用 - 音频输出支持29种语言,7种方言

Per-tool billing (usage.tool_usage)

When this model invokes tools (web search, code interpreter, etc.) inside a single request, the response carries a normalized usage.tool_usage map alongside the token counts. The example below shows the shape, exact field names, units, and which tools appear can vary slightly per provider:

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

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

Qwen3.5 Omni Flash API:常见问题

Qwen3.5 Omni Flash API 收费多少?

在 EmpirioLabs,Qwen3.5 Omni Flash 按量计费。本页的实时价格表始终与 API 的实际计费一致。

Qwen3.5 Omni Flash 的上下文窗口有多大?

Qwen3.5 Omni Flash 支持 256K token 的上下文窗口,每次响应最多 32,768 个输出 token。

Qwen3.5 Omni Flash API 兼容 OpenAI 吗?

兼容。Qwen3.5 Omni Flash 提供 OpenAI 兼容的 Chat Completions API,现有 OpenAI SDK 只需把 base_url 指向 https://api.empiriolabs.ai/v1 并把模型 ID 设为 qwen3-5-omni-flash 即可使用。

集成之前可以在浏览器里试用 Qwen3.5 Omni Flash 吗?

可以。EmpirioLabs Playground在浏览器中以与 API 相同的参数运行 Qwen3.5 Omni Flash,你可以在写代码之前先测试提示词。

如何获取 Qwen3.5 Omni Flash API 密钥?

创建 EmpirioLabs 账户,然后在控制台的 API Keys生成密钥。计费使用按量付费的额度,只为实际发出的请求付费。

准备好使用更好的终端了吗?

查看我们的定价,或者如果你想将自己的模型部署到我们的堆栈中,请联系我们。