Overview
About this model
Qwen3.6 27B dense vision-language model. Text + image input, 32K context, FP8. Supports tool/function calling and reasoning.
Specifications
Model details
- Provider
- Alibaba
- Modality
- Vision
- Context length
- 32.8K tokens
- Pricing
- $0.30 in · $0.60 out / 1M
API
Call it in code
One OpenAI-compatible API. Swap the model id and you're done.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecohash.com/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="qwen3.6-27b",
messages=[{"role": "user", "content": [
{"type": "text", "text": "Describe this image"},
{"type": "image_url", "image_url": {"url": "..."}},
]}],
)