Capabilities & Performance
- Ultra-responsive latency for Cursor & Continue IDE
- Starting at $0.149/M input down to $0.114/M on Enterprise
Fast code completion model designed for IDE inline suggestions and interactive debugging.
Params
30B MoE
Context
128K
Max Output
16K
| Lane | Public Rate | Cached |
|---|---|---|
| Realtime API | $0.15 / $0.45 | $0.030 |
| Batch Queue | Batch rates available on rollout | $0.030 |
Prices per 1M tokens. Cached prompt rate applies on prefix hits.
from openai import OpenAI
client = OpenAI(
base_url="https://api.batchin.tech/v1",
api_key="BATCHIN_API_KEY"
)
resp = client.chat.completions.create(
model="qwen3-coder-30b-a3b",
messages=[{"role": "user", "content": "Benchmark system architecture performance and cost profile."}]
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.batchin.tech/v1",
apiKey: process.env.BATCHIN_API_KEY,
});
const resp = await client.chat.completions.create({
model: "qwen3-coder-30b-a3b",
messages: [{ role: "user", content: "Benchmark system architecture performance and cost profile." }],
});
console.log(resp.choices[0]?.message?.content);curl https://api.batchin.tech/v1/chat/completions \
-H "Authorization: Bearer $BATCHIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-coder-30b-a3b",
"messages": [{"role":"user","content":"Benchmark system architecture performance and cost profile."}]
}'Large-scale 480B MoE code generation model tailored for whole-repo refactoring and complex bug fixing.
High-throughput, ultra-low latency DeepSeek model optimized for rapid tool calls and high-frequency agent loops.
DeepSeek next-gen MoE reasoning flagship for complex architectural design, autonomous coding loops, and math proofs.