zen-eco-instruct / README.md
zeekay's picture
Update README with Zen branding
812548d verified
metadata
library_name: transformers
pipeline_tag: text-generation
tags:
  - text-generation
  - zen
  - hanzo
license: apache-2.0

Zen Eco Instruct

Zen LM by Hanzo AI — Efficient instruction-following model optimized for low-latency inference.

Specs

Property Value
Parameters 4B
Context Length 32,768 tokens
Architecture Zen MoDE (Mixture of Distilled Experts)

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-eco-instruct',
    messages=[{'role': 'user', 'content': 'Explain quantum computing briefly.'}],
)
print(response.choices[0].message.content)

License

Apache 2.0