
Quen3.5 9B是一种紧凑的多式联运推理模型,有256K上下文,图像和视频输入,功能工具,以及结构化输出.
Quen3.5 9B是一种紧凑的多式联运推理模型,有256K上下文,图像和视频输入,功能工具,以及结构化输出.
支持文本,图像,和视频输入,流线,函数工具,结构化的JSON输出,种子控制,以及默认的思维模式. 使用推理 努力或思考 预算来进行有限度的思考, 或者允许 思考=虚假来直接回答 。 自动缓存读数在模型服务报告时按缓存输入率计费. 不支持明确的缓存控制 。
也称为 Alibaba Cloud Qwen3.5 9B, Qwen3.5-9B, qwen3-5-9b
qwen3-5-9bPOST /v1/chat/completionsPOST /v1/responsesPOST /v1/messagesPOST /v1/completionsLive pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.
Qwen3.5 9B serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id qwen3-5-9b. Get an API key from the EmpirioLabs dashboard.
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-5-9b",
"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-9b",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)Request parameters supported by the Qwen3.5 9B API on EmpirioLabs. Defaults apply when a field is omitted.
| 参数 | 类型 | 默认 | 范围 / 值 | 描述 |
|---|---|---|---|---|
| temperature | number | 0.7 | 0 to 2 | Sampling temperature. 0 is deterministic and 2 is maximum randomness. |
| top_p | number | 0.95 | 0 to 1 | Nucleus sampling probability mass. Lower values make outputs more focused. |
| max_tokens | integer | 4096 | 1 to 32768 | Maximum output tokens. |
| stop | string | - | - | Up to 4 strings where the model will stop generating further tokens. |
| reasoning_effort | enum | medium | none, low, medium, high, max | Reasoning effort. none disables thinking; low, medium, high, and max set bounded thinking budgets. |
| enable_thinking | boolean | true | - | Enable the model reasoning channel before final output. |
| thinking_budget | integer | 4096 | 1024 to 32768 | Maximum thinking tokens before the final answer. If max_tokens is lower, the service reserves room for the answer. |
| top_k | integer | 20 | 1 to 200 | Limit sampling to the top K candidate tokens when supported. |
| min_p | number | 0 | 0 to 1 | Minimum probability threshold for token sampling. |
| presence_penalty | number | 0 | -2 to 2 | Penalty for tokens that already appeared in the generated text. |
| frequency_penalty | number | 0 | -2 to 2 | Penalty based on how often a token has already appeared. |
| repetition_penalty | number | 1 | 0.1 to 2 | Penalty used by SGLang to reduce repeated text. |
| seed | integer | - | 0 to 2147483647 | Optional random seed for reproducible sampling. |
| logprobs | boolean | false | - | Return token log probabilities when supported. |
支持文本,图像,和视频输入,流线,函数工具,结构化的JSON输出,种子控制,以及默认的思维模式. 使用推理 努力或思考 预算来进行有限度的思考, 或者允许 思考=虚假来直接回答 。 自动缓存读数在模型服务报告时按缓存输入率计费. 不支持明确的缓存控制 。
On EmpirioLabs, Qwen3.5 9B is billed pay as you go: 投入 $0.09 (was $0.10) 每1M 提示符; 产出 $0.13 (was $0.15) 每1M个生成的令牌; 隐形缓存已读 $0.045 每1M缓存输入符. The live rate card on this page always matches what the API charges.
Qwen3.5 9B supports a 256K-token context window with up to 32,768 output tokens per response.
Yes. Qwen3.5 9B serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to qwen3-5-9b.
Yes. The EmpirioLabs playground runs Qwen3.5 9B in the browser with the same parameters the API exposes, so you can test prompts before writing code.
Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.
Check out our pricing or reach out if you want your own model deployed on our stack.