pi-opencode-go-provider 1.0.14 → 1.0.16
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 +2 -1
- package/models.json +33 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ pi
|
|
|
77
77
|
| GLM-5.3-Flash (2x usage) | Completions | Text + Image | 1.0M | 131K | $0.07 | $0.25 |
|
|
78
78
|
| GPT-5.6 Luna | Responses | Text + Image | 1.1M | 128K | $0.20 | $1.20 |
|
|
79
79
|
| Grok 4.6 | Completions | Text + Image | 500K | 500K | $2.00 | $6.00 |
|
|
80
|
-
| Hy3
|
|
80
|
+
| Hy3 | Completions | Text | 256K | 128K | $0.14 | $0.58 |
|
|
81
81
|
| Hy4 preview | Completions | Text | 1.0M | 64K | $0.83 | $2.50 |
|
|
82
82
|
| Kimi K2.6 | Completions | Text + Image | 262K | 66K | $0.95 | $4.00 |
|
|
83
83
|
| Kimi K2.7 Code | Completions | Text + Image | 262K | 262K | $0.95 | $4.00 |
|
|
@@ -88,6 +88,7 @@ pi
|
|
|
88
88
|
| MiniMax-M2.7 | Completions | Text | 205K | 131K | $0.30 | $1.20 |
|
|
89
89
|
| MiniMax-M3 | Anthropic | Text + Image | 1.0M | 131K | $0.30 | $1.20 |
|
|
90
90
|
| Muse Spark 1.2 Contributor | Completions | Text + Image | 1.0M | 131K | $0.10 | $0.20 |
|
|
91
|
+
| Muse Spark 1.3 Contributor | Completions | Text + Image | 1.0M | 131K | $0.10 | $0.20 |
|
|
91
92
|
| Qwen3.6 Plus | Completions | Text + Image | 1.0M | 66K | $0.50 | $3.00 |
|
|
92
93
|
| Qwen3.7 Max | Completions | Text | 1.0M | 66K | $2.50 | $7.50 |
|
|
93
94
|
| Qwen3.7 Plus | Completions | Text + Image | 1.0M | 66K | $0.40 | $1.60 |
|
package/models.json
CHANGED
|
@@ -64,6 +64,34 @@
|
|
|
64
64
|
"contextWindow": 1048576,
|
|
65
65
|
"maxTokens": 131072
|
|
66
66
|
},
|
|
67
|
+
{
|
|
68
|
+
"id": "muse-spark-1.3-contributor",
|
|
69
|
+
"name": "Muse Spark 1.3 Contributor",
|
|
70
|
+
"api": "openai-completions",
|
|
71
|
+
"baseUrl": "https://opencode.ai/zen/go/v1",
|
|
72
|
+
"reasoning": true,
|
|
73
|
+
"thinkingLevelMap": {
|
|
74
|
+
"off": null,
|
|
75
|
+
"minimal": "minimal",
|
|
76
|
+
"low": "low",
|
|
77
|
+
"medium": "medium",
|
|
78
|
+
"high": "high",
|
|
79
|
+
"xhigh": "xhigh",
|
|
80
|
+
"max": null
|
|
81
|
+
},
|
|
82
|
+
"input": [
|
|
83
|
+
"text",
|
|
84
|
+
"image"
|
|
85
|
+
],
|
|
86
|
+
"cost": {
|
|
87
|
+
"input": 0.1,
|
|
88
|
+
"output": 0.2,
|
|
89
|
+
"cacheRead": 0.002,
|
|
90
|
+
"cacheWrite": 0
|
|
91
|
+
},
|
|
92
|
+
"contextWindow": 1048576,
|
|
93
|
+
"maxTokens": 131072
|
|
94
|
+
},
|
|
67
95
|
{
|
|
68
96
|
"id": "deepseek-v4-flash",
|
|
69
97
|
"name": "DeepSeek V4 Flash",
|
|
@@ -461,7 +489,7 @@
|
|
|
461
489
|
},
|
|
462
490
|
{
|
|
463
491
|
"id": "hy3",
|
|
464
|
-
"name": "Hy3
|
|
492
|
+
"name": "Hy3",
|
|
465
493
|
"api": "openai-completions",
|
|
466
494
|
"baseUrl": "https://opencode.ai/zen/go/v1",
|
|
467
495
|
"reasoning": true,
|
|
@@ -478,13 +506,13 @@
|
|
|
478
506
|
"text"
|
|
479
507
|
],
|
|
480
508
|
"cost": {
|
|
481
|
-
"input": 0.
|
|
482
|
-
"output": 0.
|
|
483
|
-
"cacheRead": 0.
|
|
509
|
+
"input": 0.14,
|
|
510
|
+
"output": 0.58,
|
|
511
|
+
"cacheRead": 0.035,
|
|
484
512
|
"cacheWrite": 0
|
|
485
513
|
},
|
|
486
514
|
"contextWindow": 256000,
|
|
487
|
-
"maxTokens":
|
|
515
|
+
"maxTokens": 128000
|
|
488
516
|
},
|
|
489
517
|
{
|
|
490
518
|
"id": "muse-spark-1.2-contributor",
|
package/package.json
CHANGED