Routeway Logo
Back to Models
AlibabaCloud

Qwen 3.5 122B A10B

Available

Description

Qwen 3.5 122B A10B is Alibaba's high-end native vision-language model in the Qwen 3.5 family with strong text and multimodal performance.

At a Glance

Key pricing and model details available for this model.

Input price

$0.37

per 1M tokens

Output price

$2.94

per 1M tokens

Context window

260K

tokens

Hallucination rate

0%

Token Pricing

Token pricing normalized to per-million-token rates.

Input / 1M tokens

$0.37

Output / 1M tokens

$2.94

Cache Read / 1M tokens

Free

Token Pricing Details

Rates are shown per 1M tokens for easier comparison.

Input / 1M tokens$0.37
Input unit1M tokens
Output / 1M tokens$2.94
Output unit1M tokens
Cache Read / 1M tokensFree
Cache Read unit1M tokens

Feature Availability

Capabilities explicitly listed in the current payload.

LLM

Available

Yes

Vision

Available

Yes

Function calling

Not listed

No

Reasoning

Available

Yes

Supported Parameters

frequency_penalty
logit_bias
max_completion_tokens
presence_penalty
reasoning_effort
response_format
stop
temperature
tool_choice
tools
top_p

Artificial Analysis

Index scores currently reported for this model.

Intelligence Index

41.6

Coding Index

34.7

Category Radar

Aggregated from the benchmark values present for reasoning, code, math, and accuracy.

Benchmark Breakdown

Detailed benchmark results drawn from the current payload.

Intelligence Index

index

Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.

41.6

Reported score

Coding Index

index

How well the model handles real programming tasks.

34.7

Reported score

GPQA

reasoning

Graduate-level science questions designed to be difficult to shortcut.

85.7%

Reported score

HLE

reasoning

A very hard expert-level exam across a wide range of subjects.

23.4%

Reported score

SciCode

code

Coding tasks drawn from real scientific workflows.

42%

Reported score

IFBench

accuracy

Measures how precisely the model follows detailed instructions.

75.7%

Reported score

LCR

accuracy

Tests long-context reasoning over large documents and conversations.

66.7%

Reported score

TerminalBench Hard

code

A harder coding-agent benchmark for complex multi-step terminal tasks.

31.1%

Reported score

Tau2

accuracy

Evaluates realistic agent behavior in tool-using support workflows.

93.6%

Reported score

Code Samples

Quick start with the Routeway API

import OpenAI from 'openai';

const openai = new OpenAI({
  baseURL: "https://api.routeway.ai/v1",
  apiKey: "<YOUR_API_KEY>",
});

async function main() {
  const completion = await openai.chat.completions.create({
    model: "qwen3.5-122b-a10b",
    messages: [
      {
        role: "user",
        content: "Explain quantum computing in simple terms"
      }
    ]
  });

  console.log(completion.choices[0].message);
}

main();