@aliou/pi-synthetic 0.5.0 → 0.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aliou/pi-synthetic",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -235,12 +235,12 @@ export const SYNTHETIC_MODELS: SyntheticModelConfig[] = [
235
235
  contextWindow: 262144,
236
236
  maxTokens: 32000,
237
237
  },
238
- // API: hf:Qwen/Qwen3.5-397B-A17B → ctx=262144, out=32000
238
+ // API: hf:Qwen/Qwen3.5-397B-A17B → ctx=262144, out=65536
239
239
  {
240
240
  id: "hf:Qwen/Qwen3.5-397B-A17B",
241
241
  name: "Qwen/Qwen3.5-397B-A17B",
242
- reasoning: false,
243
- input: ["text"],
242
+ reasoning: true,
243
+ input: ["text", "image"],
244
244
  cost: {
245
245
  input: 0.6,
246
246
  output: 3,
@@ -248,6 +248,21 @@ export const SYNTHETIC_MODELS: SyntheticModelConfig[] = [
248
248
  cacheWrite: 0,
249
249
  },
250
250
  contextWindow: 262144,
251
- maxTokens: 32000,
251
+ maxTokens: 65536,
252
+ },
253
+ // API: hf:MiniMaxAI/MiniMax-M2.5 → ctx=191488, out=65536
254
+ {
255
+ id: "hf:MiniMaxAI/MiniMax-M2.5",
256
+ name: "MiniMaxAI/MiniMax-M2.5",
257
+ reasoning: true,
258
+ input: ["text", "image"],
259
+ cost: {
260
+ input: 0.6,
261
+ output: 3,
262
+ cacheRead: 0.6,
263
+ cacheWrite: 0,
264
+ },
265
+ contextWindow: 191488,
266
+ maxTokens: 65536,
252
267
  },
253
268
  ];