autoloops
← Models
Model APILLM

Qwen3.8-27B

27B · Dense · Vision-language

Compact dense vision-language model from the Qwen3.8 family — strong coding, agentic execution, and native image/video understanding with flexible thinking control.

Model details

Developed byQwen (Alibaba Cloud)
Model familyQwen3.8
ArchitectureDense VLM (hybrid attention)
Parameters27B
Context length262K native (extensible to 1M)
ModalitiesText, Image, Video → Text
Hidden size5120
LicenseApache 2.0

On Autoloops

HardwareH100
APIOpenAI-compatible
RegionUS West
Pricing$0.40 / $3.00 / $0.15 per 1M tokens (input / output / cached)
Model IDqwen3.8-27b

Capabilities

  • Native vision-language understanding for images and long-form video
  • Thinking mode on by default with per-request disable and depth control
  • Strong coding, research, and long-horizon agentic task performance
  • Open weights under Apache 2.0 for self-host or Autoloops API access
  • OpenAI-compatible chat completions via Autoloops

OpenAI-compatible chat completion

from openai import OpenAI
import os

client = OpenAI(
    api_key=os.environ["AUTOLOOPS_API_KEY"],
    base_url="https://api.autoloops.ai/v1",
)

stream = client.chat.completions.create(
    model="qwen3.8-27b",
    messages=[{"role": "user", "content": "Tell me a fun fact about cats."}],
    stream=True,
)
for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Sources

More models