@roo-code/types 1.40.0 → 1.41.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/dist/index.cjs +254 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6090 -866
- package/dist/index.d.ts +6090 -866
- package/dist/index.js +243 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -513,6 +513,66 @@ var BEDROCK_REGIONS = [
|
|
|
513
513
|
{ value: "us-gov-west-1", label: "us-gov-west-1" }
|
|
514
514
|
].sort((a, b) => a.value.localeCompare(b.value));
|
|
515
515
|
|
|
516
|
+
// src/providers/cerebras.ts
|
|
517
|
+
var cerebrasDefaultModelId = "qwen-3-coder-480b-free";
|
|
518
|
+
var cerebrasModels = {
|
|
519
|
+
"qwen-3-coder-480b-free": {
|
|
520
|
+
maxTokens: 4e4,
|
|
521
|
+
contextWindow: 64e3,
|
|
522
|
+
supportsImages: false,
|
|
523
|
+
supportsPromptCache: false,
|
|
524
|
+
inputPrice: 0,
|
|
525
|
+
outputPrice: 0,
|
|
526
|
+
description: "SOTA coding model with ~2000 tokens/s ($0 free tier)\n\n\u2022 Use this if you don't have a Cerebras subscription\n\u2022 64K context window\n\u2022 Rate limits: 150K TPM, 1M TPH/TPD, 10 RPM, 100 RPH/RPD\n\nUpgrade for higher limits: [https://cloud.cerebras.ai/?utm=roocode](https://cloud.cerebras.ai/?utm=roocode)"
|
|
527
|
+
},
|
|
528
|
+
"qwen-3-coder-480b": {
|
|
529
|
+
maxTokens: 4e4,
|
|
530
|
+
contextWindow: 128e3,
|
|
531
|
+
supportsImages: false,
|
|
532
|
+
supportsPromptCache: false,
|
|
533
|
+
inputPrice: 0,
|
|
534
|
+
outputPrice: 0,
|
|
535
|
+
description: "SOTA coding model with ~2000 tokens/s ($50/$250 paid tiers)\n\n\u2022 Use this if you have a Cerebras subscription\n\u2022 131K context window with higher rate limits"
|
|
536
|
+
},
|
|
537
|
+
"qwen-3-235b-a22b-instruct-2507": {
|
|
538
|
+
maxTokens: 64e3,
|
|
539
|
+
contextWindow: 64e3,
|
|
540
|
+
supportsImages: false,
|
|
541
|
+
supportsPromptCache: false,
|
|
542
|
+
inputPrice: 0,
|
|
543
|
+
outputPrice: 0,
|
|
544
|
+
description: "Intelligent model with ~1400 tokens/s"
|
|
545
|
+
},
|
|
546
|
+
"llama-3.3-70b": {
|
|
547
|
+
maxTokens: 64e3,
|
|
548
|
+
contextWindow: 64e3,
|
|
549
|
+
supportsImages: false,
|
|
550
|
+
supportsPromptCache: false,
|
|
551
|
+
inputPrice: 0,
|
|
552
|
+
outputPrice: 0,
|
|
553
|
+
description: "Powerful model with ~2600 tokens/s"
|
|
554
|
+
},
|
|
555
|
+
"qwen-3-32b": {
|
|
556
|
+
maxTokens: 64e3,
|
|
557
|
+
contextWindow: 64e3,
|
|
558
|
+
supportsImages: false,
|
|
559
|
+
supportsPromptCache: false,
|
|
560
|
+
inputPrice: 0,
|
|
561
|
+
outputPrice: 0,
|
|
562
|
+
description: "SOTA coding performance with ~2500 tokens/s"
|
|
563
|
+
},
|
|
564
|
+
"qwen-3-235b-a22b-thinking-2507": {
|
|
565
|
+
maxTokens: 4e4,
|
|
566
|
+
contextWindow: 65e3,
|
|
567
|
+
supportsImages: false,
|
|
568
|
+
supportsPromptCache: false,
|
|
569
|
+
inputPrice: 0,
|
|
570
|
+
outputPrice: 0,
|
|
571
|
+
description: "SOTA performance with ~1500 tokens/s",
|
|
572
|
+
supportsReasoningEffort: true
|
|
573
|
+
}
|
|
574
|
+
};
|
|
575
|
+
|
|
516
576
|
// src/providers/chutes.ts
|
|
517
577
|
var chutesDefaultModelId = "deepseek-ai/DeepSeek-R1-0528";
|
|
518
578
|
var chutesModels = {
|
|
@@ -733,6 +793,15 @@ var chutesModels = {
|
|
|
733
793
|
inputPrice: 0,
|
|
734
794
|
outputPrice: 0,
|
|
735
795
|
description: "GLM-4.5-Air model with 151,329 token context window and 106B total parameters with 12B activated."
|
|
796
|
+
},
|
|
797
|
+
"zai-org/GLM-4.5-FP8": {
|
|
798
|
+
maxTokens: 32768,
|
|
799
|
+
contextWindow: 131072,
|
|
800
|
+
supportsImages: false,
|
|
801
|
+
supportsPromptCache: false,
|
|
802
|
+
inputPrice: 0,
|
|
803
|
+
outputPrice: 0,
|
|
804
|
+
description: "GLM-4.5-FP8 model with 128k token context window, optimized for agent-based applications with MoE architecture."
|
|
736
805
|
}
|
|
737
806
|
};
|
|
738
807
|
|
|
@@ -742,7 +811,7 @@ function convertModelNameForVertex(modelName) {
|
|
|
742
811
|
return modelName.replace(VERTEX_DATE_PATTERN, "@$1");
|
|
743
812
|
}
|
|
744
813
|
var claudeCodeDefaultModelId = "claude-sonnet-4-20250514";
|
|
745
|
-
var CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS =
|
|
814
|
+
var CLAUDE_CODE_DEFAULT_MAX_OUTPUT_TOKENS = 16e3;
|
|
746
815
|
function getClaudeCodeModelId(baseModelId, useVertex = false) {
|
|
747
816
|
return useVertex ? convertModelNameForVertex(baseModelId) : baseModelId;
|
|
748
817
|
}
|
|
@@ -1696,6 +1765,84 @@ var requestyDefaultModelInfo = {
|
|
|
1696
1765
|
description: "The best coding model, optimized by Requesty, and automatically routed to the fastest provider. Claude 4 Sonnet is an advanced large language model with improved reasoning, coding, and problem-solving capabilities."
|
|
1697
1766
|
};
|
|
1698
1767
|
|
|
1768
|
+
// src/providers/sambanova.ts
|
|
1769
|
+
var sambaNovaDefaultModelId = "Meta-Llama-3.3-70B-Instruct";
|
|
1770
|
+
var sambaNovaModels = {
|
|
1771
|
+
"Meta-Llama-3.1-8B-Instruct": {
|
|
1772
|
+
maxTokens: 8192,
|
|
1773
|
+
contextWindow: 16384,
|
|
1774
|
+
supportsImages: false,
|
|
1775
|
+
supportsPromptCache: false,
|
|
1776
|
+
inputPrice: 0.1,
|
|
1777
|
+
outputPrice: 0.2,
|
|
1778
|
+
description: "Meta Llama 3.1 8B Instruct model with 16K context window."
|
|
1779
|
+
},
|
|
1780
|
+
"Meta-Llama-3.3-70B-Instruct": {
|
|
1781
|
+
maxTokens: 8192,
|
|
1782
|
+
contextWindow: 131072,
|
|
1783
|
+
supportsImages: false,
|
|
1784
|
+
supportsPromptCache: false,
|
|
1785
|
+
inputPrice: 0.6,
|
|
1786
|
+
outputPrice: 1.2,
|
|
1787
|
+
description: "Meta Llama 3.3 70B Instruct model with 128K context window."
|
|
1788
|
+
},
|
|
1789
|
+
"DeepSeek-R1": {
|
|
1790
|
+
maxTokens: 8192,
|
|
1791
|
+
contextWindow: 32768,
|
|
1792
|
+
supportsImages: false,
|
|
1793
|
+
supportsPromptCache: false,
|
|
1794
|
+
supportsReasoningBudget: true,
|
|
1795
|
+
inputPrice: 5,
|
|
1796
|
+
outputPrice: 7,
|
|
1797
|
+
description: "DeepSeek R1 reasoning model with 32K context window."
|
|
1798
|
+
},
|
|
1799
|
+
"DeepSeek-V3-0324": {
|
|
1800
|
+
maxTokens: 8192,
|
|
1801
|
+
contextWindow: 32768,
|
|
1802
|
+
supportsImages: false,
|
|
1803
|
+
supportsPromptCache: false,
|
|
1804
|
+
inputPrice: 3,
|
|
1805
|
+
outputPrice: 4.5,
|
|
1806
|
+
description: "DeepSeek V3 model with 32K context window."
|
|
1807
|
+
},
|
|
1808
|
+
"DeepSeek-R1-Distill-Llama-70B": {
|
|
1809
|
+
maxTokens: 8192,
|
|
1810
|
+
contextWindow: 131072,
|
|
1811
|
+
supportsImages: false,
|
|
1812
|
+
supportsPromptCache: false,
|
|
1813
|
+
inputPrice: 0.7,
|
|
1814
|
+
outputPrice: 1.4,
|
|
1815
|
+
description: "DeepSeek R1 distilled Llama 70B model with 128K context window."
|
|
1816
|
+
},
|
|
1817
|
+
"Llama-4-Maverick-17B-128E-Instruct": {
|
|
1818
|
+
maxTokens: 8192,
|
|
1819
|
+
contextWindow: 131072,
|
|
1820
|
+
supportsImages: true,
|
|
1821
|
+
supportsPromptCache: false,
|
|
1822
|
+
inputPrice: 0.63,
|
|
1823
|
+
outputPrice: 1.8,
|
|
1824
|
+
description: "Meta Llama 4 Maverick 17B 128E Instruct model with 128K context window."
|
|
1825
|
+
},
|
|
1826
|
+
"Llama-3.3-Swallow-70B-Instruct-v0.4": {
|
|
1827
|
+
maxTokens: 8192,
|
|
1828
|
+
contextWindow: 16384,
|
|
1829
|
+
supportsImages: false,
|
|
1830
|
+
supportsPromptCache: false,
|
|
1831
|
+
inputPrice: 0.6,
|
|
1832
|
+
outputPrice: 1.2,
|
|
1833
|
+
description: "Tokyotech Llama 3.3 Swallow 70B Instruct v0.4 model with 16K context window."
|
|
1834
|
+
},
|
|
1835
|
+
"Qwen3-32B": {
|
|
1836
|
+
maxTokens: 8192,
|
|
1837
|
+
contextWindow: 8192,
|
|
1838
|
+
supportsImages: false,
|
|
1839
|
+
supportsPromptCache: false,
|
|
1840
|
+
inputPrice: 0.4,
|
|
1841
|
+
outputPrice: 0.8,
|
|
1842
|
+
description: "Alibaba Qwen 3 32B model with 8K context window."
|
|
1843
|
+
}
|
|
1844
|
+
};
|
|
1845
|
+
|
|
1699
1846
|
// src/providers/unbound.ts
|
|
1700
1847
|
var unboundDefaultModelId = "anthropic/claude-3-7-sonnet-20250219";
|
|
1701
1848
|
var unboundDefaultModelInfo = {
|
|
@@ -2253,6 +2400,59 @@ var xaiModels = {
|
|
|
2253
2400
|
}
|
|
2254
2401
|
};
|
|
2255
2402
|
|
|
2403
|
+
// src/providers/doubao.ts
|
|
2404
|
+
var doubaoDefaultModelId = "doubao-seed-1-6-250615";
|
|
2405
|
+
var doubaoModels = {
|
|
2406
|
+
"doubao-seed-1-6-250615": {
|
|
2407
|
+
maxTokens: 32768,
|
|
2408
|
+
contextWindow: 128e3,
|
|
2409
|
+
supportsImages: true,
|
|
2410
|
+
supportsPromptCache: true,
|
|
2411
|
+
inputPrice: 1e-4,
|
|
2412
|
+
// $0.0001 per million tokens (cache miss)
|
|
2413
|
+
outputPrice: 4e-4,
|
|
2414
|
+
// $0.0004 per million tokens
|
|
2415
|
+
cacheWritesPrice: 1e-4,
|
|
2416
|
+
// $0.0001 per million tokens (cache miss)
|
|
2417
|
+
cacheReadsPrice: 2e-5,
|
|
2418
|
+
// $0.00002 per million tokens (cache hit)
|
|
2419
|
+
description: `Doubao Seed 1.6 is a powerful model designed for high-performance tasks with extensive context handling.`
|
|
2420
|
+
},
|
|
2421
|
+
"doubao-seed-1-6-thinking-250715": {
|
|
2422
|
+
maxTokens: 32768,
|
|
2423
|
+
contextWindow: 128e3,
|
|
2424
|
+
supportsImages: true,
|
|
2425
|
+
supportsPromptCache: true,
|
|
2426
|
+
inputPrice: 2e-4,
|
|
2427
|
+
// $0.0002 per million tokens
|
|
2428
|
+
outputPrice: 8e-4,
|
|
2429
|
+
// $0.0008 per million tokens
|
|
2430
|
+
cacheWritesPrice: 2e-4,
|
|
2431
|
+
// $0.0002 per million
|
|
2432
|
+
cacheReadsPrice: 4e-5,
|
|
2433
|
+
// $0.00004 per million tokens (cache hit)
|
|
2434
|
+
description: `Doubao Seed 1.6 Thinking is optimized for reasoning tasks, providing enhanced performance in complex problem-solving scenarios.`
|
|
2435
|
+
},
|
|
2436
|
+
"doubao-seed-1-6-flash-250715": {
|
|
2437
|
+
maxTokens: 32768,
|
|
2438
|
+
contextWindow: 128e3,
|
|
2439
|
+
supportsImages: true,
|
|
2440
|
+
supportsPromptCache: true,
|
|
2441
|
+
inputPrice: 15e-5,
|
|
2442
|
+
// $0.00015 per million tokens
|
|
2443
|
+
outputPrice: 6e-4,
|
|
2444
|
+
// $0.0006 per million tokens
|
|
2445
|
+
cacheWritesPrice: 15e-5,
|
|
2446
|
+
// $0.00015 per million
|
|
2447
|
+
cacheReadsPrice: 3e-5,
|
|
2448
|
+
// $0.00003 per million tokens (cache hit)
|
|
2449
|
+
description: `Doubao Seed 1.6 Flash is tailored for speed and efficiency, making it ideal for applications requiring rapid responses.`
|
|
2450
|
+
}
|
|
2451
|
+
};
|
|
2452
|
+
var doubaoDefaultModelInfo = doubaoModels[doubaoDefaultModelId];
|
|
2453
|
+
var DOUBAO_API_BASE_URL = "https://ark.cn-beijing.volces.com/api/v3";
|
|
2454
|
+
var DOUBAO_API_CHAT_PATH = "/chat/completions";
|
|
2455
|
+
|
|
2256
2456
|
// src/codebase-index.ts
|
|
2257
2457
|
import { z } from "zod";
|
|
2258
2458
|
var CODEBASE_INDEX_DEFAULTS = {
|
|
@@ -2360,6 +2560,7 @@ var providerNames = [
|
|
|
2360
2560
|
"mistral",
|
|
2361
2561
|
"moonshot",
|
|
2362
2562
|
"deepseek",
|
|
2563
|
+
"doubao",
|
|
2363
2564
|
"unbound",
|
|
2364
2565
|
"requesty",
|
|
2365
2566
|
"human-relay",
|
|
@@ -2368,7 +2569,9 @@ var providerNames = [
|
|
|
2368
2569
|
"groq",
|
|
2369
2570
|
"chutes",
|
|
2370
2571
|
"litellm",
|
|
2371
|
-
"huggingface"
|
|
2572
|
+
"huggingface",
|
|
2573
|
+
"cerebras",
|
|
2574
|
+
"sambanova"
|
|
2372
2575
|
];
|
|
2373
2576
|
var providerNamesSchema = z3.enum(providerNames);
|
|
2374
2577
|
var providerSettingsEntrySchema = z3.object({
|
|
@@ -2490,6 +2693,10 @@ var deepSeekSchema = apiModelIdProviderModelSchema.extend({
|
|
|
2490
2693
|
deepSeekBaseUrl: z3.string().optional(),
|
|
2491
2694
|
deepSeekApiKey: z3.string().optional()
|
|
2492
2695
|
});
|
|
2696
|
+
var doubaoSchema = apiModelIdProviderModelSchema.extend({
|
|
2697
|
+
doubaoBaseUrl: z3.string().optional(),
|
|
2698
|
+
doubaoApiKey: z3.string().optional()
|
|
2699
|
+
});
|
|
2493
2700
|
var moonshotSchema = apiModelIdProviderModelSchema.extend({
|
|
2494
2701
|
moonshotBaseUrl: z3.union([z3.literal("https://api.moonshot.ai/v1"), z3.literal("https://api.moonshot.cn/v1")]).optional(),
|
|
2495
2702
|
moonshotApiKey: z3.string().optional()
|
|
@@ -2526,6 +2733,12 @@ var litellmSchema = baseProviderSettingsSchema.extend({
|
|
|
2526
2733
|
litellmModelId: z3.string().optional(),
|
|
2527
2734
|
litellmUsePromptCache: z3.boolean().optional()
|
|
2528
2735
|
});
|
|
2736
|
+
var cerebrasSchema = apiModelIdProviderModelSchema.extend({
|
|
2737
|
+
cerebrasApiKey: z3.string().optional()
|
|
2738
|
+
});
|
|
2739
|
+
var sambaNovaSchema = apiModelIdProviderModelSchema.extend({
|
|
2740
|
+
sambaNovaApiKey: z3.string().optional()
|
|
2741
|
+
});
|
|
2529
2742
|
var defaultSchema = z3.object({
|
|
2530
2743
|
apiProvider: z3.undefined()
|
|
2531
2744
|
});
|
|
@@ -2545,6 +2758,7 @@ var providerSettingsSchemaDiscriminated = z3.discriminatedUnion("apiProvider", [
|
|
|
2545
2758
|
openAiNativeSchema.merge(z3.object({ apiProvider: z3.literal("openai-native") })),
|
|
2546
2759
|
mistralSchema.merge(z3.object({ apiProvider: z3.literal("mistral") })),
|
|
2547
2760
|
deepSeekSchema.merge(z3.object({ apiProvider: z3.literal("deepseek") })),
|
|
2761
|
+
doubaoSchema.merge(z3.object({ apiProvider: z3.literal("doubao") })),
|
|
2548
2762
|
moonshotSchema.merge(z3.object({ apiProvider: z3.literal("moonshot") })),
|
|
2549
2763
|
unboundSchema.merge(z3.object({ apiProvider: z3.literal("unbound") })),
|
|
2550
2764
|
requestySchema.merge(z3.object({ apiProvider: z3.literal("requesty") })),
|
|
@@ -2555,6 +2769,8 @@ var providerSettingsSchemaDiscriminated = z3.discriminatedUnion("apiProvider", [
|
|
|
2555
2769
|
huggingFaceSchema.merge(z3.object({ apiProvider: z3.literal("huggingface") })),
|
|
2556
2770
|
chutesSchema.merge(z3.object({ apiProvider: z3.literal("chutes") })),
|
|
2557
2771
|
litellmSchema.merge(z3.object({ apiProvider: z3.literal("litellm") })),
|
|
2772
|
+
cerebrasSchema.merge(z3.object({ apiProvider: z3.literal("cerebras") })),
|
|
2773
|
+
sambaNovaSchema.merge(z3.object({ apiProvider: z3.literal("sambanova") })),
|
|
2558
2774
|
defaultSchema
|
|
2559
2775
|
]);
|
|
2560
2776
|
var providerSettingsSchema = z3.object({
|
|
@@ -2574,6 +2790,7 @@ var providerSettingsSchema = z3.object({
|
|
|
2574
2790
|
...openAiNativeSchema.shape,
|
|
2575
2791
|
...mistralSchema.shape,
|
|
2576
2792
|
...deepSeekSchema.shape,
|
|
2793
|
+
...doubaoSchema.shape,
|
|
2577
2794
|
...moonshotSchema.shape,
|
|
2578
2795
|
...unboundSchema.shape,
|
|
2579
2796
|
...requestySchema.shape,
|
|
@@ -2584,8 +2801,14 @@ var providerSettingsSchema = z3.object({
|
|
|
2584
2801
|
...huggingFaceSchema.shape,
|
|
2585
2802
|
...chutesSchema.shape,
|
|
2586
2803
|
...litellmSchema.shape,
|
|
2804
|
+
...cerebrasSchema.shape,
|
|
2805
|
+
...sambaNovaSchema.shape,
|
|
2587
2806
|
...codebaseIndexProviderSchema.shape
|
|
2588
2807
|
});
|
|
2808
|
+
var providerSettingsWithIdSchema = providerSettingsSchema.extend({ id: z3.string().optional() });
|
|
2809
|
+
var discriminatedProviderSettingsWithIdSchema = providerSettingsSchemaDiscriminated.and(
|
|
2810
|
+
z3.object({ id: z3.string().optional() })
|
|
2811
|
+
);
|
|
2589
2812
|
var PROVIDER_SETTINGS_KEYS = providerSettingsSchema.keyof().options;
|
|
2590
2813
|
var MODEL_ID_KEYS = [
|
|
2591
2814
|
"apiModelId",
|
|
@@ -3101,6 +3324,7 @@ var globalSettingsSchema = z11.object({
|
|
|
3101
3324
|
commandTimeoutAllowlist: z11.array(z11.string()).optional(),
|
|
3102
3325
|
preventCompletionWithOpenTodos: z11.boolean().optional(),
|
|
3103
3326
|
allowedMaxRequests: z11.number().nullish(),
|
|
3327
|
+
allowedMaxCost: z11.number().nullish(),
|
|
3104
3328
|
autoCondenseContext: z11.boolean().optional(),
|
|
3105
3329
|
autoCondenseContextPercent: z11.number().optional(),
|
|
3106
3330
|
maxConcurrentFileReads: z11.number().optional(),
|
|
@@ -3159,6 +3383,7 @@ var globalSettingsSchema = z11.object({
|
|
|
3159
3383
|
customModePrompts: customModePromptsSchema.optional(),
|
|
3160
3384
|
customSupportPrompts: customSupportPromptsSchema.optional(),
|
|
3161
3385
|
enhancementApiConfigId: z11.string().optional(),
|
|
3386
|
+
includeTaskHistoryInEnhance: z11.boolean().optional(),
|
|
3162
3387
|
historyPreviewCollapsed: z11.boolean().optional(),
|
|
3163
3388
|
profileThresholds: z11.record(z11.string(), z11.number()).optional(),
|
|
3164
3389
|
hasOpenedModeSelector: z11.boolean().optional(),
|
|
@@ -3178,6 +3403,7 @@ var SECRET_STATE_KEYS = [
|
|
|
3178
3403
|
"openAiApiKey",
|
|
3179
3404
|
"geminiApiKey",
|
|
3180
3405
|
"openAiNativeApiKey",
|
|
3406
|
+
"cerebrasApiKey",
|
|
3181
3407
|
"deepSeekApiKey",
|
|
3182
3408
|
"moonshotApiKey",
|
|
3183
3409
|
"mistralApiKey",
|
|
@@ -3192,7 +3418,8 @@ var SECRET_STATE_KEYS = [
|
|
|
3192
3418
|
"codebaseIndexOpenAiCompatibleApiKey",
|
|
3193
3419
|
"codebaseIndexGeminiApiKey",
|
|
3194
3420
|
"codebaseIndexMistralApiKey",
|
|
3195
|
-
"huggingFaceApiKey"
|
|
3421
|
+
"huggingFaceApiKey",
|
|
3422
|
+
"sambaNovaApiKey"
|
|
3196
3423
|
];
|
|
3197
3424
|
var isSecretStateKey = (key) => SECRET_STATE_KEYS.includes(key);
|
|
3198
3425
|
var GLOBAL_STATE_KEYS = [...GLOBAL_SETTINGS_KEYS, ...PROVIDER_SETTINGS_KEYS].filter(
|
|
@@ -3361,7 +3588,8 @@ var organizationSettingsSchema = z13.object({
|
|
|
3361
3588
|
allowList: organizationAllowListSchema,
|
|
3362
3589
|
hiddenMcps: z13.array(z13.string()).optional(),
|
|
3363
3590
|
hideMarketplaceMcps: z13.boolean().optional(),
|
|
3364
|
-
mcps: z13.array(mcpMarketplaceItemSchema).optional()
|
|
3591
|
+
mcps: z13.array(mcpMarketplaceItemSchema).optional(),
|
|
3592
|
+
providerProfiles: z13.record(z13.string(), discriminatedProviderSettingsWithIdSchema).optional()
|
|
3365
3593
|
});
|
|
3366
3594
|
var ORGANIZATION_ALLOW_ALL = {
|
|
3367
3595
|
allowAll: true,
|
|
@@ -3652,6 +3880,8 @@ export {
|
|
|
3652
3880
|
DEFAULT_MODES,
|
|
3653
3881
|
DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT,
|
|
3654
3882
|
DEFAULT_WRITE_DELAY_MS,
|
|
3883
|
+
DOUBAO_API_BASE_URL,
|
|
3884
|
+
DOUBAO_API_CHAT_PATH,
|
|
3655
3885
|
EVALS_SETTINGS,
|
|
3656
3886
|
EVALS_TIMEOUT,
|
|
3657
3887
|
GLAMA_DEFAULT_TEMPERATURE,
|
|
@@ -3695,6 +3925,8 @@ export {
|
|
|
3695
3925
|
bedrockDefaultModelId,
|
|
3696
3926
|
bedrockDefaultPromptRouterModelId,
|
|
3697
3927
|
bedrockModels,
|
|
3928
|
+
cerebrasDefaultModelId,
|
|
3929
|
+
cerebrasModels,
|
|
3698
3930
|
chutesDefaultModelId,
|
|
3699
3931
|
chutesModels,
|
|
3700
3932
|
claudeCodeDefaultModelId,
|
|
@@ -3717,6 +3949,10 @@ export {
|
|
|
3717
3949
|
customSupportPromptsSchema,
|
|
3718
3950
|
deepSeekDefaultModelId,
|
|
3719
3951
|
deepSeekModels,
|
|
3952
|
+
discriminatedProviderSettingsWithIdSchema,
|
|
3953
|
+
doubaoDefaultModelId,
|
|
3954
|
+
doubaoDefaultModelInfo,
|
|
3955
|
+
doubaoModels,
|
|
3720
3956
|
experimentIds,
|
|
3721
3957
|
experimentIdsSchema,
|
|
3722
3958
|
experimentsSchema,
|
|
@@ -3780,6 +4016,7 @@ export {
|
|
|
3780
4016
|
providerSettingsEntrySchema,
|
|
3781
4017
|
providerSettingsSchema,
|
|
3782
4018
|
providerSettingsSchemaDiscriminated,
|
|
4019
|
+
providerSettingsWithIdSchema,
|
|
3783
4020
|
reasoningEfforts,
|
|
3784
4021
|
reasoningEffortsSchema,
|
|
3785
4022
|
requestyDefaultModelId,
|
|
@@ -3787,6 +4024,8 @@ export {
|
|
|
3787
4024
|
rooCodeEventsSchema,
|
|
3788
4025
|
rooCodeSettingsSchema,
|
|
3789
4026
|
rooCodeTelemetryEventSchema,
|
|
4027
|
+
sambaNovaDefaultModelId,
|
|
4028
|
+
sambaNovaModels,
|
|
3790
4029
|
shareResponseSchema,
|
|
3791
4030
|
suggestionItemSchema,
|
|
3792
4031
|
taskCommandSchema,
|