Zen VL 8B Instruct

Zen LM by Hanzo AI โ€” Instruction-tuned vision-language model for multimodal understanding.

Specs

Property Value
Parameters 8B
Context Length 32,768 tokens
Architecture Zen MoDE (Mixture of Distilled Experts)
Task Vision-Language / Instruction Following

API Access

from openai import OpenAI

client = OpenAI(
    base_url='https://api.hanzo.ai/v1',
    api_key='your-api-key',
)

response = client.chat.completions.create(
    model='zen-vl-8b-instruct',
    messages=[{
        'role': 'user',
        'content': [
            {'type': 'text', 'text': 'Describe this image in detail.'},
            {'type': 'image_url', 'image_url': {'url': 'https://example.com/image.jpg'}},
        ],
    }],
)
print(response.choices[0].message.content)

License

Apache 2.0

Downloads last month
-
Safetensors
Model size
9B params
Tensor type
BF16
ยท
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Spaces using zenlm/zen-vl-8b-instruct 2