Qwen3 1.7B
Apache 2.0qwen/qwen3-1.7b
Compact 1.7B instruct model from Alibaba. Fast and inexpensive to serve, well suited to classification, routing and extraction where a larger model is wasted.
Endpoints
Each row is one provider serving these weights at one precision. Prices are per million tokens.
| Provider | Quantisation | Hardware | Context | Max out | Input | Output | Cached in |
|---|---|---|---|---|---|---|---|
| Infersia | BF16 | RTX A4000 | 8K | 4K | $0.02 | $0.06 | $0.0050 |
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.
What BF16 means
Full bfloat16 precision — no quantisation loss.
We serve this on vllm latest, and 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-1.7b",
"messages": [{"role": "user", "content": "Hello"}],
"stream": true
}'Pin a provider with qwen/qwen3-1.7b@infersia, or take the cheapest with the bare id. Add :free for the rate-limited free tier where one exists.