Zen Specialty
Collection
Vertical-specific finetunes โ finance, medical, legal, sql, translate, scribe, designer, etc. โข 18 items โข Updated
How to use zenlm/zen-designer with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("visual-question-answering", model="zenlm/zen-designer") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("zenlm/zen-designer", dtype="auto")Zen LM by Hanzo AI โ Professional design generation and visual creation model family.
This is the family landing page for Zen Designer. The actual model weights are available in the variant repositories below.
| Model | Parameters | Mode | Description |
|---|---|---|---|
| zen-designer-235b-a22b-instruct | 235B total, 22B active | Instruct | Instruction-following design generation |
| zen-designer-235b-a22b-thinking | 235B total, 22B active | Thinking | Extended reasoning for complex design tasks |
| Property | Value |
|---|---|
| Architecture | Zen MoDE (Mixture of Distilled Experts) |
| Parameters | 235B total, 22B active (90.6% sparse) |
| Context | 128K tokens |
| Resolution | Up to 2048x2048 |
| Languages | English, Chinese, Multilingual |
| Tasks | Image generation, visual Q&A, design critique, layout planning |
from openai import OpenAI
client = OpenAI(
base_url='https://api.hanzo.ai/v1',
api_key='your-api-key',
)
# Instruct variant โ direct design generation
response = client.chat.completions.create(
model='zen-designer-235b-a22b-instruct',
messages=[
{
'role': 'user',
'content': 'Create a minimalist logo for a tech startup called "Nova" in blue and white.'
}
],
)
print(response.choices[0].message.content)
# Thinking variant โ complex design reasoning
response = client.chat.completions.create(
model='zen-designer-235b-a22b-thinking',
messages=[
{
'role': 'user',
'content': [
{'type': 'image_url', 'image_url': {'url': 'https://example.com/design.png'}},
{'type': 'text', 'text': 'Critique this design and suggest improvements for better visual hierarchy.'}
]
}
],
)
print(response.choices[0].message.content)
Use zen-designer-235b-a22b-instruct when:
Use zen-designer-235b-a22b-thinking when:
| Model | Description |
|---|---|
| zenlm/zen-family | Full Zen model family overview |
| zenlm/zen-vl-8b | Efficient vision-language model |
| zenlm/zen-vl-30b | High-performance vision-language model |
Apache 2.0