zeekay commited on
Commit
d9787b5
·
verified ·
1 Parent(s): 2c5a601

Update Zen4 Thinking model card

Browse files
Files changed (1) hide show
  1. README.md +37 -19
README.md CHANGED
@@ -1,25 +1,43 @@
1
  ---
2
  library_name: transformers
3
- tags: [zen, reasoning, chain-of-thought, hanzo]
 
 
 
 
 
 
4
  license: apache-2.0
5
  ---
6
- # Zen4 Thinking — Deep Reasoning
7
-
8
- Dedicated reasoning model with explicit chain-of-thought capabilities.
9
-
10
- - **Developer**: [Hanzo AI](https://hanzo.ai) × [Zen LM](https://zenlm.org)
11
- - **Parameters**: 80B (3B active)
12
- - **Architecture**: MoE + CoT
13
- - **Context**: 131K tokens
14
- - **API**: [api.hanzo.ai](https://cloud.hanzo.ai)
15
- - **Docs**: [zenlm.org/docs/models/zen4-thinking](https://zenlm.org/docs/models/zen4-thinking)
16
-
17
- ## Usage
18
- ```python
19
- from hanzo import Hanzo
20
- client = Hanzo()
21
- response = client.chat.completions.create(model="zen4-thinking", messages=[{"role": "user", "content": "Solve this step by step: ..."}])
 
 
 
 
 
22
  ```
23
 
24
- ## Related
25
- - [zen-max](https://huggingface.co/zenlm/zen-max) — Base reasoning weights
 
 
 
 
 
 
 
 
1
  ---
2
  library_name: transformers
3
+ pipeline_tag: text-generation
4
+ tags:
5
+ - text-generation
6
+ - reasoning
7
+ - zen
8
+ - zen4
9
+ - hanzo
10
  license: apache-2.0
11
  ---
12
+
13
+ # Zen4 Thinking
14
+
15
+ **Zen LM by Hanzo AI** — Reasoning-optimized model with explicit thinking traces. For problems requiring step-by-step analysis.
16
+
17
+ ## Specs
18
+
19
+ | Property | Value |
20
+ |----------|-------|
21
+ | Parameters | 744B MoE |
22
+ | Context | 262K |
23
+ | Architecture | Zen MoDE (Mixture of Distilled Experts) |
24
+ | Generation | Zen4 |
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": "zen4-thinking", "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.*