@stll/ai-catalog 0.1.1 → 0.1.3
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 +11 -11
- package/dist/index.js +11 -11
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -175,10 +175,10 @@ declare const MODEL_TEMPERATURE_POLICIES: {
|
|
|
175
175
|
readonly "gpt-5.6": "omit";
|
|
176
176
|
readonly "gpt-5.6-luna": "omit";
|
|
177
177
|
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": "
|
|
178
|
+
readonly "gpt-5.4": "emit";
|
|
179
|
+
readonly "gpt-5.4-mini": "emit";
|
|
180
|
+
readonly "gpt-5.4-nano": "emit";
|
|
181
|
+
readonly "gpt-5.2": "emit";
|
|
182
182
|
readonly "claude-sonnet-5": "omit";
|
|
183
183
|
readonly "claude-fable-5": "omit";
|
|
184
184
|
readonly "claude-opus-5": "omit";
|
|
@@ -613,7 +613,7 @@ declare const isBYOKModelRoleSupported: ({ provider, modelId, role }: {
|
|
|
613
613
|
* pdf ROLE (`BYOK_DOCUMENT_INPUT_MODEL_OPTIONS`, which curates model selection
|
|
614
614
|
* for PDF-processing flows): it only asks "will the chat stream survive this
|
|
615
615
|
* attachment." The Mistral text adapter maps PDF `document` parts to
|
|
616
|
-
* `document_url
|
|
616
|
+
* `document_url`, so its
|
|
617
617
|
* vision models accept PDF attachments even though Mistral is deliberately not
|
|
618
618
|
* offered as a pdf-role provider. Mistral's `document_url` takes PDF but NOT
|
|
619
619
|
* textual documents (docx/txt/csv/md), so those still gate on
|
|
@@ -908,14 +908,14 @@ declare const MODEL_RATES: {
|
|
|
908
908
|
readonly kind: "input-token-tiered";
|
|
909
909
|
readonly inputTokenThreshold: 272000;
|
|
910
910
|
readonly standard: {
|
|
911
|
-
readonly inputPerMTok:
|
|
912
|
-
readonly outputPerMTok:
|
|
913
|
-
readonly cachedInputPerMTok:
|
|
911
|
+
readonly inputPerMTok: 400000;
|
|
912
|
+
readonly outputPerMTok: 2000000;
|
|
913
|
+
readonly cachedInputPerMTok: 40000;
|
|
914
914
|
};
|
|
915
915
|
readonly aboveThreshold: {
|
|
916
|
-
readonly inputPerMTok:
|
|
917
|
-
readonly outputPerMTok:
|
|
918
|
-
readonly cachedInputPerMTok:
|
|
916
|
+
readonly inputPerMTok: 800000;
|
|
917
|
+
readonly outputPerMTok: 3000000;
|
|
918
|
+
readonly cachedInputPerMTok: 80000;
|
|
919
919
|
};
|
|
920
920
|
};
|
|
921
921
|
readonly "gpt-5.6-luna": {
|
package/dist/index.js
CHANGED
|
@@ -401,10 +401,10 @@ const MODEL_TEMPERATURE_POLICIES = {
|
|
|
401
401
|
"gpt-5.6": "omit",
|
|
402
402
|
"gpt-5.6-luna": "omit",
|
|
403
403
|
"gpt-5.5": "omit",
|
|
404
|
-
"gpt-5.4": "
|
|
405
|
-
"gpt-5.4-mini": "
|
|
406
|
-
"gpt-5.4-nano": "
|
|
407
|
-
"gpt-5.2": "
|
|
404
|
+
"gpt-5.4": "emit",
|
|
405
|
+
"gpt-5.4-mini": "emit",
|
|
406
|
+
"gpt-5.4-nano": "emit",
|
|
407
|
+
"gpt-5.2": "emit",
|
|
408
408
|
"claude-sonnet-5": "omit",
|
|
409
409
|
"claude-fable-5": "omit",
|
|
410
410
|
"claude-opus-5": "omit",
|
|
@@ -916,7 +916,7 @@ const isBYOKModelRoleSupported = ({ provider, modelId, role }) => {
|
|
|
916
916
|
* pdf ROLE (`BYOK_DOCUMENT_INPUT_MODEL_OPTIONS`, which curates model selection
|
|
917
917
|
* for PDF-processing flows): it only asks "will the chat stream survive this
|
|
918
918
|
* attachment." The Mistral text adapter maps PDF `document` parts to
|
|
919
|
-
* `document_url
|
|
919
|
+
* `document_url`, so its
|
|
920
920
|
* vision models accept PDF attachments even though Mistral is deliberately not
|
|
921
921
|
* offered as a pdf-role provider. Mistral's `document_url` takes PDF but NOT
|
|
922
922
|
* textual documents (docx/txt/csv/md), so those still gate on
|
|
@@ -1219,14 +1219,14 @@ const MODEL_RATES = {
|
|
|
1219
1219
|
kind: "input-token-tiered",
|
|
1220
1220
|
inputTokenThreshold: 272e3,
|
|
1221
1221
|
standard: {
|
|
1222
|
-
inputPerMTok:
|
|
1223
|
-
outputPerMTok:
|
|
1224
|
-
cachedInputPerMTok:
|
|
1222
|
+
inputPerMTok: 4e5,
|
|
1223
|
+
outputPerMTok: 2e6,
|
|
1224
|
+
cachedInputPerMTok: 4e4
|
|
1225
1225
|
},
|
|
1226
1226
|
aboveThreshold: {
|
|
1227
|
-
inputPerMTok:
|
|
1228
|
-
outputPerMTok:
|
|
1229
|
-
cachedInputPerMTok:
|
|
1227
|
+
inputPerMTok: 8e5,
|
|
1228
|
+
outputPerMTok: 3e6,
|
|
1229
|
+
cachedInputPerMTok: 8e4
|
|
1230
1230
|
}
|
|
1231
1231
|
},
|
|
1232
1232
|
"gpt-5.6-luna": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stll/ai-catalog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Provider-neutral AI model roles, capabilities, and curated model metadata.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@stll/typescript-config": "0.0.0",
|
|
53
|
-
"@tanstack/ai-anthropic": "0.
|
|
54
|
-
"@tanstack/ai-bedrock": "0.
|
|
55
|
-
"@tanstack/ai-gemini": "0.
|
|
56
|
-
"@tanstack/ai-mistral": "0.
|
|
57
|
-
"@tanstack/ai-openrouter": "0.
|
|
53
|
+
"@tanstack/ai-anthropic": "0.17.1",
|
|
54
|
+
"@tanstack/ai-bedrock": "0.2.6",
|
|
55
|
+
"@tanstack/ai-gemini": "0.25.1",
|
|
56
|
+
"@tanstack/ai-mistral": "0.4.1",
|
|
57
|
+
"@tanstack/ai-openrouter": "0.18.3",
|
|
58
58
|
"bun-types": "1.4.0",
|
|
59
59
|
"tsdown": "0.22.14"
|
|
60
60
|
},
|