pi-baseten-provider 1.0.6 → 1.0.7

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
@@ -73,7 +73,9 @@ pi
73
73
  | GLM 4.7 | 200K | ❌ | ✅ | $0.60 | $2.20 |
74
74
  | GLM 5 | 203K | ❌ | ✅ | $0.95 | $3.15 |
75
75
  | GLM 5.1 | 203K | ❌ | ❌ | $1.30 | $4.30 |
76
- | GLM 5.2 | 203K | ❌ | ✅ | $1.40 | $4.40 |
76
+ | GLM 5.2 | 524K | ❌ | ✅ | $1.40 | $4.40 |
77
+ | GLM 5.2 Fast | 524K | ❌ | ✅ | $2.10 | $6.60 |
78
+ | Inkling | 1.0M | ❌ | ✅ | $1.00 | $4.05 |
77
79
  | Kimi K2.5 | 262K | ✅ | ✅ | $0.60 | $3.00 |
78
80
  | Kimi K2.6 | 262K | ✅ | ✅ | $0.60 | $3.00 |
79
81
  | Kimi K2.7 Code | 262K | ❌ | ✅ | $0.95 | $4.00 |
package/index.ts CHANGED
@@ -38,7 +38,7 @@ interface JsonModel {
38
38
  id: string;
39
39
  name: string;
40
40
  reasoning: boolean;
41
- input: string[];
41
+ input: ("text" | "image")[];
42
42
  cost: {
43
43
  input: number;
44
44
  output: number;
@@ -67,7 +67,7 @@ interface JsonModel {
67
67
  interface PatchEntry {
68
68
  name?: string;
69
69
  reasoning?: boolean;
70
- input?: string[];
70
+ input?: ("text" | "image")[];
71
71
  cost?: {
72
72
  input?: number;
73
73
  output?: number;
package/models.json CHANGED
@@ -99,8 +99,52 @@
99
99
  "cacheRead": 0,
100
100
  "cacheWrite": 0
101
101
  },
102
- "contextWindow": 202720,
103
- "maxTokens": 202720,
102
+ "contextWindow": 524288,
103
+ "maxTokens": 524288,
104
+ "compat": {
105
+ "supportsDeveloperRole": true,
106
+ "supportsStore": false,
107
+ "maxTokensField": "max_completion_tokens",
108
+ "thinkingFormat": "openai"
109
+ }
110
+ },
111
+ {
112
+ "id": "zai-org/GLM-5.2-Fast",
113
+ "name": "GLM 5.2 Fast",
114
+ "reasoning": true,
115
+ "input": [
116
+ "text"
117
+ ],
118
+ "cost": {
119
+ "input": 2.1,
120
+ "output": 6.6,
121
+ "cacheRead": 0,
122
+ "cacheWrite": 0
123
+ },
124
+ "contextWindow": 524288,
125
+ "maxTokens": 524288,
126
+ "compat": {
127
+ "supportsDeveloperRole": true,
128
+ "supportsStore": false,
129
+ "maxTokensField": "max_completion_tokens",
130
+ "thinkingFormat": "openai"
131
+ }
132
+ },
133
+ {
134
+ "id": "thinkingmachines/inkling",
135
+ "name": "Inkling",
136
+ "reasoning": true,
137
+ "input": [
138
+ "text"
139
+ ],
140
+ "cost": {
141
+ "input": 1,
142
+ "output": 4.05,
143
+ "cacheRead": 0,
144
+ "cacheWrite": 0
145
+ },
146
+ "contextWindow": 1048576,
147
+ "maxTokens": 32768,
104
148
  "compat": {
105
149
  "supportsDeveloperRole": true,
106
150
  "supportsStore": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-baseten-provider",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Baseten provider extension for pi - Access DeepSeek, Kimi, GLM, MiniMax, Nemotron, and GPT-OSS models through the Baseten Model API",
5
5
  "author": "monotykamary",
6
6
  "homepage": "https://github.com/monotykamary/pi-baseten-provider#readme",