Back to Models

Qwen3 235B A22B Instruct 2507 FP8 Throughput

qwen/qwen3-235b-a22b-instruct-2507-tput
Qwen Chat

Description

Qwen3 235B A22B Instruct 2507 FP8 Throughput by Qwen. This model supports chat capabilities. Variant: Instruct.

Specifications

Context Length:
262144
Variant:
Instruct
Parameters:
235B

Pricing

Input Cost:
$0.0400/100K tokens
Output Cost:
$0.1200/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-235b-a22b-instruct-2507-tput",
  messages: [{ role: "user", content: "Hello!" }],
});