Chat Qwen

Qwen 2.5 7B Instruct

Fast, low-cost model with tool calling for high-volume work — classification, extraction, summarising and chat. The cheapest way to run at scale: 8x more tokens per credit than premium models.

7.6B
Parameters
33K
Context Window
0.25×
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 2.5 7B Instruct
Family Qwen
Category Chat
Parameters 7.6B
Context Window 32,768 tokens
Quantization Q4_K_M
Min Tier Starter
Status Available

Pricing

0.25×
credits per 1,000 tokens
1K 1 Credits
10K 3 Credits
100K 25 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="qwen2.5:7b-instruct-q4_K_M",
    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="qwen2.5:7b-instruct-q4_K_M",
    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: "qwen2.5:7b-instruct-q4_K_M",
            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": "qwen2.5:7b-instruct-q4_K_M",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Related Models

Start building with Qwen 2.5 7B Instruct

Prepaid credits, no subscription required — they never expire.