@monotykamary/pi-opencode-provider 1.0.14 → 1.0.15

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 @@ _GPT, Claude, Gemini, GLM, MiniMax, Kimi, DeepSeek — unified API for [pi](http
15
15
 
16
16
  ## Features
17
17
 
18
- - **64+ AI Models** including GPT-5.x Codex, Claude Opus/Sonnet/Haiku, Gemini 3.x, GLM, MiniMax, Kimi K2.5, and more
18
+ - **63+ AI Models** including GPT-5.x Codex, Claude Opus/Sonnet/Haiku, Gemini 3.x, GLM, MiniMax, Kimi K2.5, and more
19
19
  - **Multi-API Support** — uses the correct API protocol per model (Anthropic, OpenAI Responses, OpenAI Completions, Gemini)
20
20
  - **Cost Tracking** with per-model pricing for budget management
21
21
  - **Reasoning Models** with thinking level maps for proper effort control
@@ -122,7 +122,6 @@ pi
122
122
  | Grok 4.6 | Responses | Text + Image | 500K | 500K | $2.00 | $6.00 |
123
123
  | Grok Build 0.1 | Completions | Text + Image | 256K | 256K | $1.00 | $2.00 |
124
124
  | Grok Code | Completions | Text + Image | 256K | 256K | $1.00 | $2.00 |
125
- | Hy3 Free | Completions | Text | 190K | 64K | — | — |
126
125
  | Kimi K2.5 | Completions | Text + Image | 262K | 66K | $0.60 | $3.00 |
127
126
  | Kimi K2.6 | Completions | Text + Image | 262K | 66K | $0.95 | $4.00 |
128
127
  | Kimi K2.7 Code | Completions | Text + Image | 262K | 262K | $0.95 | $4.00 |
@@ -65,5 +65,33 @@
65
65
  "contextWindow": 1000000,
66
66
  "maxTokens": 131072,
67
67
  "deprecatedAt": "2026-08-27T02:00:22.685Z"
68
+ },
69
+ "hy3-free": {
70
+ "id": "hy3-free",
71
+ "name": "Hy3 Free",
72
+ "api": "openai-completions",
73
+ "baseUrl": "https://opencode.ai/zen/v1",
74
+ "reasoning": true,
75
+ "thinkingLevelMap": {
76
+ "off": null,
77
+ "minimal": null,
78
+ "low": "low",
79
+ "medium": "medium",
80
+ "high": "high",
81
+ "xhigh": null,
82
+ "max": null
83
+ },
84
+ "input": [
85
+ "text"
86
+ ],
87
+ "cost": {
88
+ "input": 0,
89
+ "output": 0,
90
+ "cacheRead": 0,
91
+ "cacheWrite": 0
92
+ },
93
+ "contextWindow": 190000,
94
+ "maxTokens": 64000,
95
+ "deprecatedAt": "2026-08-31T02:00:27.170Z"
68
96
  }
69
97
  }
package/models.json CHANGED
@@ -648,33 +648,6 @@
648
648
  "contextWindow": 204800,
649
649
  "maxTokens": 131072
650
650
  },
651
- {
652
- "id": "hy3-free",
653
- "name": "Hy3 Free",
654
- "api": "openai-completions",
655
- "baseUrl": "https://opencode.ai/zen/v1",
656
- "reasoning": true,
657
- "thinkingLevelMap": {
658
- "off": null,
659
- "minimal": null,
660
- "low": "low",
661
- "medium": "medium",
662
- "high": "high",
663
- "xhigh": null,
664
- "max": null
665
- },
666
- "input": [
667
- "text"
668
- ],
669
- "cost": {
670
- "input": 0,
671
- "output": 0,
672
- "cacheRead": 0,
673
- "cacheWrite": 0
674
- },
675
- "contextWindow": 190000,
676
- "maxTokens": 64000
677
- },
678
651
  {
679
652
  "id": "gpt-5.3-codex",
680
653
  "name": "GPT-5.3 Codex",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monotykamary/pi-opencode-provider",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Opencode provider extension for pi - Access GPT, Claude, Gemini, GLM, MiniMax, Kimi and more through the opencode.ai API",
5
5
  "type": "module",
6
6
  "main": "index.ts",