qwen/qwen3.8-27bQwen 3.8 27B is a 27-billion-parameter multimodal model from Alibaba's Qwen series, delivering frontier-level agentic coding, reasoning, and long-horizon task performance that rivals models many times its size. It accepts both image and text inputs for visual understanding tasks such as image analysis, OCR, and visual question answering, and supports seamless switching between thinking mode (for complex logical reasoning, math, and coding) and instruct mode (non-thinking, for efficient, general-purpose dialogue) within a single model, with a long context window and strong multilingual support.
Experience state-of-the-art reasoning and agentic coding with Qwen 3.8 27B at Groq speed:
pip install groqfrom groq import Groq
client = Groq()
completion = client.chat.completions.create(
model="qwen/qwen3.8-27b",
messages=[
{
"role": "user",
"content": "Explain why fast inference is critical for reasoning models"
}
]
)
print(completion.choices[0].message.content)