Chat Qwen

Qwen 3.6 27B

Multilingual model with strong Arabic, image understanding and tool calling. 262K context. Priced for heavy use — 4x more tokens per credit than comparable premium models.

27.8B
Parameters
262K
Context Window
0.5×
Credit Rate
Starter
Min Tier

Overview

Full description coming soon. This model is available right now via the LLM Resayil API.

Specifications

Display Name Qwen 3.6 27B
Family Qwen
Category Chat
Parameters 27.8B
Context Window 262,144 tokens
Quantization Q4_K_M
Min Tier Starter
Status Available

Pricing

0.5×
credits per 1,000 tokens
1K 1 Credits
10K 5 Credits
100K 50 Credits
View Pricing Plans

Code Examples

from openai import OpenAI

client = OpenAI(
    base_url="https://llmapi.resayil.io/v1/",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="qwen3.6:27b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

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

client = anthropic.Anthropic(
    base_url="https://llmapi.resayil.io/v1",
    api_key="YOUR_API_KEY"
)

message = client.messages.create(
    model="qwen3.6:27b",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(message.content[0].text)
const response = await fetch(
    "https://llmapi.resayil.io/v1/chat/completions",
    {
        method: "POST",
        headers: {
            "Content-Type": "application/json",
            "Authorization": "Bearer YOUR_API_KEY"
        },
        body: JSON.stringify({
            model: "qwen3.6:27b",
            messages: [
                { role: "user", content: "Hello!" }
            ]
        })
    }
);

const data = await response.json();
console.log(data.choices[0].message.content);
curl https://llmapi.resayil.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen3.6:27b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Related Models

Start building with Qwen 3.6 27B

Prepaid credits, no subscription required — they never expire.