Qwen3.6 35B A3B एपीआई

Qwen3.6 35B A3B is a 256-expert mixture-of-experts reasoning model with 128K context, function tools, and strict structured JSON output.

Alibaba Cloudटेक्स्ट जनरेशन128K कॉन्टेक्स्टरिलीज 29 जुल॰ 2026नेटिव इन्फरेंसनया

Qwen3.6 35B A3B के बारे में

Qwen3.6 35B A3B is a 256-expert mixture-of-experts reasoning model with 128K context, function tools, and strict structured JSON output.

Text-only. This build does not accept image or video input, unlike the base Qwen3.6 35B A3B. Weights Served from the 2-bit eschamoe W2 build published by Escha Labs (eschalabs.com) as EschaLabs/Qwen3.6-35B-A3B-Escha-W2 on Hugging Face, under Apache-2.0. The experts are quantized to 2 bits, mixed per projection (gate_up_proj at 2-bit and down_proj at 3-bit), the dense layers are int8, and the KV cache is FP16. Escha Labs publishes the quality comparison against an FP8 baseline of the same model: parity or better on math, graduate science, tool use and long context, about 2 percent lower on broad knowledge, and about 7 percent lower on long-horizon code generation, which is the one clear gap. See the model card for the full benchmark table and protocol. Behavior Supports streaming, function tools, structured JSON output including strict schemas, and thinking mode on by default. Set enable_thinking=false for direct answers. With thinking on, the reasoning arrives in reasoning_content and the answer in content, so read both. A low max_tokens with thinking on can be spent entirely on reasoning, so allow room for the answer. Caching Automatic prefix cache reads are billed at the cached-input rate when reported. Explicit cache controls are not supported. Cancelling a streaming request mid-generation bills only the tokens produced up to that point.

इस नाम से भी जाना जाता है Alibaba Cloud Qwen3.6 35B A3B, Qwen3.6-35B-A3B, qwen3-6-35b-a3b

reasoningfunction callingjson modecache

Qwen3.6 35B A3B की विशेषताएं

मॉडल ID
qwen3-6-35b-a3b
प्रदाता
Alibaba Cloud
श्रेणी
टेक्स्ट जनरेशन
रिलीज
29 जुल॰ 2026
कॉन्टेक्स्ट विंडो
128K टोकन
अधिकतम आउटपुट
16,384 टोकन
इनपुट
टेक्स्ट
आउटपुट
टेक्स्ट
संरचित आउटपुट
JSON Schema
एंडपॉइंट
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1/completionsPOST/v1beta/models/qwen3-6-35b-a3b:generateContent
वैकल्पिक मॉडल ID
qwen3.6-35b-a3bqwen/qwen3.6-35b-a3bEschaLabs/Qwen3.6-35B-A3B-Escha-W2

Qwen3.6 35B A3B API की कीमतें72% तक बचाएं

EmpirioLabs कैटलॉग से लाइव pay-as-you-go दरें। आप सिर्फ उतना ही भुगतान करते हैं जितना उपयोग करते हैं, कोई मासिक न्यूनतम नहीं।

प्रकार
स्पेक
दर
इनपुट
per 1M prompt tokens
$0.248$0.07
आउटपुट
per 1M generated tokens
$1.485$0.42
Implicit cache read
per 1M cached input tokens
$0.035
Web Search (Linkup)
per call when invoked
$0.013
पूरे कीमत पेज पर तुलना करें

Qwen3.6 35B A3B API को कैसे कॉल करें

Qwen3.6 35B A3B OpenAI-संगत Chat Completions API देता है। किसी भी OpenAI SDK को अपनी EmpirioLabs API key के साथ https://api.empiriolabs.ai/v1 पर सेट करें और model id qwen3-6-35b-a3b उपयोग करें। EmpirioLabs डैशबोर्ड से API key प्राप्त करें।

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3-6-35b-a3b",
    "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-6-35b-a3b",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Qwen3.6 35B A3B API का पूरा संदर्भ

Qwen3.6 35B A3B API के पैरामीटर

EmpirioLabs पर Qwen3.6 35B A3B API द्वारा समर्थित request पैरामीटर। फ़ील्ड छोड़ने पर डिफ़ॉल्ट मान लागू होते हैं।

