zeekay commited on
Commit
bbf5566
·
verified ·
1 Parent(s): 7bfcee7

Update Zen3 Omni model card

Browse files
Files changed (1) hide show
  1. README.md +37 -21
README.md CHANGED
@@ -1,27 +1,43 @@
1
  ---
2
  library_name: transformers
3
- tags: [zen, multimodal, vision, audio, hanzo]
 
 
 
 
 
 
4
  license: apache-2.0
5
  ---
6
- # Zen3 Omni — Hypermodal
7
-
8
- Multimodal model supporting text, vision, audio, and structured output.
9
-
10
- - **Developer**: [Hanzo AI](https://hanzo.ai) × [Zen LM](https://zenlm.org)
11
- - **Parameters**: ~200B
12
- - **Architecture**: Dense Multimodal
13
- - **Context**: 202K tokens
14
- - **Modalities**: Text + Vision + Audio
15
- - **API**: [api.hanzo.ai](https://cloud.hanzo.ai)
16
- - **Docs**: [zenlm.org/docs/models/zen3-omni](https://zenlm.org/docs/models/zen3-omni)
17
-
18
- ## Usage
19
- ```python
20
- from hanzo import Hanzo
21
- client = Hanzo()
22
- response = client.chat.completions.create(model="zen3-omni", messages=[{"role": "user", "content": "Describe this image"}])
 
 
 
 
23
  ```
24
 
25
- ## Related
26
- - [zen-omni](https://huggingface.co/zenlm/zen-omni) — Base weights
27
- - [zen-omni-30b-instruct](https://huggingface.co/zenlm/zen-omni-30b-instruct) — Instruction-tuned
 
 
 
 
 
 
 
1
  ---
2
  library_name: transformers
3
+ pipeline_tag: text-generation
4
+ tags:
5
+ - text-generation
6
+ - multimodal
7
+ - zen
8
+ - zen3
9
+ - hanzo
10
  license: apache-2.0
11
  ---
12
+
13
+ # Zen3 Omni
14
+
15
+ **Zen LM by Hanzo AI** — Multimodal model supporting text, vision, and audio in a single architecture.
16
+
17
+ ## Specs
18
+
19
+ | Property | Value |
20
+ |----------|-------|
21
+ | Parameters | 4.7B Dense |
22
+ | Context | 202K |
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-omni", "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.*