Overview
About this model
Qwen3-Coder-30B-A3B-Instruct has the following features: Type: Causal Language Models Training Stage: Pretraining & Post-training Number of Parameters: 30.5B in total and 3.3B activated Number of Layers: 48 Number of Attention Heads (GQA): 32 for Q and 4 for KV Number of Experts: 128 Number of Activated Experts: 8 Context Length: 262,144 natively.
View model card on HuggingFaceSpecifications
Model details
- Provider
- Alibaba
- Modality
- Language
- Context length
- 32.8K tokens
- Pricing
- $0.10 in · $0.30 out / 1M
Modalities: text → text
API
Call it in code
One OpenAI-compatible API. Swap the model id and you're done.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecohash.com/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="qwen3-coder-30b-a3b-instruct",
messages=[{"role": "user", "content": "Hello!"}],
stream=True,
)