All models

Qwen 3.8

by Alibaba

Chat Vision Tools Thinking

Qwen 3.8 is Alibaba's latest open-weight multimodal model, built for agentic work with strong multilingual reasoning, native tool use, and image understanding. It offers a hybrid thinking mode that can reason at length or answer directly, and handles 262K-token contexts, making it a capable all-rounder for chat, coding, and document tasks.

Publisher
Alibaba
API model name
qwen3.8:27b
Context window
256K tokens
Sizes
27B
Licence
Apache 2.0
Model card on Hugging Face

Run Qwen 3.8

Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.

Chat

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

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

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

Vision

from pendra import Pendra

client = Pendra(api_key="pdr_sk_...")

response = client.chat.completions.create(
    model="qwen3.8:27b",
    messages=[
        {
            "role": "user",
            "content": [
                {"type": "text", "text": "What's in this image?"},
                {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
            ],
        }
    ],
)

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

Run Qwen 3.8 on your own UK infrastructure

Deploy a worker, install Qwen 3.8, and start serving it through one sovereign API endpoint.