Back to Models
Qwen3 Coder 480B A35B Instruct Fp8
qwen/qwen3-coder-480b-a35b-instruct-fp8
Qwen
Chat
Description
Qwen3 Coder 480B A35B Instruct Fp8 by Qwen. This model supports chat capabilities. Variant: Instruct.
Specifications
- Context Length:
- 262144
- Variant:
- Instruct
- Quantization:
- FP8
- Parameters:
- 480B
Pricing
- Input Cost:
- $0.4000/100K tokens
- Output Cost:
- $0.4000/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "qwen/qwen3-coder-480b-a35b-instruct-fp8",
messages: [{ role: "user", content: "Hello!" }],
});