LLM
Qwen3.8-27B
Multimodal model with 256K context, supporting text, images, video, reasoning, tool use, and structured outputs.
Model details
View repositoryQwen3.8-27B is a compact multimodal model that can understand text, images, and video, making it suitable for visual analysis while running on a single H100 instance.
Input
1from openai import OpenAI
2
3client = OpenAI(
4 api_key="<BASETEN_API_KEY>",
5 base_url="https://model-<MODEL_ID>.api.baseten.co/environments/production/sync/v1",
6)
7
8response = client.chat.completions.create(
9 model="Qwen/Qwen3.8-27B",
10 messages=[
11 {"role": "user", "content": "Give me three prime numbers greater than 100."}
12 ],
13 temperature=1.0,
14 top_p=0.95,
15 max_tokens=512,
16)
17
18print(response.choices[0].message.content)