Qwen

Alibaba

qwen3.5-27b

Qwen3.5-27B

Lean Qwen route aimed at lower-cost chat, agent routing, and product copilot features.

exceeds GPT-5-miniPublic model detailDense Transformer

Params

27B

Context

256K

Max Output

32K

License

Apache 2.0

TTFT

220ms

Throughput

94 tok/s

Why pick it

  • Strong value in the mid-tier open model bracket
  • Fast enough for interactive UX

Pricing

TierStandardCachedSiliconFlowSavings
Realtime$0.07 / $0.50$0.025N/AN/A
Batch$0.04 / $0.25$0.025N/AN/A

Quick start

OpenAI-compatible surface. Swap the base URL and ship.

Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.luminapath.tech/v1",
    api_key="BATCHIN_API_KEY"
)

resp = client.chat.completions.create(
    model="qwen3.5-27b",
    messages=[{"role": "user", "content": "Summarize why this model is a fit for my workload."}]
)

print(resp.choices[0].message.content)
JavaScript
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.luminapath.tech/v1",
  apiKey: process.env.BATCHIN_API_KEY,
});

const resp = await client.chat.completions.create({
  model: "qwen3.5-27b",
  messages: [{ role: "user", content: "Summarize why this model is a fit for my workload." }],
});

console.log(resp.choices[0]?.message?.content);
cURL
curl https://api.luminapath.tech/v1/chat/completions \
  -H "Authorization: Bearer $BATCHIN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.5-27b",
    "messages": [{"role":"user","content":"Summarize why this model is a fit for my workload."}]
  }'

Specs

Architecture

Dense Transformer

Vendor group

Qwen

Context window

256K

Max output

32K

Best for

qwen
mid-tier

Related models

Back to model center
Qwen

Alibaba

qwen3.5-122b

Qwen3.5-122B-A10B

Balanced Qwen MoE for long-context assistants and cost-conscious production routing.

View detail
Qwen

Alibaba

qwen3.5-9b

Qwen3.5-9B

Compact long-context Qwen option for cost-sensitive API traffic and routing layers.

View detail
OA

OpenAI OSS

gpt-oss-20b

GPT-OSS-20B

Compact OpenAI open-weight option for fast chat, routing, and lower-cost product features.

View detail
Z.ai

Z.ai

glm-5.1

GLM-5.1

Open-source coding flagship built for long-horizon autonomous engineering and deep reasoning.

View detail