Qwen3-30B-A3B-Instruct-2507 is the updated (2507) instruct variant of Qwen3-30B-A3B,
an auto-regressive Mixture-of-Experts (MoE) transformer with 30.5B total
parameters of which about 3.3B are activated per token. It operates in
non-thinking mode only and offers strong instruction following, reasoning over
text, multilingual coverage, and tool usage. Its intended use is the same as the
upstream Qwen/Qwen3-30B-A3B-Instruct-2507-FP8,
and it is released under the Apache 2.0 License.
Architecture: Qwen3-MoE (Mixture-of-Experts)
Input / Output: Text / Text
Supported Inference Engine: Furiosa LLM
Supported Hardware: FuriosaAI RNGD
Quantization
Weights are quantized to FP8 (static), following the upstream FP8 release,
and activations use dynamic FP8 quantization at runtime (per-token / per-block).
The KV cache stays in 16-bit precision.
Features
Tool calling. The model supports tool (function) calling through the hermes tool-call parser, the parser used by the Qwen3 series.
Parallelism Strategy
On RNGD, Qwen3-30B-A3B-Instruct-2507-FP8 runs with a tensor-parallel size of
32 PEs, which maps to four RNGD cards (8 PEs per card).
1INFO: Started server process [27507]
2INFO: Waiting for application startup.
3INFO: Application startup complete.
4INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
Basic Usage
The server exposes an OpenAI-compatible API. You can send a request with curl:
sh
1curl http://localhost:8000/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "furiosa-ai/Qwen3-30B-A3B-Instruct-2507-FP8",
5 "messages": [{"role": "user", "content": "What is the capital of France?"}]
6 }' \
7 | python -m json.tool
Advanced Usage
Tool calling. With the server launched using
--enable-auto-tool-choice --tool-call-parser hermes (see
Launch the server), pass tools in the request and let the
model decide when to call them. See the
Tool Calling guide
for a complete client example and details on tool-choice options.
Learn more
Tool Calling — parsers, tool-choice options, and more examples