pi-zro-provider 1.3.13 → 1.3.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,7 +15,7 @@ _GLM-5.2, Kimi K3, and DeepSeek V4 / V4.1 Flash — run through the Zro inferenc
15
15
 
16
16
  ## Features
17
17
 
18
- - **8+ AI Models** — GLM-5.2 (default), Kimi K3, DeepSeek V4 Flash, and DeepSeek V4.1 Flash, straight from Zro's production catalog
18
+ - **9+ AI Models** — GLM-5.2 (default), Kimi K3, DeepSeek V4 Flash, and DeepSeek V4.1 Flash, straight from Zro's production catalog
19
19
  - **Native reasoning effort** — every model ships an endpoint-verified `piLevel` → level-id map (`glm-5.2`, `glm-5.3-flash`, `deepseek-v4-flash-0731`: full `off`–`max` ladder; `deepseek-v4.1-flash`: `low`/`high`/`max` — catalog has no `none`, and `xhigh`/`max` both send `max`; `kimi-k3`: `low`/`high`/`max` — the proxy rejects `medium` there), so `/thinking low` etc. maps exactly to what the Zro proxy accepts. Quirks: `glm-5.3-flash` silently disables thinking at `low`, so `minimal`/`low` map to `minimal`; `glm-5.3` mirrors flash's full ladder — Z.ai officially removed `none` for the 5.3 family, but the proxy accepts it and streams cleanly (occasionally a short chain-of-thought preamble surfaces in `content` before the answer), and `xhigh`/`max` both send `max`
20
20
  - **OpenAI-compatible API** at `https://zro.moonmath.ai/v1`
21
21
  - **Official catalog sync** from Zro's `/api/cli/models` endpoint — same one `zro models` uses
@@ -30,6 +30,7 @@ _GLM-5.2, Kimi K3, and DeepSeek V4 / V4.1 Flash — run through the Zro inferenc
30
30
  | DeepSeek V4 Flash | Text | 1.0M | 384K | $0.14 | $0.28 |
31
31
  | DeepSeek V4.1 Flash | Text + Image | 1.0M | 384K | $0.14 | $0.28 |
32
32
  | Dolly 1 | Text | 1.0M | 64K | — | — |
33
+ | Dolly 1 Security | Text | 1.0M | 64K | — | — |
33
34
  | GLM-5.2 | Text | 524K | 64K | $1.10 | $4.00 |
34
35
  | GLM-5.3 | Text | 1.0M | 131K | $1.40 | $4.40 |
35
36
  | GLM-5.3 Flash | Text + Image | 1.0M | 64K | $0.15 | $0.50 |
@@ -29,5 +29,35 @@
29
29
  "maxTokensField": "max_tokens"
30
30
  },
31
31
  "deprecatedAt": "2026-09-12T02:00:31.341Z"
32
+ },
33
+ "dolly1": {
34
+ "id": "dolly1",
35
+ "name": "Dolly 1",
36
+ "reasoning": true,
37
+ "thinkingLevelMap": {
38
+ "off": "none",
39
+ "minimal": null,
40
+ "low": null,
41
+ "medium": null,
42
+ "high": "high",
43
+ "xhigh": "max"
44
+ },
45
+ "input": [
46
+ "text"
47
+ ],
48
+ "cost": {
49
+ "input": 0,
50
+ "output": 0,
51
+ "cacheRead": 0,
52
+ "cacheWrite": 0
53
+ },
54
+ "contextWindow": 1048576,
55
+ "maxTokens": 64000,
56
+ "compat": {
57
+ "supportsDeveloperRole": false,
58
+ "supportsReasoningEffort": true,
59
+ "maxTokensField": "max_tokens"
60
+ },
61
+ "deprecatedAt": "2026-09-15T02:00:30.252Z"
32
62
  }
33
63
  }
package/models.json CHANGED
@@ -88,8 +88,8 @@
88
88
  }
89
89
  },
90
90
  {
91
- "id": "dolly1",
92
- "name": "Dolly 1",
91
+ "id": "dolly1-security",
92
+ "name": "Dolly 1 Security",
93
93
  "reasoning": true,
94
94
  "thinkingLevelMap": {
95
95
  "off": "none",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-zro-provider",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "description": "Zro provider extension for pi - GLM-5.2, GLM-5.3 Flash, Kimi K3, DeepSeek V4 Flash & DeepSeek V4.1 Flash through the Zro inference endpoint",
5
5
  "type": "module",
6
6
  "main": "index.ts",