@runtypelabs/cli 2.8.2 → 2.8.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.js +9 -14
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -175,7 +175,14 @@ var require_integration_providers = __commonJS({
|
|
|
175
175
|
"elevenlabs"
|
|
176
176
|
]);
|
|
177
177
|
function isNonAIProvider2(id) {
|
|
178
|
-
|
|
178
|
+
const normalized = id.trim().toLowerCase();
|
|
179
|
+
if (exports.NON_AI_PROVIDER_IDS.has(normalized))
|
|
180
|
+
return true;
|
|
181
|
+
const colonIndex = normalized.indexOf(":");
|
|
182
|
+
if (colonIndex > 0) {
|
|
183
|
+
return exports.NON_AI_PROVIDER_IDS.has(normalized.slice(0, colonIndex));
|
|
184
|
+
}
|
|
185
|
+
return false;
|
|
179
186
|
}
|
|
180
187
|
}
|
|
181
188
|
});
|
|
@@ -11727,7 +11734,6 @@ var require_generated_model_routing = __commonJS({
|
|
|
11727
11734
|
"claude-3-opus": ["google", "vercel"],
|
|
11728
11735
|
"claude-3.5-haiku": ["vercel"],
|
|
11729
11736
|
"claude-3.5-sonnet": ["vercel"],
|
|
11730
|
-
"claude-3.5-sonnet-20240620": ["vercel"],
|
|
11731
11737
|
"claude-3.7-sonnet": ["vercel"],
|
|
11732
11738
|
"claude-4-opus": ["vercel"],
|
|
11733
11739
|
"claude-4-sonnet": ["vercel"],
|
|
@@ -12000,7 +12006,6 @@ var require_generated_model_routing = __commonJS({
|
|
|
12000
12006
|
"llama-4-scout": ["vercel"],
|
|
12001
12007
|
"Llama-4-Scout-17B-16E-Instruct": ["togetherai"],
|
|
12002
12008
|
"longcat-flash-chat": ["vercel"],
|
|
12003
|
-
"longcat-flash-thinking": ["vercel"],
|
|
12004
12009
|
"longcat-flash-thinking-2601": ["vercel"],
|
|
12005
12010
|
"magistral-medium": ["vercel"],
|
|
12006
12011
|
"magistral-small": ["vercel"],
|
|
@@ -12451,7 +12456,6 @@ var require_generated_model_routing = __commonJS({
|
|
|
12451
12456
|
"llama3-1-70b": ["vercel"],
|
|
12452
12457
|
"llama3-1-8b": ["vercel"],
|
|
12453
12458
|
"llama3-3-70b": ["vercel"],
|
|
12454
|
-
"longcat-flash": ["vercel"],
|
|
12455
12459
|
"longcat-flash-chat": ["vercel"],
|
|
12456
12460
|
"longcat-flash-thinking-2601": ["vercel"],
|
|
12457
12461
|
"magistral-medium": ["vercel"],
|
|
@@ -12678,7 +12682,7 @@ var require_generated_model_routing = __commonJS({
|
|
|
12678
12682
|
"claude-3-5-sonnet": {
|
|
12679
12683
|
"bedrock": "bedrock/claude-3-5-sonnet",
|
|
12680
12684
|
"google": "google/claude-3-5-sonnet",
|
|
12681
|
-
"vercel": "anthropic/claude-3.5-sonnet
|
|
12685
|
+
"vercel": "anthropic/claude-3.5-sonnet"
|
|
12682
12686
|
},
|
|
12683
12687
|
"claude-3-7-sonnet": {
|
|
12684
12688
|
"bedrock": "bedrock/claude-3-7-sonnet",
|
|
@@ -12703,9 +12707,6 @@ var require_generated_model_routing = __commonJS({
|
|
|
12703
12707
|
"claude-3.5-sonnet": {
|
|
12704
12708
|
"vercel": "anthropic/claude-3.5-sonnet"
|
|
12705
12709
|
},
|
|
12706
|
-
"claude-3.5-sonnet-20240620": {
|
|
12707
|
-
"vercel": "anthropic/claude-3.5-sonnet-20240620"
|
|
12708
|
-
},
|
|
12709
12710
|
"claude-3.7-sonnet": {
|
|
12710
12711
|
"vercel": "anthropic/claude-3.7-sonnet"
|
|
12711
12712
|
},
|
|
@@ -13865,15 +13866,9 @@ var require_generated_model_routing = __commonJS({
|
|
|
13865
13866
|
"llama3-3-70b": {
|
|
13866
13867
|
"vercel": "meta/llama-3-3-70b"
|
|
13867
13868
|
},
|
|
13868
|
-
"longcat-flash": {
|
|
13869
|
-
"vercel": "meituan/longcat-flash-thinking"
|
|
13870
|
-
},
|
|
13871
13869
|
"longcat-flash-chat": {
|
|
13872
13870
|
"vercel": "meituan/longcat-flash-chat"
|
|
13873
13871
|
},
|
|
13874
|
-
"longcat-flash-thinking": {
|
|
13875
|
-
"vercel": "meituan/longcat-flash-thinking"
|
|
13876
|
-
},
|
|
13877
13872
|
"longcat-flash-thinking-2601": {
|
|
13878
13873
|
"vercel": "meituan/longcat-flash-thinking-2601"
|
|
13879
13874
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/cli",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.3",
|
|
4
4
|
"description": "Command-line interface for Runtype AI platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"uuid": "^9.0.1",
|
|
23
23
|
"micromatch": "^4.0.8",
|
|
24
24
|
"yaml": "^2.8.3",
|
|
25
|
-
"@runtypelabs/sdk": "1.13.3",
|
|
26
25
|
"@runtypelabs/ink-components": "0.3.1",
|
|
27
|
-
"@runtypelabs/terminal-animations": "0.2.0"
|
|
26
|
+
"@runtypelabs/terminal-animations": "0.2.0",
|
|
27
|
+
"@runtypelabs/sdk": "1.13.3"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/micromatch": "^4.0.9",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"tsx": "^4.7.1",
|
|
38
38
|
"typescript": "^5.3.3",
|
|
39
39
|
"vitest": "^4.0.18",
|
|
40
|
-
"@runtypelabs/shared": "1.
|
|
40
|
+
"@runtypelabs/shared": "1.3.0"
|
|
41
41
|
},
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=18.0.0"
|