Update Zen4 Thinking model card
Browse files
README.md
CHANGED
|
@@ -1,25 +1,43 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
license: apache-2.0
|
| 5 |
---
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
```
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.*
|