
Multimodal reasoner with 256K context, image and video input, function tools, structured JSON, and thinking on by default.
Multimodal reasoner with 256K context, image and video input, function tools, structured JSON, and thinking on by default.
Supports text, image, and video input, streaming, function tools, structured JSON output, seed control, and thinking mode on by default. Use reasoning_effort (xhigh, medium, low) or enable_thinking=false for direct answers. Automatic cache reads are billed at the cached-input rate when reported by the model service. Explicit cache controls are not supported. Open-weight context is 256K; hosted 1M context and official built-in tools are not included.
別名 Alibaba Cloud Qwen3.8 27B
qwen3-8-27b/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1/completionsPOST/v1beta/models/qwen3-8-27b:generateContentqwen3.8-27bqwen/qwen3-8-27bqwen/qwen3.8-27bEmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。
Qwen3.8 27B は OpenAI 互換の Chat Completions API を提供します。任意の OpenAI SDK を EmpirioLabs API キーで https://api.empiriolabs.ai/v1 に向け、モデル ID qwen3-8-27b を使ってください。 EmpirioLabs ダッシュボードで API キーを取得してください。
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-8-27b",
"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-8-27b",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs 上の Qwen3.8 27B API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。
| パラメータ | タイプ | デフォルト | 範囲 / 値 | 説明 |
|---|---|---|---|---|
| temperature | number | 1 | 0 から 2 | Sampling temperature. 0 is deterministic and 2 is maximum randomness. |
| top_p | number | 0.95 | 0 から 1 | Nucleus sampling probability mass. Lower values make outputs more focused. |
| max_tokens | integer | 4096 | 1 から 32768 | Maximum output tokens. |
| stop | string | - | - | Up to 4 strings where the model will stop generating further tokens. |
| enable_thinking | boolean | true | - | Enable reasoning before answering. |
| reasoning_effort | enum | xhigh | none, low, medium, xhigh | Reasoning effort level. none disables thinking. low, medium, and xhigh select discrete thinking depths. There is no token budget control. |
| top_k | integer | 20 | 1 から 200 | Limit sampling to the top K candidate tokens when supported. |
| min_p | number | 0 | 0 から 1 | Minimum probability threshold for token sampling. |
| frequency_penalty | number | 0 | -2 から 2 | Penalty based on how often a token has already appeared. |
| presence_penalty | number | 0 | -2 から 2 | Penalty for tokens that already appeared in the generated text. |
| repetition_penalty | number | 1 | 0.1 から 2 | Penalty used by SGLang to reduce repeated text. |
| seed | integer | - | 0 から 2147483647 | Optional random seed for reproducible sampling. |
| logprobs | boolean | false | - | Return token log probabilities when supported. |
| top_logprobs | integer | - | 0 から 20 | Return up to this many top token log probabilities. |
Supports text, image, and video input, streaming, function tools, structured JSON output, seed control, and thinking mode on by default. Use reasoning_effort (xhigh, medium, low) or enable_thinking=false for direct answers. Automatic cache reads are billed at the cached-input rate when reported by the model service. Explicit cache controls are not supported. Open-weight context is 256K; hosted 1M context and official built-in tools are not included.
EmpirioLabs では Qwen3.8 27B は従量課金です。このページのライブ料金表は常に API の請求額と一致します。
Qwen3.8 27B は 256K トークンのコンテキストウィンドウに対応しています(1回の応答あたり最大 32,768 出力トークン)。
はい。Qwen3.8 27B は OpenAI 互換の Chat Completions API を提供しているため、既存の OpenAI SDK は base_url を https://api.empiriolabs.ai/v1 に向けてモデル ID を qwen3-8-27b に設定するだけで動作します。
はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Qwen3.8 27B をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。
EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。