zeekay commited on
Commit
80276f3
·
verified ·
1 Parent(s): fd50fcb

Update Zen3 Image Dev model card

Browse files
Files changed (1) hide show
  1. README.md +35 -14
README.md CHANGED
@@ -1,22 +1,43 @@
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
  ```
 
 
 
 
 
 
 
 
 
 
 
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.*