File size: 1,246 Bytes
ba10c8e d69845c ba10c8e 4afbf96 d69845c ba10c8e 4afbf96 ba10c8e d69845c ba10c8e d69845c ba10c8e d69845c ba10c8e d69845c ba10c8e 4afbf96 d69845c 4afbf96 d69845c 4afbf96 ba10c8e 4afbf96 ba10c8e 4afbf96 d69845c 4afbf96 d69845c ba10c8e d69845c ba10c8e 4afbf96 ba10c8e 4afbf96 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | ---
language: en
license: apache-2.0
tags:
- zen
- zenlm
- hanzo
- text-to-video
- world-model
- video-generation
pipeline_tag: text-to-video
library_name: diffusers
---
# Zen World
World simulation model for interactive environment generation.
## Overview
Built on **Zen MoDE (Mixture of Distilled Experts)** architecture with 13B parameters.
Developed by [Hanzo AI](https://hanzo.ai) and the [Zoo Labs Foundation](https://zoo.ngo).
## Quick Start
```python
from diffusers import AutoPipelineForText2Video
import torch
model_id = "zenlm/zen-world"
pipe = AutoPipelineForText2Video.from_pretrained(model_id, torch_dtype=torch.bfloat16)
pipe = pipe.to("cuda")
video_frames = pipe("A drone flying over a tropical coastline at golden hour").frames[0]
```
## API Access
```python
from openai import OpenAI
client = OpenAI(base_url="https://api.hanzo.ai/v1", api_key="your-api-key")
response = client.images.generate(
model="zen-world",
prompt="A drone flying over a tropical coastline at golden hour",
size="1280x720",
)
print(response.data[0].url)
```
## Model Details
| Attribute | Value |
|-----------|-------|
| Parameters | 13B |
| Architecture | Zen MoDE |
| License | Apache 2.0 |
## License
Apache 2.0
|