zeekay commited on
Commit
97af3c5
·
verified ·
1 Parent(s): d9787b5

Update Zen4 Thinking model card — API-only

Browse files
Files changed (1) hide show
  1. README.md +16 -8
README.md CHANGED
@@ -4,6 +4,8 @@ pipeline_tag: text-generation
4
  tags:
5
  - text-generation
6
  - reasoning
 
 
7
  - zen
8
  - zen4
9
  - hanzo
@@ -12,24 +14,30 @@ license: apache-2.0
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.
 
4
  tags:
5
  - text-generation
6
  - reasoning
7
+ - thinking
8
+ - math
9
  - zen
10
  - zen4
11
  - hanzo
 
14
 
15
  # Zen4 Thinking
16
 
17
+ **Zen LM by Hanzo AI** — Chain-of-thought reasoning model with explicit thinking traces. Excels at math, logic, and step-by-step analysis.
18
 
19
  ## Specs
20
 
21
  | Property | Value |
22
  |----------|-------|
23
+ | Parameters | 562B MoE |
24
+ | Context Length | 262K tokens |
25
  | Architecture | Zen MoDE (Mixture of Distilled Experts) |
26
  | Generation | Zen4 |
27
 
28
  ## API Access
29
 
30
+ This model is served exclusively via the Hanzo AI API. Weight downloads are not available for this model tier.
31
+
32
+ ```python
33
+ from openai import OpenAI
34
+
35
+ client = OpenAI(base_url="https://api.hanzo.ai/v1", api_key="YOUR_KEY")
36
+ response = client.chat.completions.create(
37
+ model="zen4-thinking",
38
+ messages=[{"role": "user", "content": "Hello"}],
39
+ )
40
+ print(response.choices[0].message.content)
41
  ```
42
 
43
  Get your API key at [console.hanzo.ai](https://console.hanzo.ai) — $5 free credit on signup.