zeekay commited on
Commit
b365153
·
verified ·
1 Parent(s): dda946d

Update Zen4 Coder Pro model card — API-only

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