
3.6シリーズ(テキストのみ)で最大のプレビューバリアント:コーディングエージェントの実行力の向上、強力なフロントエンドスキル、そしてより広範なロングテール知識。
3.6シリーズ(テキストのみ)で最大のプレビューバリアント:コーディングエージェントの実行力の向上、強力なフロントエンドスキル、そしてより広範なロングテール知識。
別名 Qwen3.6 Max, Alibaba Cloud Qwen3.6 Max Preview
qwen3-6-max-preview/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/qwen3-6-max-preview:generateContentqwen3.6-max-previewEmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。
Qwen3.6 Max Preview は OpenAI 互換の Chat Completions API を提供します。任意の OpenAI SDK を EmpirioLabs API キーで https://api.empiriolabs.ai/v1 に向け、モデル ID qwen3-6-max-preview を使ってください。 EmpirioLabs ダッシュボードで API キーを取得してください。
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-6-max-preview",
"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-6-max-preview",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs 上の Qwen3.6 Max Preview API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。
| パラメータ | タイプ | デフォルト | 範囲 / 値 | 説明 |
|---|---|---|---|---|
| temperature | number | 0.7 | 0 から 2 | サンプリング温度。0は決定的で、2は最大のランダム性です。 |
| top_p | number | 1 | 0 から 1 | 原子核サンプリング確率質量。値が低いほど出力がより集中します。 |
| max_tokens | number | 4096 | 1 から 65536 | 最大出力トークン。 |
| stop | string | - | - | 最大4つの文字列で、モデルはこれ以上のトークン生成を停止します。 |
| enable_thinking | boolean | true | - | 答える前に論理を可能にしましょう。 |
| reasoning_effort | enum | medium | none, low, medium, high, max | 推論の努力レベル。誰も思考を妨げるものではありません。低、中、高、最大は選択したモデルに合わせて限定された思考予算を設定します。 |
| thinking_budget | number | 32768 | 1 から 393216 | 思考時に推論のために確保される最大トークンが有効になっています。 |
| frequency_penalty | number | 0 | -2 から 2 | トークンが既に出現した回数に基づくペナルティです。 |
| presence_penalty | number | 0 | -2 から 2 | 生成されたテキストに既に表示されたトークンに対するペナルティ。 |
| tool_web_search | boolean | false | - | リアルタイムの情報をウェブで検索しましょう。呼び出しごとにリクエストコストが$0.020増加します。 |
| response_format | enum | - | - | 出力を有効なJSONオブジェクト(JSONモード)として返します。プロンプトで使いたいフィールドを説明してください。 |
| disable_formatting | boolean | false | - | EmpirioLabs Markdownフォーマット(引用 [[N]](URL)の書き換え + ウェブ検索やツール使用時の参考文献ブロック)は省略してください。単純な[N]引用付きの生の上流回答が返されます。 |
価格は128,000トークンより約1.5倍です。このプレビューではプレーンテキスト機能のみ;マルチモーダルはまだ有効になっていません。
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.6 Max Preview は従量課金です。このページのライブ料金表は常に API の請求額と一致します。
Qwen3.6 Max Preview は 256K トークンのコンテキストウィンドウに対応しています(1回の応答あたり最大 65,536 出力トークン)。
はい。Qwen3.6 Max Preview は OpenAI 互換の Chat Completions API を提供しているため、既存の OpenAI SDK は base_url を https://api.empiriolabs.ai/v1 に向けてモデル ID を qwen3-6-max-preview に設定するだけで動作します。
はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Qwen3.6 Max Preview をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。
EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。