@roo-code/types 1.36.0 → 1.38.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 +104 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +713 -116
- package/dist/index.d.ts +713 -116
- package/dist/index.js +99 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -653,6 +653,15 @@ var chutesModels = {
|
|
|
653
653
|
outputPrice: 0,
|
|
654
654
|
description: "DeepSeek V3 (0324) model."
|
|
655
655
|
},
|
|
656
|
+
"Qwen/Qwen3-235B-A22B-Instruct-2507": {
|
|
657
|
+
maxTokens: 32768,
|
|
658
|
+
contextWindow: 262144,
|
|
659
|
+
supportsImages: false,
|
|
660
|
+
supportsPromptCache: false,
|
|
661
|
+
inputPrice: 0,
|
|
662
|
+
outputPrice: 0,
|
|
663
|
+
description: "Qwen3 235B A22B Instruct 2507 model with 262K context window."
|
|
664
|
+
},
|
|
656
665
|
"Qwen/Qwen3-235B-A22B": {
|
|
657
666
|
maxTokens: 32768,
|
|
658
667
|
contextWindow: 40960,
|
|
@@ -1353,6 +1362,27 @@ var mistralModels = {
|
|
|
1353
1362
|
};
|
|
1354
1363
|
var MISTRAL_DEFAULT_TEMPERATURE = 0;
|
|
1355
1364
|
|
|
1365
|
+
// src/providers/moonshot.ts
|
|
1366
|
+
var moonshotDefaultModelId = "kimi-k2-0711-preview";
|
|
1367
|
+
var moonshotModels = {
|
|
1368
|
+
"kimi-k2-0711-preview": {
|
|
1369
|
+
maxTokens: 32e3,
|
|
1370
|
+
contextWindow: 131072,
|
|
1371
|
+
supportsImages: false,
|
|
1372
|
+
supportsPromptCache: true,
|
|
1373
|
+
inputPrice: 0.6,
|
|
1374
|
+
// $0.60 per million tokens (cache miss)
|
|
1375
|
+
outputPrice: 2.5,
|
|
1376
|
+
// $2.50 per million tokens
|
|
1377
|
+
cacheWritesPrice: 0,
|
|
1378
|
+
// $0 per million tokens (cache miss)
|
|
1379
|
+
cacheReadsPrice: 0.15,
|
|
1380
|
+
// $0.15 per million tokens (cache hit)
|
|
1381
|
+
description: `Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 billion activated parameters and 1 trillion total parameters.`
|
|
1382
|
+
}
|
|
1383
|
+
};
|
|
1384
|
+
var MOONSHOT_DEFAULT_TEMPERATURE = 0.6;
|
|
1385
|
+
|
|
1356
1386
|
// src/providers/ollama.ts
|
|
1357
1387
|
var ollamaDefaultModelId = "devstral:24b";
|
|
1358
1388
|
var ollamaDefaultModelInfo = {
|
|
@@ -1929,6 +1959,15 @@ var vertexModels = {
|
|
|
1929
1959
|
cacheWritesPrice: 1,
|
|
1930
1960
|
maxThinkingTokens: 24576,
|
|
1931
1961
|
supportsReasoningBudget: true
|
|
1962
|
+
},
|
|
1963
|
+
"llama-4-maverick-17b-128e-instruct-maas": {
|
|
1964
|
+
maxTokens: 8192,
|
|
1965
|
+
contextWindow: 131072,
|
|
1966
|
+
supportsImages: false,
|
|
1967
|
+
supportsPromptCache: false,
|
|
1968
|
+
inputPrice: 0.35,
|
|
1969
|
+
outputPrice: 1.15,
|
|
1970
|
+
description: "Meta Llama 4 Maverick 17B Instruct model, 128K context."
|
|
1932
1971
|
}
|
|
1933
1972
|
};
|
|
1934
1973
|
var VERTEX_REGIONS = [
|
|
@@ -2210,7 +2249,7 @@ var CODEBASE_INDEX_DEFAULTS = {
|
|
|
2210
2249
|
var codebaseIndexConfigSchema = z.object({
|
|
2211
2250
|
codebaseIndexEnabled: z.boolean().optional(),
|
|
2212
2251
|
codebaseIndexQdrantUrl: z.string().optional(),
|
|
2213
|
-
codebaseIndexEmbedderProvider: z.enum(["openai", "ollama", "openai-compatible", "gemini"]).optional(),
|
|
2252
|
+
codebaseIndexEmbedderProvider: z.enum(["openai", "ollama", "openai-compatible", "gemini", "mistral"]).optional(),
|
|
2214
2253
|
codebaseIndexEmbedderBaseUrl: z.string().optional(),
|
|
2215
2254
|
codebaseIndexEmbedderModelId: z.string().optional(),
|
|
2216
2255
|
codebaseIndexEmbedderModelDimension: z.number().optional(),
|
|
@@ -2224,7 +2263,8 @@ var codebaseIndexModelsSchema = z.object({
|
|
|
2224
2263
|
openai: z.record(z.string(), z.object({ dimension: z.number() })).optional(),
|
|
2225
2264
|
ollama: z.record(z.string(), z.object({ dimension: z.number() })).optional(),
|
|
2226
2265
|
"openai-compatible": z.record(z.string(), z.object({ dimension: z.number() })).optional(),
|
|
2227
|
-
gemini: z.record(z.string(), z.object({ dimension: z.number() })).optional()
|
|
2266
|
+
gemini: z.record(z.string(), z.object({ dimension: z.number() })).optional(),
|
|
2267
|
+
mistral: z.record(z.string(), z.object({ dimension: z.number() })).optional()
|
|
2228
2268
|
});
|
|
2229
2269
|
var codebaseIndexProviderSchema = z.object({
|
|
2230
2270
|
codeIndexOpenAiKey: z.string().optional(),
|
|
@@ -2232,7 +2272,8 @@ var codebaseIndexProviderSchema = z.object({
|
|
|
2232
2272
|
codebaseIndexOpenAiCompatibleBaseUrl: z.string().optional(),
|
|
2233
2273
|
codebaseIndexOpenAiCompatibleApiKey: z.string().optional(),
|
|
2234
2274
|
codebaseIndexOpenAiCompatibleModelDimension: z.number().optional(),
|
|
2235
|
-
codebaseIndexGeminiApiKey: z.string().optional()
|
|
2275
|
+
codebaseIndexGeminiApiKey: z.string().optional(),
|
|
2276
|
+
codebaseIndexMistralApiKey: z.string().optional()
|
|
2236
2277
|
});
|
|
2237
2278
|
|
|
2238
2279
|
// src/cloud.ts
|
|
@@ -2298,6 +2339,7 @@ var providerNames = [
|
|
|
2298
2339
|
"gemini-cli",
|
|
2299
2340
|
"openai-native",
|
|
2300
2341
|
"mistral",
|
|
2342
|
+
"moonshot",
|
|
2301
2343
|
"deepseek",
|
|
2302
2344
|
"unbound",
|
|
2303
2345
|
"requesty",
|
|
@@ -2306,7 +2348,8 @@ var providerNames = [
|
|
|
2306
2348
|
"xai",
|
|
2307
2349
|
"groq",
|
|
2308
2350
|
"chutes",
|
|
2309
|
-
"litellm"
|
|
2351
|
+
"litellm",
|
|
2352
|
+
"huggingface"
|
|
2310
2353
|
];
|
|
2311
2354
|
var providerNamesSchema = z3.enum(providerNames);
|
|
2312
2355
|
var providerSettingsEntrySchema = z3.object({
|
|
@@ -2318,6 +2361,7 @@ var DEFAULT_CONSECUTIVE_MISTAKE_LIMIT = 3;
|
|
|
2318
2361
|
var baseProviderSettingsSchema = z3.object({
|
|
2319
2362
|
includeMaxTokens: z3.boolean().optional(),
|
|
2320
2363
|
diffEnabled: z3.boolean().optional(),
|
|
2364
|
+
todoListEnabled: z3.boolean().optional(),
|
|
2321
2365
|
fuzzyMatchThreshold: z3.number().optional(),
|
|
2322
2366
|
modelTemperature: z3.number().nullish(),
|
|
2323
2367
|
rateLimitSeconds: z3.number().optional(),
|
|
@@ -2423,6 +2467,10 @@ var deepSeekSchema = apiModelIdProviderModelSchema.extend({
|
|
|
2423
2467
|
deepSeekBaseUrl: z3.string().optional(),
|
|
2424
2468
|
deepSeekApiKey: z3.string().optional()
|
|
2425
2469
|
});
|
|
2470
|
+
var moonshotSchema = apiModelIdProviderModelSchema.extend({
|
|
2471
|
+
moonshotBaseUrl: z3.union([z3.literal("https://api.moonshot.ai/v1"), z3.literal("https://api.moonshot.cn/v1")]).optional(),
|
|
2472
|
+
moonshotApiKey: z3.string().optional()
|
|
2473
|
+
});
|
|
2426
2474
|
var unboundSchema = baseProviderSettingsSchema.extend({
|
|
2427
2475
|
unboundApiKey: z3.string().optional(),
|
|
2428
2476
|
unboundModelId: z3.string().optional()
|
|
@@ -2441,6 +2489,11 @@ var xaiSchema = apiModelIdProviderModelSchema.extend({
|
|
|
2441
2489
|
var groqSchema = apiModelIdProviderModelSchema.extend({
|
|
2442
2490
|
groqApiKey: z3.string().optional()
|
|
2443
2491
|
});
|
|
2492
|
+
var huggingFaceSchema = baseProviderSettingsSchema.extend({
|
|
2493
|
+
huggingFaceApiKey: z3.string().optional(),
|
|
2494
|
+
huggingFaceModelId: z3.string().optional(),
|
|
2495
|
+
huggingFaceInferenceProvider: z3.string().optional()
|
|
2496
|
+
});
|
|
2444
2497
|
var chutesSchema = apiModelIdProviderModelSchema.extend({
|
|
2445
2498
|
chutesApiKey: z3.string().optional()
|
|
2446
2499
|
});
|
|
@@ -2468,12 +2521,14 @@ var providerSettingsSchemaDiscriminated = z3.discriminatedUnion("apiProvider", [
|
|
|
2468
2521
|
openAiNativeSchema.merge(z3.object({ apiProvider: z3.literal("openai-native") })),
|
|
2469
2522
|
mistralSchema.merge(z3.object({ apiProvider: z3.literal("mistral") })),
|
|
2470
2523
|
deepSeekSchema.merge(z3.object({ apiProvider: z3.literal("deepseek") })),
|
|
2524
|
+
moonshotSchema.merge(z3.object({ apiProvider: z3.literal("moonshot") })),
|
|
2471
2525
|
unboundSchema.merge(z3.object({ apiProvider: z3.literal("unbound") })),
|
|
2472
2526
|
requestySchema.merge(z3.object({ apiProvider: z3.literal("requesty") })),
|
|
2473
2527
|
humanRelaySchema.merge(z3.object({ apiProvider: z3.literal("human-relay") })),
|
|
2474
2528
|
fakeAiSchema.merge(z3.object({ apiProvider: z3.literal("fake-ai") })),
|
|
2475
2529
|
xaiSchema.merge(z3.object({ apiProvider: z3.literal("xai") })),
|
|
2476
2530
|
groqSchema.merge(z3.object({ apiProvider: z3.literal("groq") })),
|
|
2531
|
+
huggingFaceSchema.merge(z3.object({ apiProvider: z3.literal("huggingface") })),
|
|
2477
2532
|
chutesSchema.merge(z3.object({ apiProvider: z3.literal("chutes") })),
|
|
2478
2533
|
litellmSchema.merge(z3.object({ apiProvider: z3.literal("litellm") })),
|
|
2479
2534
|
defaultSchema
|
|
@@ -2495,12 +2550,14 @@ var providerSettingsSchema = z3.object({
|
|
|
2495
2550
|
...openAiNativeSchema.shape,
|
|
2496
2551
|
...mistralSchema.shape,
|
|
2497
2552
|
...deepSeekSchema.shape,
|
|
2553
|
+
...moonshotSchema.shape,
|
|
2498
2554
|
...unboundSchema.shape,
|
|
2499
2555
|
...requestySchema.shape,
|
|
2500
2556
|
...humanRelaySchema.shape,
|
|
2501
2557
|
...fakeAiSchema.shape,
|
|
2502
2558
|
...xaiSchema.shape,
|
|
2503
2559
|
...groqSchema.shape,
|
|
2560
|
+
...huggingFaceSchema.shape,
|
|
2504
2561
|
...chutesSchema.shape,
|
|
2505
2562
|
...litellmSchema.shape,
|
|
2506
2563
|
...codebaseIndexProviderSchema.shape
|
|
@@ -2516,18 +2573,19 @@ var MODEL_ID_KEYS = [
|
|
|
2516
2573
|
"lmStudioDraftModelId",
|
|
2517
2574
|
"unboundModelId",
|
|
2518
2575
|
"requestyModelId",
|
|
2519
|
-
"litellmModelId"
|
|
2576
|
+
"litellmModelId",
|
|
2577
|
+
"huggingFaceModelId"
|
|
2520
2578
|
];
|
|
2521
2579
|
var getModelId = (settings) => {
|
|
2522
2580
|
const modelIdKey = MODEL_ID_KEYS.find((key) => settings[key]);
|
|
2523
2581
|
return modelIdKey ? settings[modelIdKey] : void 0;
|
|
2524
2582
|
};
|
|
2525
|
-
var ANTHROPIC_STYLE_PROVIDERS = ["anthropic", "claude-code"];
|
|
2583
|
+
var ANTHROPIC_STYLE_PROVIDERS = ["anthropic", "claude-code", "bedrock"];
|
|
2526
2584
|
var getApiProtocol = (provider, modelId) => {
|
|
2527
2585
|
if (provider && ANTHROPIC_STYLE_PROVIDERS.includes(provider)) {
|
|
2528
2586
|
return "anthropic";
|
|
2529
2587
|
}
|
|
2530
|
-
if (provider &&
|
|
2588
|
+
if (provider && provider === "vertex" && modelId && modelId.toLowerCase().includes("claude")) {
|
|
2531
2589
|
return "anthropic";
|
|
2532
2590
|
}
|
|
2533
2591
|
return "openai";
|
|
@@ -2937,6 +2995,8 @@ var languagesSchema = z10.enum(languages);
|
|
|
2937
2995
|
var isLanguage = (value) => languages.includes(value);
|
|
2938
2996
|
|
|
2939
2997
|
// src/global-settings.ts
|
|
2998
|
+
var DEFAULT_WRITE_DELAY_MS = 1e3;
|
|
2999
|
+
var DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT = 5e4;
|
|
2940
3000
|
var globalSettingsSchema = z11.object({
|
|
2941
3001
|
currentApiConfigName: z11.string().optional(),
|
|
2942
3002
|
listApiConfigMeta: z11.array(providerSettingsEntrySchema).optional(),
|
|
@@ -2952,7 +3012,7 @@ var globalSettingsSchema = z11.object({
|
|
|
2952
3012
|
alwaysAllowWrite: z11.boolean().optional(),
|
|
2953
3013
|
alwaysAllowWriteOutsideWorkspace: z11.boolean().optional(),
|
|
2954
3014
|
alwaysAllowWriteProtected: z11.boolean().optional(),
|
|
2955
|
-
writeDelayMs: z11.number().optional(),
|
|
3015
|
+
writeDelayMs: z11.number().min(0).optional(),
|
|
2956
3016
|
alwaysAllowBrowser: z11.boolean().optional(),
|
|
2957
3017
|
alwaysApproveResubmit: z11.boolean().optional(),
|
|
2958
3018
|
requestDelaySeconds: z11.number().optional(),
|
|
@@ -2972,6 +3032,16 @@ var globalSettingsSchema = z11.object({
|
|
|
2972
3032
|
autoCondenseContext: z11.boolean().optional(),
|
|
2973
3033
|
autoCondenseContextPercent: z11.number().optional(),
|
|
2974
3034
|
maxConcurrentFileReads: z11.number().optional(),
|
|
3035
|
+
/**
|
|
3036
|
+
* Whether to include diagnostic messages (errors, warnings) in tool outputs
|
|
3037
|
+
* @default true
|
|
3038
|
+
*/
|
|
3039
|
+
includeDiagnosticMessages: z11.boolean().optional(),
|
|
3040
|
+
/**
|
|
3041
|
+
* Maximum number of diagnostic messages to include in tool outputs
|
|
3042
|
+
* @default 50
|
|
3043
|
+
*/
|
|
3044
|
+
maxDiagnosticMessages: z11.number().optional(),
|
|
2975
3045
|
browserToolEnabled: z11.boolean().optional(),
|
|
2976
3046
|
browserViewportSize: z11.string().optional(),
|
|
2977
3047
|
screenshotQuality: z11.number().optional(),
|
|
@@ -2988,6 +3058,7 @@ var globalSettingsSchema = z11.object({
|
|
|
2988
3058
|
showRooIgnoredFiles: z11.boolean().optional(),
|
|
2989
3059
|
maxReadFileLine: z11.number().optional(),
|
|
2990
3060
|
terminalOutputLineLimit: z11.number().optional(),
|
|
3061
|
+
terminalOutputCharacterLimit: z11.number().optional(),
|
|
2991
3062
|
terminalShellIntegrationTimeout: z11.number().optional(),
|
|
2992
3063
|
terminalShellIntegrationDisabled: z11.boolean().optional(),
|
|
2993
3064
|
terminalCommandDelay: z11.number().optional(),
|
|
@@ -2997,6 +3068,7 @@ var globalSettingsSchema = z11.object({
|
|
|
2997
3068
|
terminalZshP10k: z11.boolean().optional(),
|
|
2998
3069
|
terminalZdotdir: z11.boolean().optional(),
|
|
2999
3070
|
terminalCompressProgressBar: z11.boolean().optional(),
|
|
3071
|
+
diagnosticsEnabled: z11.boolean().optional(),
|
|
3000
3072
|
rateLimitSeconds: z11.number().optional(),
|
|
3001
3073
|
diffEnabled: z11.boolean().optional(),
|
|
3002
3074
|
fuzzyMatchThreshold: z11.number().optional(),
|
|
@@ -3032,6 +3104,7 @@ var SECRET_STATE_KEYS = [
|
|
|
3032
3104
|
"geminiApiKey",
|
|
3033
3105
|
"openAiNativeApiKey",
|
|
3034
3106
|
"deepSeekApiKey",
|
|
3107
|
+
"moonshotApiKey",
|
|
3035
3108
|
"mistralApiKey",
|
|
3036
3109
|
"unboundApiKey",
|
|
3037
3110
|
"requestyApiKey",
|
|
@@ -3042,7 +3115,9 @@ var SECRET_STATE_KEYS = [
|
|
|
3042
3115
|
"codeIndexOpenAiKey",
|
|
3043
3116
|
"codeIndexQdrantApiKey",
|
|
3044
3117
|
"codebaseIndexOpenAiCompatibleApiKey",
|
|
3045
|
-
"codebaseIndexGeminiApiKey"
|
|
3118
|
+
"codebaseIndexGeminiApiKey",
|
|
3119
|
+
"codebaseIndexMistralApiKey",
|
|
3120
|
+
"huggingFaceApiKey"
|
|
3046
3121
|
];
|
|
3047
3122
|
var isSecretStateKey = (key) => SECRET_STATE_KEYS.includes(key);
|
|
3048
3123
|
var GLOBAL_STATE_KEYS = [...GLOBAL_SETTINGS_KEYS, ...PROVIDER_SETTINGS_KEYS].filter(
|
|
@@ -3072,7 +3147,7 @@ var EVALS_SETTINGS = {
|
|
|
3072
3147
|
alwaysAllowUpdateTodoList: true,
|
|
3073
3148
|
followupAutoApproveTimeoutMs: 0,
|
|
3074
3149
|
allowedCommands: ["*"],
|
|
3075
|
-
commandExecutionTimeout:
|
|
3150
|
+
commandExecutionTimeout: 20,
|
|
3076
3151
|
commandTimeoutAllowlist: [],
|
|
3077
3152
|
preventCompletionWithOpenTodos: false,
|
|
3078
3153
|
browserToolEnabled: false,
|
|
@@ -3084,6 +3159,7 @@ var EVALS_SETTINGS = {
|
|
|
3084
3159
|
soundEnabled: false,
|
|
3085
3160
|
soundVolume: 0.5,
|
|
3086
3161
|
terminalOutputLineLimit: 500,
|
|
3162
|
+
terminalOutputCharacterLimit: DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT,
|
|
3087
3163
|
terminalShellIntegrationTimeout: 3e4,
|
|
3088
3164
|
terminalCommandDelay: 0,
|
|
3089
3165
|
terminalPowershellCounter: false,
|
|
@@ -3093,6 +3169,7 @@ var EVALS_SETTINGS = {
|
|
|
3093
3169
|
terminalZdotdir: true,
|
|
3094
3170
|
terminalCompressProgressBar: true,
|
|
3095
3171
|
terminalShellIntegrationDisabled: true,
|
|
3172
|
+
diagnosticsEnabled: true,
|
|
3096
3173
|
diffEnabled: true,
|
|
3097
3174
|
fuzzyMatchThreshold: 1,
|
|
3098
3175
|
enableCheckpoints: false,
|
|
@@ -3102,10 +3179,13 @@ var EVALS_SETTINGS = {
|
|
|
3102
3179
|
showRooIgnoredFiles: true,
|
|
3103
3180
|
maxReadFileLine: -1,
|
|
3104
3181
|
// -1 to enable full file reading.
|
|
3182
|
+
includeDiagnosticMessages: true,
|
|
3183
|
+
maxDiagnosticMessages: 50,
|
|
3105
3184
|
language: "en",
|
|
3106
3185
|
telemetrySetting: "enabled",
|
|
3107
3186
|
mcpEnabled: false,
|
|
3108
3187
|
mode: "code",
|
|
3188
|
+
// "architect",
|
|
3109
3189
|
customModes: []
|
|
3110
3190
|
};
|
|
3111
3191
|
var EVALS_TIMEOUT = 5 * 60 * 1e3;
|
|
@@ -3146,7 +3226,8 @@ var organizationDefaultSettingsSchema = globalSettingsSchema.pick({
|
|
|
3146
3226
|
var organizationCloudSettingsSchema = z12.object({
|
|
3147
3227
|
recordTaskMessages: z12.boolean().optional(),
|
|
3148
3228
|
enableTaskSharing: z12.boolean().optional(),
|
|
3149
|
-
taskShareExpirationDays: z12.number().int().positive().optional()
|
|
3229
|
+
taskShareExpirationDays: z12.number().int().positive().optional(),
|
|
3230
|
+
allowMembersViewAllTasks: z12.boolean().optional()
|
|
3150
3231
|
});
|
|
3151
3232
|
var organizationSettingsSchema = z12.object({
|
|
3152
3233
|
version: z12.number(),
|
|
@@ -3163,7 +3244,8 @@ var ORGANIZATION_DEFAULT = {
|
|
|
3163
3244
|
cloudSettings: {
|
|
3164
3245
|
recordTaskMessages: true,
|
|
3165
3246
|
enableTaskSharing: true,
|
|
3166
|
-
taskShareExpirationDays: 30
|
|
3247
|
+
taskShareExpirationDays: 30,
|
|
3248
|
+
allowMembersViewAllTasks: true
|
|
3167
3249
|
},
|
|
3168
3250
|
defaultSettings: {},
|
|
3169
3251
|
allowList: ORGANIZATION_ALLOW_ALL
|
|
@@ -3489,6 +3571,8 @@ export {
|
|
|
3489
3571
|
CODEBASE_INDEX_DEFAULTS,
|
|
3490
3572
|
DEEP_SEEK_DEFAULT_TEMPERATURE,
|
|
3491
3573
|
DEFAULT_CONSECUTIVE_MISTAKE_LIMIT,
|
|
3574
|
+
DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT,
|
|
3575
|
+
DEFAULT_WRITE_DELAY_MS,
|
|
3492
3576
|
EVALS_SETTINGS,
|
|
3493
3577
|
EVALS_TIMEOUT,
|
|
3494
3578
|
GLAMA_DEFAULT_TEMPERATURE,
|
|
@@ -3500,6 +3584,7 @@ export {
|
|
|
3500
3584
|
LMSTUDIO_DEFAULT_TEMPERATURE,
|
|
3501
3585
|
MISTRAL_DEFAULT_TEMPERATURE,
|
|
3502
3586
|
MODEL_ID_KEYS,
|
|
3587
|
+
MOONSHOT_DEFAULT_TEMPERATURE,
|
|
3503
3588
|
OPENAI_AZURE_AI_INFERENCE_PATH,
|
|
3504
3589
|
OPENAI_NATIVE_DEFAULT_TEMPERATURE,
|
|
3505
3590
|
OPENROUTER_DEFAULT_PROVIDER_NAME,
|
|
@@ -3589,6 +3674,8 @@ export {
|
|
|
3589
3674
|
modelInfoSchema,
|
|
3590
3675
|
modelParameters,
|
|
3591
3676
|
modelParametersSchema,
|
|
3677
|
+
moonshotDefaultModelId,
|
|
3678
|
+
moonshotModels,
|
|
3592
3679
|
ollamaDefaultModelId,
|
|
3593
3680
|
ollamaDefaultModelInfo,
|
|
3594
3681
|
openAiModelInfoSaneDefaults,
|