@llmgateway/models 1.115.0 → 1.116.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.
@@ -0,0 +1,22 @@
1
+ export declare const nvidiaModels: [{
2
+ readonly id: "nemotron-3-ultra-550b";
3
+ readonly name: "Nemotron 3 Ultra 550B";
4
+ readonly description: "NVIDIA's most capable model with 550B parameters for complex reasoning, coding, and multimodal tasks.";
5
+ readonly family: "nvidia";
6
+ readonly releasedAt: Date;
7
+ readonly providers: [{
8
+ readonly providerId: "deepinfra";
9
+ readonly externalId: "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B";
10
+ readonly inputPrice: "0.5e-6";
11
+ readonly outputPrice: "2.5e-6";
12
+ readonly cachedInputPrice: "0.15e-6";
13
+ readonly requestPrice: "0";
14
+ readonly contextSize: 262144;
15
+ readonly maxOutput: undefined;
16
+ readonly streaming: true;
17
+ readonly vision: true;
18
+ readonly tools: true;
19
+ readonly jsonOutput: true;
20
+ readonly healStreamingJsonOutput: true;
21
+ }];
22
+ }];
@@ -0,0 +1,27 @@
1
+ export const nvidiaModels = [
2
+ {
3
+ id: "nemotron-3-ultra-550b",
4
+ name: "Nemotron 3 Ultra 550B",
5
+ description: "NVIDIA's most capable model with 550B parameters for complex reasoning, coding, and multimodal tasks.",
6
+ family: "nvidia",
7
+ releasedAt: new Date("2026-06-01"),
8
+ providers: [
9
+ {
10
+ providerId: "deepinfra",
11
+ externalId: "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B",
12
+ inputPrice: "0.5e-6",
13
+ outputPrice: "2.5e-6",
14
+ cachedInputPrice: "0.15e-6",
15
+ requestPrice: "0",
16
+ contextSize: 262144,
17
+ maxOutput: undefined,
18
+ streaming: true,
19
+ vision: true,
20
+ tools: true,
21
+ jsonOutput: true,
22
+ healStreamingJsonOutput: true,
23
+ },
24
+ ],
25
+ },
26
+ ];
27
+ //# sourceMappingURL=nvidia.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nvidia.js","sourceRoot":"","sources":["../../src/models/nvidia.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,YAAY,GAAG;IAC3B;QACC,EAAE,EAAE,uBAAuB;QAC3B,IAAI,EAAE,uBAAuB;QAC7B,WAAW,EACV,uGAAuG;QACxG,MAAM,EAAE,QAAQ;QAChB,UAAU,EAAE,IAAI,IAAI,CAAC,YAAY,CAAC;QAClC,SAAS,EAAE;YACV;gBACC,UAAU,EAAE,WAAW;gBACvB,UAAU,EAAE,0CAA0C;gBACtD,UAAU,EAAE,QAAQ;gBACpB,WAAW,EAAE,QAAQ;gBACrB,gBAAgB,EAAE,SAAS;gBAC3B,YAAY,EAAE,GAAG;gBACjB,WAAW,EAAE,MAAM;gBACnB,SAAS,EAAE,SAAS;gBACpB,SAAS,EAAE,IAAI;gBACf,MAAM,EAAE,IAAI;gBACZ,KAAK,EAAE,IAAI;gBACX,UAAU,EAAE,IAAI;gBAChB,uBAAuB,EAAE,IAAI;aAC7B;SACD;KACD;CACoC,CAAC"}
package/dist/models.d.ts CHANGED
@@ -68,6 +68,7 @@ export interface ProviderModelMapping {
68
68
  tools?: boolean;
69
69
  parallelToolCalls?: boolean;
70
70
  jsonOutput?: boolean;
71
+ healStreamingJsonOutput?: boolean;
71
72
  jsonOutputSchema?: boolean;
72
73
  webSearch?: boolean;
73
74
  webSearchPrice?: Price;
@@ -9562,6 +9563,27 @@ export declare const models: [{
9562
9563
  readonly jsonOutput: false;
9563
9564
  readonly deactivatedAt: Date;
9564
9565
  }];
9566
+ }, {
9567
+ readonly id: "nemotron-3-ultra-550b";
9568
+ readonly name: "Nemotron 3 Ultra 550B";
9569
+ readonly description: "NVIDIA's most capable model with 550B parameters for complex reasoning, coding, and multimodal tasks.";
9570
+ readonly family: "nvidia";
9571
+ readonly releasedAt: Date;
9572
+ readonly providers: [{
9573
+ readonly providerId: "deepinfra";
9574
+ readonly externalId: "nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B";
9575
+ readonly inputPrice: "0.5e-6";
9576
+ readonly outputPrice: "2.5e-6";
9577
+ readonly cachedInputPrice: "0.15e-6";
9578
+ readonly requestPrice: "0";
9579
+ readonly contextSize: 262144;
9580
+ readonly maxOutput: undefined;
9581
+ readonly streaming: true;
9582
+ readonly vision: true;
9583
+ readonly tools: true;
9584
+ readonly jsonOutput: true;
9585
+ readonly healStreamingJsonOutput: true;
9586
+ }];
9565
9587
  }, {
9566
9588
  readonly id: "glm-5.1";
9567
9589
  readonly name: "GLM-5.1";
package/dist/models.js CHANGED
@@ -10,6 +10,7 @@ import { minimaxModels } from "./models/minimax.js";
10
10
  import { mistralModels } from "./models/mistral.js";
11
11
  import { moonshotModels } from "./models/moonshot.js";
12
12
  import { nousresearchModels } from "./models/nousresearch.js";
13
+ import { nvidiaModels } from "./models/nvidia.js";
13
14
  import { openaiModels } from "./models/openai.js";
14
15
  import { perplexityModels } from "./models/perplexity.js";
15
16
  import { xaiModels } from "./models/xai.js";
@@ -32,6 +33,7 @@ export const models = [
32
33
  ...alibabaModels,
33
34
  ...bytedanceModels,
34
35
  ...nousresearchModels,
36
+ ...nvidiaModels,
35
37
  ...zaiModels,
36
38
  ];
37
39
  //# sourceMappingURL=models.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"models.js","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AA4gB5C,MAAM,CAAC,MAAM,MAAM,GAAG;IACrB,GAAG,gBAAgB;IACnB,GAAG,YAAY;IACf,GAAG,eAAe;IAClB,GAAG,YAAY;IACf,GAAG,gBAAgB;IACnB,GAAG,SAAS;IACZ,GAAG,YAAY;IACf,GAAG,UAAU;IACb,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,aAAa;IAChB,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,kBAAkB;IACrB,GAAG,SAAS;CACyB,CAAC"}
1
+ {"version":3,"file":"models.js","sourceRoot":"","sources":["../src/models.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAmhB5C,MAAM,CAAC,MAAM,MAAM,GAAG;IACrB,GAAG,gBAAgB;IACnB,GAAG,YAAY;IACf,GAAG,eAAe;IAClB,GAAG,YAAY;IACf,GAAG,gBAAgB;IACnB,GAAG,SAAS;IACZ,GAAG,YAAY;IACf,GAAG,UAAU;IACb,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,aAAa;IAChB,GAAG,cAAc;IACjB,GAAG,aAAa;IAChB,GAAG,eAAe;IAClB,GAAG,kBAAkB;IACrB,GAAG,YAAY;IACf,GAAG,SAAS;CACyB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llmgateway/models",
3
- "version": "1.115.0",
3
+ "version": "1.116.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",