Update Zen3 Image Dev model card
Browse files
README.md
CHANGED
|
@@ -1,22 +1,43 @@
|
|
| 1 |
---
|
| 2 |
-
library_name:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
license: apache-2.0
|
| 5 |
---
|
|
|
|
| 6 |
# Zen3 Image Dev
|
| 7 |
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
-
|
| 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 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: text-to-image
|
| 4 |
+
tags:
|
| 5 |
+
- text-to-image
|
| 6 |
+
- diffusion
|
| 7 |
+
- zen
|
| 8 |
+
- zen3
|
| 9 |
+
- hanzo
|
| 10 |
license: apache-2.0
|
| 11 |
---
|
| 12 |
+
|
| 13 |
# Zen3 Image Dev
|
| 14 |
|
| 15 |
+
**Zen LM by Hanzo AI** — Developer variant with open weights. Same architecture as Zen3 Image.
|
| 16 |
+
|
| 17 |
+
## Specs
|
| 18 |
+
|
| 19 |
+
| Property | Value |
|
| 20 |
+
|----------|-------|
|
| 21 |
+
| Parameters | 12B |
|
| 22 |
+
| Context | 1024px |
|
| 23 |
+
| Architecture | Zen MoDE (Mixture of Distilled Experts) |
|
| 24 |
+
| Generation | Zen3 |
|
| 25 |
|
| 26 |
+
## API Access
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
+
```bash
|
| 29 |
+
curl https://api.hanzo.ai/v1/chat/completions \
|
| 30 |
+
-H "Authorization: Bearer $HANZO_API_KEY" \
|
| 31 |
+
-H "Content-Type: application/json" \
|
| 32 |
+
-d '{"model": "zen3-image-dev", "messages": [{"role": "user", "content": "Hello"}]}'
|
| 33 |
```
|
| 34 |
+
|
| 35 |
+
Get your API key at [console.hanzo.ai](https://console.hanzo.ai) — $5 free credit on signup.
|
| 36 |
+
|
| 37 |
+
## License
|
| 38 |
+
|
| 39 |
+
Apache 2.0
|
| 40 |
+
|
| 41 |
+
---
|
| 42 |
+
|
| 43 |
+
*Zen LM is developed by [Hanzo AI](https://hanzo.ai) — Frontier AI infrastructure.*
|