Add model card
Browse files
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|