पैरामीटरप्रकारडिफॉल्टरेंज / मानविवरण
temperaturenumber0.70 से 2Sampling temperature. 0 is deterministic and 2 is maximum randomness.
top_pnumber0.950 से 1Nucleus sampling probability mass. Lower values make outputs more focused.
max_tokensnumber40961 से 16384Maximum output tokens. With thinking on, leave room for the answer as well as the reasoning.
stopstring--Up to 4 strings where the model will stop generating further tokens.
enable_thinkingbooleantrue-Enable the model reasoning channel before final output. Reasoning is returned in reasoning_content and bills as output tokens.
reasoning_effortenummediumnone, low, medium, high, maxReasoning effort. none disables thinking. Any other value enables it.
top_knumber201 से 200Limit sampling to the top K candidate tokens.
min_pnumber00 से 1Minimum probability threshold for token sampling.
presence_penaltynumber0-2 से 2Penalize tokens that have already appeared, increasing topic diversity.
frequency_penaltynumber0-2 से 2Penalize tokens in proportion to how often they have appeared.
seednumber-0 से 2147483647Best-effort determinism. Output is not bit-reproducible across requests because batch composition changes accumulation order.
response_formatenum-text, json_object, json_schemaStructured output. json_object returns valid JSON. json_schema enforces your schema exactly.
web_search_linkupbooleanfalse-Optional web search powered by Linkup. When enabled, recent web sources are retrieved using your latest user message as the query and provided to the model as additional context. Adds $0.013 per call when invoked on top of the model's normal token cost. Disabled by default.

जानने योग्य

Text-only. This build does not accept image or video input, unlike the base Qwen3.6 35B A3B.

Weights

Served from the 2-bit eschamoe W2 build published by Escha Labs (eschalabs.com) as EschaLabs/Qwen3.6-35B-A3B-Escha-W2 on Hugging Face, under Apache-2.0. The experts are quantized to 2 bits, mixed per projection (gate_up_proj at 2-bit and down_proj at 3-bit), the dense layers are int8, and the KV cache is FP16. Escha Labs publishes the quality comparison against an FP8 baseline of the same model: parity or better on math, graduate science, tool use and long context, about 2 percent lower on broad knowledge, and about 7 percent lower on long-horizon code generation, which is the one clear gap. See the model card for the full benchmark table and protocol.

Behavior

Supports streaming, function tools, structured JSON output including strict schemas, and thinking mode on by default. Set enable_thinking=false for direct answers. With thinking on, the reasoning arrives in reasoning_content and the answer in content, so read both. A low max_tokens with thinking on can be spent entirely on reasoning, so allow room for the answer.

Caching

Automatic prefix cache reads are billed at the cached-input rate when reported. Explicit cache controls are not supported. Cancelling a streaming request mid-generation bills only the tokens produced up to that point.

Qwen3.6 35B A3B API: आम सवाल

Qwen3.6 35B A3B API की कीमत कितनी है?

EmpirioLabs पर Qwen3.6 35B A3B का बिल उपयोग के अनुसार बनता है। इस पेज की लाइव दर तालिका हमेशा API की वास्तविक बिलिंग से मेल खाती है।

Qwen3.6 35B A3B की context window कितनी है?

Qwen3.6 35B A3B 128K टोकन की context window समर्थित करता है, प्रति उत्तर अधिकतम 16,384 आउटपुट टोकन के साथ।

क्या Qwen3.6 35B A3B API OpenAI-संगत है?

हां। Qwen3.6 35B A3B OpenAI-संगत Chat Completions API देता है, इसलिए मौजूदा OpenAI SDKs base_url को https://api.empiriolabs.ai/v1 पर सेट करके और model id qwen3-6-35b-a3b रखकर काम करते हैं।

क्या मैं इंटीग्रेट करने से पहले ब्राउज़र में Qwen3.6 35B A3B आज़मा सकता हूं?

हां। EmpirioLabs playground ब्राउज़र में Qwen3.6 35B A3B को उन्हीं पैरामीटरों के साथ चलाता है जो API देता है, ताकि आप कोड लिखने से पहले prompt आज़मा सकें।

Qwen3.6 35B A3B की API key कैसे मिलेगी?

EmpirioLabs खाता बनाएं, फिर डैशबोर्ड में API Keys में key जनरेट करें। बिलिंग pay-as-you-go क्रेडिट से होती है, इसलिए आप सिर्फ अपनी requests का भुगतान करते हैं।

बेहतर समापन बिंदुओं का उपयोग करने के लिए तैयार हैं?

हमारे मूल्य निर्धारण की जाँच करें या यदि आप चाहते हैं कि आपका अपना मॉडल हमारे स्टैक पर तैनात किया जाए, तो पहुंचें।