@aliou/pi-synthetic 0.6.3 → 0.7.0

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.6.3",
3
+ "version": "0.7.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -294,7 +294,7 @@ export const SYNTHETIC_MODELS: SyntheticModelConfig[] = [
294
294
  input: ["text", "image"],
295
295
  cost: {
296
296
  input: 0.6,
297
- output: 3,
297
+ output: 3.6,
298
298
  cacheRead: 0.6,
299
299
  cacheWrite: 0,
300
300
  },
@@ -321,4 +321,23 @@ export const SYNTHETIC_MODELS: SyntheticModelConfig[] = [
321
321
  maxTokensField: "max_completion_tokens",
322
322
  },
323
323
  },
324
+ // API: hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 → ctx=262144, out=65536
325
+ {
326
+ id: "hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
327
+ name: "nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4",
328
+ reasoning: true,
329
+ compat: {
330
+ supportsReasoningEffort: true,
331
+ reasoningEffortMap: SYNTHETIC_REASONING_EFFORT_MAP,
332
+ },
333
+ input: ["text"],
334
+ cost: {
335
+ input: 0.6,
336
+ output: 3,
337
+ cacheRead: 0.6,
338
+ cacheWrite: 0,
339
+ },
340
+ contextWindow: 262144,
341
+ maxTokens: 65536,
342
+ },
324
343
  ];