Text-to-Video
Diffusers
Safetensors
English
qwen3
zen
zenlm
hanzo
video-generation
diffusion
world-model
Instructions to use Axepapag/zen-voyager with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Axepapag/zen-voyager with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Axepapag/zen-voyager", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
| language: en | |
| license: apache-2.0 | |
| tags: | |
| - zen | |
| - zenlm | |
| - hanzo | |
| - text-to-video | |
| - video-generation | |
| - diffusion | |
| - world-model | |
| pipeline_tag: text-to-video | |
| library_name: diffusers | |
| # Zen Voyager | |
| Camera-controlled world exploration model for interactive scene generation. | |
| ## Overview | |
| Built on **Zen MoDE (Mixture of Distilled Experts)** architecture with N/A 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-voyager" | |
| 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-voyager", | |
| prompt="A drone flying over a tropical coastline at golden hour", | |
| size="1280x720", | |
| ) | |
| print(response.data[0].url) | |
| ``` | |
| ## Model Details | |
| | Attribute | Value | | |
| |-----------|-------| | |
| | Parameters | N/A | | |
| | Architecture | Zen MoDE | | |
| | License | Apache 2.0 | | |
| ## License | |
| Apache 2.0 | |