
Flagship omni-model for text, image, audio, and video. 互联网档案馆的存檔,存档日期2014-03-02., p. 3h音频,1h视频,90+输入和30+输出语言,55声调调调.
Flagship omni-model for text, image, audio, and video. 互联网档案馆的存檔,存档日期2014-03-02., p. 3h音频,1h视频,90+输入和30+输出语言,55声调调调.
也称为 Qwen3.5 Omni, Alibaba Cloud Qwen3.5 Omni Plus, Qwen3.5-Omni-Plus, qwen3-5-omni-plus
qwen3-5-omni-plus/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1/audio/speechPOST/v1beta/models/qwen3-5-omni-plus:generateContentqwen3.5-omni-plus来自 EmpirioLabs 目录的实时按量计费价格。只为实际用量付费,没有月度最低消费。
Qwen3.5 Omni Plus 提供 OpenAI 兼容的 Chat Completions API。用你的 EmpirioLabs API 密钥把任意 OpenAI SDK 指向 https://api.empiriolabs.ai/v1,并使用模型 ID qwen3-5-omni-plus。 在EmpirioLabs 控制台获取 API 密钥。
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-5-omni-plus",
"messages": [
{"role": "user", "content": "Write a haiku about the ocean."}
]
}'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-plus",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs 上 Qwen3.5 Omni Plus API 支持的请求参数。省略字段时使用默认值。
| 参数 | 类型 | 默认值 | 范围 / 值 | 描述 |
|---|---|---|---|---|
| temperature | number | 0.7 | 0 到 2 | 采样温度。0 = 确定性,2 = 最大随机性。 |
| top_p | number | 0.9 | 0 到 1 | 核抽样概率质量。低 = 更专注。 |
| max_tokens | number | 4096 | 1 到 32768 | 回复中最多的代币。 |
| output_mode | enum | text | text, text_audio | 输出格式模式。文本=仅文本,音频=包含合成语音。 |
| voice | string | Tina | - | 音频输出的语音名称(output_mode = 音频时)。 |
| tool_web_search | boolean | false | - | 允许模型在需要时进行网页搜索。 |
| video_fps | number | 2 | 0.1 到 10 | 从输入视频中采样的帧每秒进行分析。 |
| vl_high_resolution_images | boolean | true | - | 输入图像使用更高分辨率。细节更好,成本更高。 |
| max_pixels | number | 2621440 | 1 到 99999999 | 每张输入图像的最大像素数。更大=细节更多但速度慢/标记更多。 |
| response_format | enum | - | - | 将输出限制为JSON。对任何有效的 JSON 对象使用 JSON 模式,或者用 JSON 模式强制输出与你提供的模式相符的模式。 |
Audio billing - 音频比 text/image /video 高标价 - 当音频输出启用时,输出文本不收费 - 只有音频符号 Voice 和语言 - 55 语音调值 - 音频输出支持29种语言,7种方言
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.
在 EmpirioLabs,Qwen3.5 Omni Plus 按量计费。本页的实时价格表始终与 API 的实际计费一致。
Qwen3.5 Omni Plus 支持 256K token 的上下文窗口,每次响应最多 32,768 个输出 token。
兼容。Qwen3.5 Omni Plus 提供 OpenAI 兼容的 Chat Completions API,现有 OpenAI SDK 只需把 base_url 指向 https://api.empiriolabs.ai/v1 并把模型 ID 设为 qwen3-5-omni-plus 即可使用。
可以。EmpirioLabs Playground在浏览器中以与 API 相同的参数运行 Qwen3.5 Omni Plus,你可以在写代码之前先测试提示词。
创建 EmpirioLabs 账户,然后在控制台的 API Keys生成密钥。计费使用按量付费的额度,只为实际发出的请求付费。