Qwen3 Coder Next
Qwen logo

Qwen3 Coder Next

qwen3-coder-nextllms.txt
Qwen
The Qwen3 series is a next-generation code-generation model with results close to Qwen3-Coder-Plus while offering superior performance. The model is optimized for repository-level understanding, supports multi-turn tool interactions, and improves compatibility with agentic coding tools.

Pricing

TierPricingCache Read
Input<=32K
$0.137$0.548
-
32K<Input<=128K
$0.205$0.822
-
128K<Input<=256K
$0.342$1.370
-

Input Modalities

  • Text

Output Modalities

  • Text

Context length

  • 262K tokens

Max output

  • 65.5K tokens

Capabilities

  • Tools
  • Tool calling
  • Structured outputs

Providers

Alibaba Cloud alicloud-qwen3-coder-next
Pricing$0.137$0.548
Pricing$0.205$0.822
Pricing$0.342$1.370
Context200K
Max output64K
Latency0.5S
Throughput212.6TPS
Uptime
100.00% uptime 3 days ago
100.00% uptime 2 days ago
100.00% uptime yesterday

Performance for qwen3-coder-next

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

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-coder-next",
    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 Coder Next?

The Qwen3 series is a next-generation code-generation model with results close to Qwen3-Coder-Plus while offering superior performance. The model is optimized for repository-level understanding, supports multi-turn tool interactions, and improves compatibility with agentic coding tools.