qwen3-235b-a22b
Qwen logo

Qwen3 235B A22B

qwen3-235b-a22b
Qwen
Qwen3-235B-A22B is a massive 235B parameter Mixture-of-Experts (MoE) model that operates with the efficiency of a 22B model. Its standout feature is the ability to seamlessly switch between a "thinking" mode for complex reasoning and a "non-thinking" mode for fast conversation, offering both world-class power and practical speed.

Pricing

  • Input Tokens: $0.280 /M tokens
  • Output Tokens: $1.120 /M tokens

Input Modalities

  • Text

Output Modalities

  • Text

Capabilities

  • Tools
  • Tool calling
  • Structured outputs

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="qwen3-235b-a22b",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is qwen3-235b-a22b?

Qwen3-235B-A22B is a massive 235B parameter Mixture-of-Experts (MoE) model that operates with the efficiency of a 22B model. Its standout feature is the ability to seamlessly switch between a "thinking" mode for complex reasoning and a "non-thinking" mode for fast conversation, offering both world-class power and practical speed.