Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: diffusers
|
| 3 |
+
tags: [zen, image-generation, diffusion, hanzo]
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
---
|
| 6 |
+
# Zen3 Image Dev
|
| 7 |
+
|
| 8 |
+
Development model for experimentation and iteration.
|
| 9 |
+
|
| 10 |
+
- **Developer**: [Hanzo AI](https://hanzo.ai) x [Zen LM](https://zenlm.org)
|
| 11 |
+
- **Architecture**: Diffusion
|
| 12 |
+
- **Features**: Text-to-image, Development
|
| 13 |
+
- **Pricing Unit**: per step
|
| 14 |
+
- **Endpoint**: `/v1/images/generations`
|
| 15 |
+
- **API**: [api.hanzo.ai](https://cloud.hanzo.ai)
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
```python
|
| 19 |
+
from hanzo import Hanzo
|
| 20 |
+
client = Hanzo()
|
| 21 |
+
response = client.images.generate(model="zen3-image-dev", prompt="A serene landscape", size="1024x1024")
|
| 22 |
+
```
|