Models
zen-voyager
World model for spatial reasoning and 3D scene understanding.
zen-voyager
World Model
A world model that understands spatial relationships, physics, and 3D scene composition. Reasons about the physical world from visual input and generates spatially coherent predictions.
This model is coming soon. Join the waitlist at hanzo.chat.
Specifications
| Property | Value |
|---|---|
| Model ID | zen-voyager |
| Architecture | World Transformer |
| Input | Images, video, text |
| Status | Coming Soon |
| HuggingFace | -- |
Capabilities
- 3D scene understanding from 2D input
- Spatial relationship reasoning
- Physics simulation and prediction
- Navigation and path planning
- Environment mapping
- Object permanence and tracking
Usage
from hanzoai import Hanzo
client = Hanzo(api_key="hk-your-api-key")
# Coming soon
response = client.chat.completions.create(
model="zen-voyager",
messages=[{
"role": "user",
"content": [
{"type": "image_url", "image_url": {"url": "https://example.com/room.jpg"}},
{"type": "text", "text": "Describe the spatial layout of this room and estimate distances."},
],
}],
)