@stll/ai-catalog 0.1.2 → 0.1.4
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/dist/index.d.ts +17 -10
- package/dist/index.js +22 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,7 @@ declare const MODEL_REASONING_EFFORTS: {
|
|
|
61
61
|
readonly "openai/gpt-5.5": readonly ["none", "low", "medium", "high", "xhigh"];
|
|
62
62
|
readonly "openai/gpt-5.4-mini": readonly ["none", "low", "medium", "high", "xhigh"];
|
|
63
63
|
readonly "gpt-5.6": readonly ["none", "low", "medium", "high", "xhigh", "max"];
|
|
64
|
+
readonly "gpt-5.6-terra": readonly ["none", "low", "medium", "high", "xhigh", "max"];
|
|
64
65
|
readonly "gpt-5.6-luna": readonly ["none", "low", "medium", "high", "xhigh", "max"];
|
|
65
66
|
readonly "gpt-5.5": readonly ["none", "low", "medium", "high", "xhigh"];
|
|
66
67
|
readonly "gpt-5.4": readonly ["none", "low", "medium", "high", "xhigh"];
|
|
@@ -117,6 +118,7 @@ declare const MODEL_DEFAULT_REASONING_EFFORTS: {
|
|
|
117
118
|
readonly "openai/gpt-5.5": "medium";
|
|
118
119
|
readonly "openai/gpt-5.4-mini": "medium";
|
|
119
120
|
readonly "gpt-5.6": null;
|
|
121
|
+
readonly "gpt-5.6-terra": null;
|
|
120
122
|
readonly "gpt-5.6-luna": null;
|
|
121
123
|
readonly "gpt-5.5": null;
|
|
122
124
|
readonly "gpt-5.4": null;
|
|
@@ -173,12 +175,13 @@ declare const MODEL_TEMPERATURE_POLICIES: {
|
|
|
173
175
|
readonly "openai/gpt-5.5": "omit";
|
|
174
176
|
readonly "openai/gpt-5.4-mini": "omit";
|
|
175
177
|
readonly "gpt-5.6": "omit";
|
|
178
|
+
readonly "gpt-5.6-terra": "omit";
|
|
176
179
|
readonly "gpt-5.6-luna": "omit";
|
|
177
180
|
readonly "gpt-5.5": "omit";
|
|
178
|
-
readonly "gpt-5.4": "
|
|
179
|
-
readonly "gpt-5.4-mini": "
|
|
180
|
-
readonly "gpt-5.4-nano": "
|
|
181
|
-
readonly "gpt-5.2": "
|
|
181
|
+
readonly "gpt-5.4": "emit";
|
|
182
|
+
readonly "gpt-5.4-mini": "emit";
|
|
183
|
+
readonly "gpt-5.4-nano": "emit";
|
|
184
|
+
readonly "gpt-5.2": "emit";
|
|
182
185
|
readonly "claude-sonnet-5": "omit";
|
|
183
186
|
readonly "claude-fable-5": "omit";
|
|
184
187
|
readonly "claude-opus-5": "omit";
|
|
@@ -287,7 +290,7 @@ declare const BYOK_DEFAULT_MODELS: {
|
|
|
287
290
|
};
|
|
288
291
|
readonly mistral: {
|
|
289
292
|
readonly fast: "mistral-small-latest";
|
|
290
|
-
readonly chat: "mistral-
|
|
293
|
+
readonly chat: "mistral-medium-latest";
|
|
291
294
|
readonly reasoning: "magistral-medium-latest";
|
|
292
295
|
readonly pdf: "mistral-large-latest";
|
|
293
296
|
};
|
|
@@ -348,7 +351,7 @@ declare const DEFAULT_MODELS: {
|
|
|
348
351
|
};
|
|
349
352
|
readonly mistral: {
|
|
350
353
|
readonly fast: "mistral-small-latest";
|
|
351
|
-
readonly chat: "mistral-
|
|
354
|
+
readonly chat: "mistral-medium-latest";
|
|
352
355
|
readonly reasoning: "magistral-medium-latest";
|
|
353
356
|
readonly pdf: "mistral-large-latest";
|
|
354
357
|
};
|
|
@@ -366,7 +369,7 @@ declare const DEFAULT_MODELS: {
|
|
|
366
369
|
declare const BYOK_MODEL_OPTIONS: {
|
|
367
370
|
readonly google: readonly ["gemini-3.7-flash", "gemini-3.6-flash", "gemini-3.5-flash-lite", "gemini-3.1-pro-preview", "gemini-3.5-flash", "gemini-3.1-flash-lite"];
|
|
368
371
|
readonly anthropic: readonly ["claude-sonnet-5", "claude-fable-5", "claude-opus-5", "claude-opus-4-8", "claude-opus-4-7", "claude-sonnet-4-6", "claude-opus-4-6", "claude-haiku-4-5-20251001"];
|
|
369
|
-
readonly openai: readonly ["gpt-5.6", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
372
|
+
readonly openai: readonly ["gpt-5.6", "gpt-5.6-terra", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
370
373
|
readonly openrouter: readonly ["openai/gpt-5.6-luna", "openai/gpt-5.6-terra", "google/gemini-3.7-flash", "google/gemini-3.6-flash", "google/gemini-3.5-flash-lite", "google/gemini-3.1-pro-preview", "google/gemini-3.5-flash", "google/gemini-3.1-flash-lite", "anthropic/claude-sonnet-5", "anthropic/claude-opus-5", "anthropic/claude-opus-4.8", "anthropic/claude-sonnet-4.6", "openai/gpt-5.5", "openai/gpt-5.4-mini"];
|
|
371
374
|
readonly bedrock: readonly ["us.anthropic.claude-sonnet-4-5-20250929-v1:0", "us.anthropic.claude-haiku-4-5-20251001-v1:0", "us.amazon.nova-pro-v1:0", "us.amazon.nova-lite-v1:0", "us.amazon.nova-micro-v1:0", "openai.gpt-oss-120b-1:0", "openai.gpt-oss-20b-1:0", "us.deepseek.r1-v1:0"];
|
|
372
375
|
readonly mistral: readonly ["mistral-large-latest", "mistral-medium-latest", "mistral-small-latest", "magistral-medium-latest", "magistral-small", "pixtral-large-latest"];
|
|
@@ -444,7 +447,11 @@ declare const MODEL_DISPLAY_METADATA: {
|
|
|
444
447
|
readonly iconProvider: "anthropic";
|
|
445
448
|
};
|
|
446
449
|
readonly "gpt-5.6": {
|
|
447
|
-
readonly displayName: "GPT-5.6";
|
|
450
|
+
readonly displayName: "GPT-5.6 Sol";
|
|
451
|
+
readonly iconProvider: "openai";
|
|
452
|
+
};
|
|
453
|
+
readonly "gpt-5.6-terra": {
|
|
454
|
+
readonly displayName: "GPT-5.6 Terra";
|
|
448
455
|
readonly iconProvider: "openai";
|
|
449
456
|
};
|
|
450
457
|
readonly "gpt-5.6-luna": {
|
|
@@ -593,7 +600,7 @@ declare const getModelDisplayMetadata: (modelId: string) => ModelDisplayMetadata
|
|
|
593
600
|
declare const BYOK_DOCUMENT_INPUT_MODEL_OPTIONS: {
|
|
594
601
|
readonly google: readonly ["gemini-3.7-flash", "gemini-3.6-flash", "gemini-3.5-flash-lite", "gemini-3.1-pro-preview", "gemini-3.5-flash", "gemini-3.1-flash-lite"];
|
|
595
602
|
readonly openrouter: readonly ["openai/gpt-5.6-luna", "openai/gpt-5.6-terra", "google/gemini-3.7-flash", "google/gemini-3.6-flash", "google/gemini-3.5-flash-lite", "google/gemini-3.1-pro-preview", "google/gemini-3.5-flash", "google/gemini-3.1-flash-lite", "anthropic/claude-sonnet-5", "anthropic/claude-opus-5", "anthropic/claude-opus-4.8", "anthropic/claude-sonnet-4.6", "openai/gpt-5.5", "openai/gpt-5.4-mini"];
|
|
596
|
-
readonly openai: readonly ["gpt-5.6", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
603
|
+
readonly openai: readonly ["gpt-5.6", "gpt-5.6-terra", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
597
604
|
readonly anthropic: readonly ["claude-sonnet-5", "claude-fable-5", "claude-opus-5", "claude-opus-4-8", "claude-opus-4-7", "claude-sonnet-4-6", "claude-opus-4-6", "claude-haiku-4-5-20251001"];
|
|
598
605
|
readonly bedrock: readonly ["us.anthropic.claude-sonnet-4-5-20250929-v1:0", "us.anthropic.claude-haiku-4-5-20251001-v1:0", "us.amazon.nova-pro-v1:0", "us.amazon.nova-lite-v1:0"];
|
|
599
606
|
readonly mistral: readonly [];
|
|
@@ -624,7 +631,7 @@ declare const CHAT_PDF_ATTACHMENT_MODEL_OPTIONS: {
|
|
|
624
631
|
readonly mistral: readonly ["mistral-medium-latest", "mistral-small-latest", "pixtral-large-latest"];
|
|
625
632
|
readonly google: readonly ["gemini-3.7-flash", "gemini-3.6-flash", "gemini-3.5-flash-lite", "gemini-3.1-pro-preview", "gemini-3.5-flash", "gemini-3.1-flash-lite"];
|
|
626
633
|
readonly openrouter: readonly ["openai/gpt-5.6-luna", "openai/gpt-5.6-terra", "google/gemini-3.7-flash", "google/gemini-3.6-flash", "google/gemini-3.5-flash-lite", "google/gemini-3.1-pro-preview", "google/gemini-3.5-flash", "google/gemini-3.1-flash-lite", "anthropic/claude-sonnet-5", "anthropic/claude-opus-5", "anthropic/claude-opus-4.8", "anthropic/claude-sonnet-4.6", "openai/gpt-5.5", "openai/gpt-5.4-mini"];
|
|
627
|
-
readonly openai: readonly ["gpt-5.6", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
634
|
+
readonly openai: readonly ["gpt-5.6", "gpt-5.6-terra", "gpt-5.6-luna", "gpt-5.5", "gpt-5.4", "gpt-5.4-mini", "gpt-5.4-nano", "gpt-5.2"];
|
|
628
635
|
readonly anthropic: readonly ["claude-sonnet-5", "claude-fable-5", "claude-opus-5", "claude-opus-4-8", "claude-opus-4-7", "claude-sonnet-4-6", "claude-opus-4-6", "claude-haiku-4-5-20251001"];
|
|
629
636
|
readonly bedrock: readonly ["us.anthropic.claude-sonnet-4-5-20250929-v1:0", "us.anthropic.claude-haiku-4-5-20251001-v1:0", "us.amazon.nova-pro-v1:0", "us.amazon.nova-lite-v1:0"];
|
|
630
637
|
};
|
package/dist/index.js
CHANGED
|
@@ -31,6 +31,7 @@ const MODEL_DOCUMENT_INPUT_OPTIONS = {
|
|
|
31
31
|
],
|
|
32
32
|
openai: [
|
|
33
33
|
"gpt-5.6",
|
|
34
|
+
"gpt-5.6-terra",
|
|
34
35
|
"gpt-5.6-luna",
|
|
35
36
|
"gpt-5.5",
|
|
36
37
|
"gpt-5.4",
|
|
@@ -201,6 +202,14 @@ const MODEL_REASONING_EFFORTS = {
|
|
|
201
202
|
"xhigh",
|
|
202
203
|
"max"
|
|
203
204
|
],
|
|
205
|
+
"gpt-5.6-terra": [
|
|
206
|
+
"none",
|
|
207
|
+
"low",
|
|
208
|
+
"medium",
|
|
209
|
+
"high",
|
|
210
|
+
"xhigh",
|
|
211
|
+
"max"
|
|
212
|
+
],
|
|
204
213
|
"gpt-5.6-luna": [
|
|
205
214
|
"none",
|
|
206
215
|
"low",
|
|
@@ -343,6 +352,7 @@ const MODEL_DEFAULT_REASONING_EFFORTS = {
|
|
|
343
352
|
"openai/gpt-5.5": "medium",
|
|
344
353
|
"openai/gpt-5.4-mini": "medium",
|
|
345
354
|
"gpt-5.6": null,
|
|
355
|
+
"gpt-5.6-terra": null,
|
|
346
356
|
"gpt-5.6-luna": null,
|
|
347
357
|
"gpt-5.5": null,
|
|
348
358
|
"gpt-5.4": null,
|
|
@@ -399,12 +409,13 @@ const MODEL_TEMPERATURE_POLICIES = {
|
|
|
399
409
|
"openai/gpt-5.5": "omit",
|
|
400
410
|
"openai/gpt-5.4-mini": "omit",
|
|
401
411
|
"gpt-5.6": "omit",
|
|
412
|
+
"gpt-5.6-terra": "omit",
|
|
402
413
|
"gpt-5.6-luna": "omit",
|
|
403
414
|
"gpt-5.5": "omit",
|
|
404
|
-
"gpt-5.4": "
|
|
405
|
-
"gpt-5.4-mini": "
|
|
406
|
-
"gpt-5.4-nano": "
|
|
407
|
-
"gpt-5.2": "
|
|
415
|
+
"gpt-5.4": "emit",
|
|
416
|
+
"gpt-5.4-mini": "emit",
|
|
417
|
+
"gpt-5.4-nano": "emit",
|
|
418
|
+
"gpt-5.2": "emit",
|
|
408
419
|
"claude-sonnet-5": "omit",
|
|
409
420
|
"claude-fable-5": "omit",
|
|
410
421
|
"claude-opus-5": "omit",
|
|
@@ -589,7 +600,7 @@ const BYOK_DEFAULT_MODELS = {
|
|
|
589
600
|
},
|
|
590
601
|
mistral: {
|
|
591
602
|
fast: "mistral-small-latest",
|
|
592
|
-
chat: "mistral-
|
|
603
|
+
chat: "mistral-medium-latest",
|
|
593
604
|
reasoning: "magistral-medium-latest",
|
|
594
605
|
pdf: "mistral-large-latest"
|
|
595
606
|
}
|
|
@@ -651,6 +662,7 @@ const BYOK_MODEL_OPTIONS = {
|
|
|
651
662
|
],
|
|
652
663
|
openai: [
|
|
653
664
|
"gpt-5.6",
|
|
665
|
+
"gpt-5.6-terra",
|
|
654
666
|
"gpt-5.6-luna",
|
|
655
667
|
"gpt-5.5",
|
|
656
668
|
"gpt-5.4",
|
|
@@ -757,7 +769,11 @@ const MODEL_DISPLAY_METADATA = {
|
|
|
757
769
|
iconProvider: "anthropic"
|
|
758
770
|
},
|
|
759
771
|
"gpt-5.6": {
|
|
760
|
-
displayName: "GPT-5.6",
|
|
772
|
+
displayName: "GPT-5.6 Sol",
|
|
773
|
+
iconProvider: "openai"
|
|
774
|
+
},
|
|
775
|
+
"gpt-5.6-terra": {
|
|
776
|
+
displayName: "GPT-5.6 Terra",
|
|
761
777
|
iconProvider: "openai"
|
|
762
778
|
},
|
|
763
779
|
"gpt-5.6-luna": {
|