Update Zen4 Coder Pro model card — API-only
Browse files
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** —
|
| 16 |
|
| 17 |
## Specs
|
| 18 |
|
| 19 |
| Property | Value |
|
| 20 |
|----------|-------|
|
| 21 |
-
| Parameters |
|
| 22 |
-
| Context |
|
| 23 |
| Architecture | Zen MoDE (Mixture of Distilled Experts) |
|
| 24 |
| Generation | Zen4 |
|
| 25 |
|
| 26 |
## API Access
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.
|