Qwen3 30B A3B Instruct 2507
qwen/qwen3-30b-a3b-instruct-2507The agent model. 3.3B of 30.5B active (8 of 128 experts), a NATIVE 262,144 context with nothing stretched, and a KV cache of 48 KiB/token against the dense 14B's 80. Long context genuinely costs less here than on the smaller model.
Endpoints
Each row is one provider serving these weights at one precision. Prices are per million tokens.
| Provider | Quantisation | Context | Max out | Input | Output | Cached in |
|---|---|---|---|---|---|---|
| Infersia | AWQ int4 | 256K | 32K | $0.08 | $0.28 | $0.02 |
Prefix caching is enabled and the discount is passed through. If your agent replays the same system prompt each iteration, the repeated portion bills at the cached rate.
Agent config
Paste this into your coding agent and it can configure itself. The timeout is derived from this variant's measured throughput, not a guess — a long generation that outlives a client's default ceiling is the most common way a working request looks broken.
# Infersia — qwen/qwen3-30b-a3b-instruct-2507
# Paste this to your agent. Values are measured, not aspirational.
provider:
type: openai-compatible
base_url: https://api.infersia.com/v1
api_key: ${INFERSIA_API_KEY} # from https://infersia.com/dashboard/keys
model: qwen/qwen3-30b-a3b-instruct-2507
limits:
max_input_tokens: 262144 # hard limit — over this returns HTTP 413
max_output_tokens: 32768
timeout_seconds: 750 # covers the full 32768 output budget at 91 tok/s, doubled for the tail
# allow ~22s per 1,000 output tokens if you cap max_tokens lower
features:
streaming: true
tools: true
vision: false
reasoning: false
prompt_caching: true # automatic; reuse a stable prefix and it bills at the cache rate
pricing_usd_per_million_tokens:
input: 0.08
output: 0.28
cached_input: 0.02What AWQ int4 means
Activation-aware 4-bit weight quantisation. Small, measurable quality cost.
The quantisation is returned on every request in the x-infersia-quantization response header — so you can assert on it in your own tests rather than trusting this page.
Call it
curl https://api.infersia.com/v1/chat/completions \
-H "Authorization: Bearer $INFERSIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3-30b-a3b-instruct-2507",
"messages": [{"role": "user", "content": "Hello"}],
"stream": true
}'Pin a provider with qwen/qwen3-30b-a3b-instruct-2507@infersia, or take the cheapest with the bare id. Add :free for the rate-limited free tier where one exists.