@roo-code/types 1.25.0 → 1.26.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 +164 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +372 -53
- package/dist/index.d.ts +372 -53
- package/dist/index.js +159 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -778,6 +778,29 @@ declare const geminiModels: {
|
|
|
778
778
|
readonly cacheReadsPrice: 0.625;
|
|
779
779
|
}];
|
|
780
780
|
};
|
|
781
|
+
readonly "gemini-2.5-pro-preview-06-05": {
|
|
782
|
+
readonly maxTokens: 65535;
|
|
783
|
+
readonly contextWindow: 1048576;
|
|
784
|
+
readonly supportsImages: true;
|
|
785
|
+
readonly supportsPromptCache: true;
|
|
786
|
+
readonly inputPrice: 2.5;
|
|
787
|
+
readonly outputPrice: 15;
|
|
788
|
+
readonly cacheReadsPrice: 0.625;
|
|
789
|
+
readonly cacheWritesPrice: 4.5;
|
|
790
|
+
readonly maxThinkingTokens: 32768;
|
|
791
|
+
readonly supportsReasoningBudget: true;
|
|
792
|
+
readonly tiers: [{
|
|
793
|
+
readonly contextWindow: 200000;
|
|
794
|
+
readonly inputPrice: 1.25;
|
|
795
|
+
readonly outputPrice: 10;
|
|
796
|
+
readonly cacheReadsPrice: 0.31;
|
|
797
|
+
}, {
|
|
798
|
+
readonly contextWindow: number;
|
|
799
|
+
readonly inputPrice: 2.5;
|
|
800
|
+
readonly outputPrice: 15;
|
|
801
|
+
readonly cacheReadsPrice: 0.625;
|
|
802
|
+
}];
|
|
803
|
+
};
|
|
781
804
|
readonly "gemini-2.0-flash-001": {
|
|
782
805
|
readonly maxTokens: 8192;
|
|
783
806
|
readonly contextWindow: 1048576;
|
|
@@ -1170,9 +1193,9 @@ declare const openAiNativeModels: {
|
|
|
1170
1193
|
readonly contextWindow: 200000;
|
|
1171
1194
|
readonly supportsImages: true;
|
|
1172
1195
|
readonly supportsPromptCache: true;
|
|
1173
|
-
readonly inputPrice:
|
|
1174
|
-
readonly outputPrice:
|
|
1175
|
-
readonly cacheReadsPrice:
|
|
1196
|
+
readonly inputPrice: 2;
|
|
1197
|
+
readonly outputPrice: 8;
|
|
1198
|
+
readonly cacheReadsPrice: 0.5;
|
|
1176
1199
|
readonly supportsReasoningEffort: true;
|
|
1177
1200
|
readonly reasoningEffort: "medium";
|
|
1178
1201
|
};
|
|
@@ -1181,9 +1204,9 @@ declare const openAiNativeModels: {
|
|
|
1181
1204
|
readonly contextWindow: 200000;
|
|
1182
1205
|
readonly supportsImages: true;
|
|
1183
1206
|
readonly supportsPromptCache: true;
|
|
1184
|
-
readonly inputPrice:
|
|
1185
|
-
readonly outputPrice:
|
|
1186
|
-
readonly cacheReadsPrice:
|
|
1207
|
+
readonly inputPrice: 2;
|
|
1208
|
+
readonly outputPrice: 8;
|
|
1209
|
+
readonly cacheReadsPrice: 0.5;
|
|
1187
1210
|
readonly reasoningEffort: "high";
|
|
1188
1211
|
};
|
|
1189
1212
|
readonly "o3-low": {
|
|
@@ -1191,9 +1214,9 @@ declare const openAiNativeModels: {
|
|
|
1191
1214
|
readonly contextWindow: 200000;
|
|
1192
1215
|
readonly supportsImages: true;
|
|
1193
1216
|
readonly supportsPromptCache: true;
|
|
1194
|
-
readonly inputPrice:
|
|
1195
|
-
readonly outputPrice:
|
|
1196
|
-
readonly cacheReadsPrice:
|
|
1217
|
+
readonly inputPrice: 2;
|
|
1218
|
+
readonly outputPrice: 8;
|
|
1219
|
+
readonly cacheReadsPrice: 0.5;
|
|
1197
1220
|
readonly reasoningEffort: "low";
|
|
1198
1221
|
};
|
|
1199
1222
|
readonly "o4-mini": {
|
|
@@ -1323,8 +1346,8 @@ declare const openRouterDefaultModelInfo: ModelInfo;
|
|
|
1323
1346
|
declare const OPENROUTER_DEFAULT_PROVIDER_NAME = "[default]";
|
|
1324
1347
|
declare const OPEN_ROUTER_PROMPT_CACHING_MODELS: Set<string>;
|
|
1325
1348
|
declare const OPEN_ROUTER_COMPUTER_USE_MODELS: Set<string>;
|
|
1326
|
-
declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
1327
1349
|
declare const OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS: Set<string>;
|
|
1350
|
+
declare const OPEN_ROUTER_REASONING_BUDGET_MODELS: Set<string>;
|
|
1328
1351
|
|
|
1329
1352
|
declare const requestyDefaultModelId = "coding/claude-4-sonnet";
|
|
1330
1353
|
declare const requestyDefaultModelInfo: ModelInfo;
|
|
@@ -1389,6 +1412,16 @@ declare const vertexModels: {
|
|
|
1389
1412
|
readonly inputPrice: 2.5;
|
|
1390
1413
|
readonly outputPrice: 15;
|
|
1391
1414
|
};
|
|
1415
|
+
readonly "gemini-2.5-pro-preview-06-05": {
|
|
1416
|
+
readonly maxTokens: 65535;
|
|
1417
|
+
readonly contextWindow: 1048576;
|
|
1418
|
+
readonly supportsImages: true;
|
|
1419
|
+
readonly supportsPromptCache: true;
|
|
1420
|
+
readonly inputPrice: 2.5;
|
|
1421
|
+
readonly outputPrice: 15;
|
|
1422
|
+
readonly maxThinkingTokens: 32768;
|
|
1423
|
+
readonly supportsReasoningBudget: true;
|
|
1424
|
+
};
|
|
1392
1425
|
readonly "gemini-2.5-pro-exp-03-25": {
|
|
1393
1426
|
readonly maxTokens: 65535;
|
|
1394
1427
|
readonly contextWindow: 1048576;
|
|
@@ -3032,6 +3065,9 @@ declare const providerSettingsSchemaDiscriminated: z.ZodDiscriminatedUnion<"apiP
|
|
|
3032
3065
|
declare const providerSettingsSchema: z.ZodObject<{
|
|
3033
3066
|
codeIndexOpenAiKey: z.ZodOptional<z.ZodString>;
|
|
3034
3067
|
codeIndexQdrantApiKey: z.ZodOptional<z.ZodString>;
|
|
3068
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3069
|
+
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
3070
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3035
3071
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3036
3072
|
diffEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3037
3073
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3218,6 +3254,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3218
3254
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3219
3255
|
codeIndexOpenAiKey?: string | undefined;
|
|
3220
3256
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3257
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3258
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3259
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3221
3260
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3222
3261
|
includeMaxTokens?: boolean | undefined;
|
|
3223
3262
|
diffEnabled?: boolean | undefined;
|
|
@@ -3327,6 +3366,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3327
3366
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
3328
3367
|
codeIndexOpenAiKey?: string | undefined;
|
|
3329
3368
|
codeIndexQdrantApiKey?: string | undefined;
|
|
3369
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
3370
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
3371
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
3330
3372
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
3331
3373
|
includeMaxTokens?: boolean | undefined;
|
|
3332
3374
|
diffEnabled?: boolean | undefined;
|
|
@@ -3434,7 +3476,9 @@ declare const providerSettingsSchema: z.ZodObject<{
|
|
|
3434
3476
|
litellmModelId?: string | undefined;
|
|
3435
3477
|
}>;
|
|
3436
3478
|
type ProviderSettings = z.infer<typeof providerSettingsSchema>;
|
|
3437
|
-
declare const PROVIDER_SETTINGS_KEYS: readonly ["apiProvider", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "enableReasoningEffort", "reasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
3479
|
+
declare const PROVIDER_SETTINGS_KEYS: readonly ["apiProvider", "apiModelId", "apiKey", "anthropicBaseUrl", "anthropicUseAuthToken", "glamaModelId", "glamaApiKey", "openRouterApiKey", "openRouterModelId", "openRouterBaseUrl", "openRouterSpecificProvider", "openRouterUseMiddleOutTransform", "awsAccessKey", "awsSecretKey", "awsSessionToken", "awsRegion", "awsUseCrossRegionInference", "awsUsePromptCache", "awsProfile", "awsUseProfile", "awsCustomArn", "awsModelContextWindow", "awsBedrockEndpointEnabled", "awsBedrockEndpoint", "vertexKeyFile", "vertexJsonCredentials", "vertexProjectId", "vertexRegion", "openAiBaseUrl", "openAiApiKey", "openAiLegacyFormat", "openAiR1FormatEnabled", "openAiModelId", "openAiCustomModelInfo", "openAiUseAzure", "azureApiVersion", "openAiStreamingEnabled", "openAiHostHeader", "openAiHeaders", "ollamaModelId", "ollamaBaseUrl", "vsCodeLmModelSelector", "lmStudioModelId", "lmStudioBaseUrl", "lmStudioDraftModelId", "lmStudioSpeculativeDecodingEnabled", "geminiApiKey", "googleGeminiBaseUrl", "openAiNativeApiKey", "openAiNativeBaseUrl", "mistralApiKey", "mistralCodestralUrl", "deepSeekBaseUrl", "deepSeekApiKey", "unboundApiKey", "unboundModelId", "requestyApiKey", "requestyModelId", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleBaseUrl", "codebaseIndexOpenAiCompatibleApiKey", "codebaseIndexOpenAiCompatibleModelDimension", "enableReasoningEffort", "reasoningEffort", "modelMaxTokens", "modelMaxThinkingTokens", "includeMaxTokens", "diffEnabled", "fuzzyMatchThreshold", "modelTemperature", "rateLimitSeconds", "fakeAi", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmBaseUrl", "litellmApiKey", "litellmModelId"];
|
|
3480
|
+
declare const MODEL_ID_KEYS: Partial<keyof ProviderSettings>[];
|
|
3481
|
+
declare const getModelId: (settings: ProviderSettings) => string | undefined;
|
|
3438
3482
|
|
|
3439
3483
|
/**
|
|
3440
3484
|
* GlobalSettings
|
|
@@ -3544,13 +3588,19 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3544
3588
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
3545
3589
|
experiments: z.ZodOptional<z.ZodObject<{
|
|
3546
3590
|
powerSteering: z.ZodBoolean;
|
|
3591
|
+
marketplace: z.ZodBoolean;
|
|
3547
3592
|
concurrentFileReads: z.ZodBoolean;
|
|
3593
|
+
disableCompletionCommand: z.ZodBoolean;
|
|
3548
3594
|
}, "strip", z.ZodTypeAny, {
|
|
3549
3595
|
powerSteering: boolean;
|
|
3596
|
+
marketplace: boolean;
|
|
3550
3597
|
concurrentFileReads: boolean;
|
|
3598
|
+
disableCompletionCommand: boolean;
|
|
3551
3599
|
}, {
|
|
3552
3600
|
powerSteering: boolean;
|
|
3601
|
+
marketplace: boolean;
|
|
3553
3602
|
concurrentFileReads: boolean;
|
|
3603
|
+
disableCompletionCommand: boolean;
|
|
3554
3604
|
}>>;
|
|
3555
3605
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
3556
3606
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3567,6 +3617,13 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3567
3617
|
}, {
|
|
3568
3618
|
dimension: number;
|
|
3569
3619
|
}>>>;
|
|
3620
|
+
"openai-compatible": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3621
|
+
dimension: z.ZodNumber;
|
|
3622
|
+
}, "strip", z.ZodTypeAny, {
|
|
3623
|
+
dimension: number;
|
|
3624
|
+
}, {
|
|
3625
|
+
dimension: number;
|
|
3626
|
+
}>>>;
|
|
3570
3627
|
}, "strip", z.ZodTypeAny, {
|
|
3571
3628
|
openai?: Record<string, {
|
|
3572
3629
|
dimension: number;
|
|
@@ -3574,6 +3631,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3574
3631
|
ollama?: Record<string, {
|
|
3575
3632
|
dimension: number;
|
|
3576
3633
|
}> | undefined;
|
|
3634
|
+
"openai-compatible"?: Record<string, {
|
|
3635
|
+
dimension: number;
|
|
3636
|
+
}> | undefined;
|
|
3577
3637
|
}, {
|
|
3578
3638
|
openai?: Record<string, {
|
|
3579
3639
|
dimension: number;
|
|
@@ -3581,23 +3641,26 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3581
3641
|
ollama?: Record<string, {
|
|
3582
3642
|
dimension: number;
|
|
3583
3643
|
}> | undefined;
|
|
3644
|
+
"openai-compatible"?: Record<string, {
|
|
3645
|
+
dimension: number;
|
|
3646
|
+
}> | undefined;
|
|
3584
3647
|
}>>;
|
|
3585
3648
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
3586
3649
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
3587
3650
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
3588
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama"]>>;
|
|
3651
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
3589
3652
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3590
3653
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
3591
3654
|
}, "strip", z.ZodTypeAny, {
|
|
3592
3655
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3593
3656
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3594
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
3657
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3595
3658
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3596
3659
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3597
3660
|
}, {
|
|
3598
3661
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3599
3662
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3600
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
3663
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3601
3664
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3602
3665
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3603
3666
|
}>>;
|
|
@@ -3756,7 +3819,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3756
3819
|
terminalCompressProgressBar?: boolean | undefined;
|
|
3757
3820
|
experiments?: {
|
|
3758
3821
|
powerSteering: boolean;
|
|
3822
|
+
marketplace: boolean;
|
|
3759
3823
|
concurrentFileReads: boolean;
|
|
3824
|
+
disableCompletionCommand: boolean;
|
|
3760
3825
|
} | undefined;
|
|
3761
3826
|
codebaseIndexModels?: {
|
|
3762
3827
|
openai?: Record<string, {
|
|
@@ -3765,11 +3830,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3765
3830
|
ollama?: Record<string, {
|
|
3766
3831
|
dimension: number;
|
|
3767
3832
|
}> | undefined;
|
|
3833
|
+
"openai-compatible"?: Record<string, {
|
|
3834
|
+
dimension: number;
|
|
3835
|
+
}> | undefined;
|
|
3768
3836
|
} | undefined;
|
|
3769
3837
|
codebaseIndexConfig?: {
|
|
3770
3838
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3771
3839
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3772
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
3840
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3773
3841
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3774
3842
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3775
3843
|
} | undefined;
|
|
@@ -3872,7 +3940,9 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3872
3940
|
terminalCompressProgressBar?: boolean | undefined;
|
|
3873
3941
|
experiments?: {
|
|
3874
3942
|
powerSteering: boolean;
|
|
3943
|
+
marketplace: boolean;
|
|
3875
3944
|
concurrentFileReads: boolean;
|
|
3945
|
+
disableCompletionCommand: boolean;
|
|
3876
3946
|
} | undefined;
|
|
3877
3947
|
codebaseIndexModels?: {
|
|
3878
3948
|
openai?: Record<string, {
|
|
@@ -3881,11 +3951,14 @@ declare const globalSettingsSchema: z.ZodObject<{
|
|
|
3881
3951
|
ollama?: Record<string, {
|
|
3882
3952
|
dimension: number;
|
|
3883
3953
|
}> | undefined;
|
|
3954
|
+
"openai-compatible"?: Record<string, {
|
|
3955
|
+
dimension: number;
|
|
3956
|
+
}> | undefined;
|
|
3884
3957
|
} | undefined;
|
|
3885
3958
|
codebaseIndexConfig?: {
|
|
3886
3959
|
codebaseIndexEnabled?: boolean | undefined;
|
|
3887
3960
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
3888
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
3961
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
3889
3962
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
3890
3963
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
3891
3964
|
} | undefined;
|
|
@@ -3910,6 +3983,9 @@ declare const GLOBAL_SETTINGS_KEYS: readonly ["currentApiConfigName", "listApiCo
|
|
|
3910
3983
|
declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
3911
3984
|
codeIndexOpenAiKey: z.ZodOptional<z.ZodString>;
|
|
3912
3985
|
codeIndexQdrantApiKey: z.ZodOptional<z.ZodString>;
|
|
3986
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
3987
|
+
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
3988
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
3913
3989
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
3914
3990
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3915
3991
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4194,13 +4270,19 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4194
4270
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
4195
4271
|
experiments: z.ZodOptional<z.ZodObject<{
|
|
4196
4272
|
powerSteering: z.ZodBoolean;
|
|
4273
|
+
marketplace: z.ZodBoolean;
|
|
4197
4274
|
concurrentFileReads: z.ZodBoolean;
|
|
4275
|
+
disableCompletionCommand: z.ZodBoolean;
|
|
4198
4276
|
}, "strip", z.ZodTypeAny, {
|
|
4199
4277
|
powerSteering: boolean;
|
|
4278
|
+
marketplace: boolean;
|
|
4200
4279
|
concurrentFileReads: boolean;
|
|
4280
|
+
disableCompletionCommand: boolean;
|
|
4201
4281
|
}, {
|
|
4202
4282
|
powerSteering: boolean;
|
|
4283
|
+
marketplace: boolean;
|
|
4203
4284
|
concurrentFileReads: boolean;
|
|
4285
|
+
disableCompletionCommand: boolean;
|
|
4204
4286
|
}>>;
|
|
4205
4287
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
4206
4288
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -4217,6 +4299,13 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4217
4299
|
}, {
|
|
4218
4300
|
dimension: number;
|
|
4219
4301
|
}>>>;
|
|
4302
|
+
"openai-compatible": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4303
|
+
dimension: z.ZodNumber;
|
|
4304
|
+
}, "strip", z.ZodTypeAny, {
|
|
4305
|
+
dimension: number;
|
|
4306
|
+
}, {
|
|
4307
|
+
dimension: number;
|
|
4308
|
+
}>>>;
|
|
4220
4309
|
}, "strip", z.ZodTypeAny, {
|
|
4221
4310
|
openai?: Record<string, {
|
|
4222
4311
|
dimension: number;
|
|
@@ -4224,6 +4313,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4224
4313
|
ollama?: Record<string, {
|
|
4225
4314
|
dimension: number;
|
|
4226
4315
|
}> | undefined;
|
|
4316
|
+
"openai-compatible"?: Record<string, {
|
|
4317
|
+
dimension: number;
|
|
4318
|
+
}> | undefined;
|
|
4227
4319
|
}, {
|
|
4228
4320
|
openai?: Record<string, {
|
|
4229
4321
|
dimension: number;
|
|
@@ -4231,23 +4323,26 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4231
4323
|
ollama?: Record<string, {
|
|
4232
4324
|
dimension: number;
|
|
4233
4325
|
}> | undefined;
|
|
4326
|
+
"openai-compatible"?: Record<string, {
|
|
4327
|
+
dimension: number;
|
|
4328
|
+
}> | undefined;
|
|
4234
4329
|
}>>;
|
|
4235
4330
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
4236
4331
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
4237
4332
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
4238
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama"]>>;
|
|
4333
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
4239
4334
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
4240
4335
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
4241
4336
|
}, "strip", z.ZodTypeAny, {
|
|
4242
4337
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4243
4338
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4244
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
4339
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4245
4340
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4246
4341
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4247
4342
|
}, {
|
|
4248
4343
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4249
4344
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4250
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
4345
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4251
4346
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4252
4347
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4253
4348
|
}>>;
|
|
@@ -4323,6 +4418,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4323
4418
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4324
4419
|
codeIndexOpenAiKey?: string | undefined;
|
|
4325
4420
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4421
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4422
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4423
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4326
4424
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4327
4425
|
includeMaxTokens?: boolean | undefined;
|
|
4328
4426
|
diffEnabled?: boolean | undefined;
|
|
@@ -4511,7 +4609,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4511
4609
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4512
4610
|
experiments?: {
|
|
4513
4611
|
powerSteering: boolean;
|
|
4612
|
+
marketplace: boolean;
|
|
4514
4613
|
concurrentFileReads: boolean;
|
|
4614
|
+
disableCompletionCommand: boolean;
|
|
4515
4615
|
} | undefined;
|
|
4516
4616
|
codebaseIndexModels?: {
|
|
4517
4617
|
openai?: Record<string, {
|
|
@@ -4520,11 +4620,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4520
4620
|
ollama?: Record<string, {
|
|
4521
4621
|
dimension: number;
|
|
4522
4622
|
}> | undefined;
|
|
4623
|
+
"openai-compatible"?: Record<string, {
|
|
4624
|
+
dimension: number;
|
|
4625
|
+
}> | undefined;
|
|
4523
4626
|
} | undefined;
|
|
4524
4627
|
codebaseIndexConfig?: {
|
|
4525
4628
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4526
4629
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4527
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
4630
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4528
4631
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4529
4632
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4530
4633
|
} | undefined;
|
|
@@ -4544,6 +4647,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4544
4647
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
4545
4648
|
codeIndexOpenAiKey?: string | undefined;
|
|
4546
4649
|
codeIndexQdrantApiKey?: string | undefined;
|
|
4650
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
4651
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
4652
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
4547
4653
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
4548
4654
|
includeMaxTokens?: boolean | undefined;
|
|
4549
4655
|
diffEnabled?: boolean | undefined;
|
|
@@ -4732,7 +4838,9 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4732
4838
|
terminalCompressProgressBar?: boolean | undefined;
|
|
4733
4839
|
experiments?: {
|
|
4734
4840
|
powerSteering: boolean;
|
|
4841
|
+
marketplace: boolean;
|
|
4735
4842
|
concurrentFileReads: boolean;
|
|
4843
|
+
disableCompletionCommand: boolean;
|
|
4736
4844
|
} | undefined;
|
|
4737
4845
|
codebaseIndexModels?: {
|
|
4738
4846
|
openai?: Record<string, {
|
|
@@ -4741,11 +4849,14 @@ declare const rooCodeSettingsSchema: z.ZodObject<{
|
|
|
4741
4849
|
ollama?: Record<string, {
|
|
4742
4850
|
dimension: number;
|
|
4743
4851
|
}> | undefined;
|
|
4852
|
+
"openai-compatible"?: Record<string, {
|
|
4853
|
+
dimension: number;
|
|
4854
|
+
}> | undefined;
|
|
4744
4855
|
} | undefined;
|
|
4745
4856
|
codebaseIndexConfig?: {
|
|
4746
4857
|
codebaseIndexEnabled?: boolean | undefined;
|
|
4747
4858
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
4748
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
4859
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
4749
4860
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
4750
4861
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
4751
4862
|
} | undefined;
|
|
@@ -4766,8 +4877,8 @@ type RooCodeSettings = GlobalSettings & ProviderSettings;
|
|
|
4766
4877
|
/**
|
|
4767
4878
|
* SecretState
|
|
4768
4879
|
*/
|
|
4769
|
-
type SecretState = Pick<ProviderSettings, "apiKey" | "glamaApiKey" | "openRouterApiKey" | "awsAccessKey" | "awsSecretKey" | "awsSessionToken" | "openAiApiKey" | "geminiApiKey" | "openAiNativeApiKey" | "deepSeekApiKey" | "mistralApiKey" | "unboundApiKey" | "requestyApiKey" | "xaiApiKey" | "groqApiKey" | "chutesApiKey" | "litellmApiKey" | "codeIndexOpenAiKey" | "codeIndexQdrantApiKey">;
|
|
4770
|
-
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey"];
|
|
4880
|
+
type SecretState = Pick<ProviderSettings, "apiKey" | "glamaApiKey" | "openRouterApiKey" | "awsAccessKey" | "awsSecretKey" | "awsSessionToken" | "openAiApiKey" | "geminiApiKey" | "openAiNativeApiKey" | "deepSeekApiKey" | "mistralApiKey" | "unboundApiKey" | "requestyApiKey" | "xaiApiKey" | "groqApiKey" | "chutesApiKey" | "litellmApiKey" | "codeIndexOpenAiKey" | "codeIndexQdrantApiKey" | "codebaseIndexOpenAiCompatibleApiKey">;
|
|
4881
|
+
declare const SECRET_STATE_KEYS: readonly ["apiKey", "glamaApiKey", "openRouterApiKey", "awsAccessKey", "awsSecretKey", "awsSessionToken", "openAiApiKey", "geminiApiKey", "openAiNativeApiKey", "deepSeekApiKey", "mistralApiKey", "unboundApiKey", "requestyApiKey", "xaiApiKey", "groqApiKey", "chutesApiKey", "litellmApiKey", "codeIndexOpenAiKey", "codeIndexQdrantApiKey", "codebaseIndexOpenAiCompatibleApiKey"];
|
|
4771
4882
|
declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
4772
4883
|
/**
|
|
4773
4884
|
* GlobalState
|
|
@@ -4775,6 +4886,11 @@ declare const isSecretStateKey: (key: string) => key is Keys<SecretState>;
|
|
|
4775
4886
|
type GlobalState = Omit<RooCodeSettings, Keys<SecretState>>;
|
|
4776
4887
|
declare const GLOBAL_STATE_KEYS: Keys<GlobalState>[];
|
|
4777
4888
|
declare const isGlobalStateKey: (key: string) => key is Keys<GlobalState>;
|
|
4889
|
+
/**
|
|
4890
|
+
* Evals
|
|
4891
|
+
*/
|
|
4892
|
+
declare const EVALS_SETTINGS: RooCodeSettings;
|
|
4893
|
+
declare const EVALS_TIMEOUT: number;
|
|
4778
4894
|
|
|
4779
4895
|
/**
|
|
4780
4896
|
* ClineAsk
|
|
@@ -5319,6 +5435,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5319
5435
|
configuration: z.ZodObject<{
|
|
5320
5436
|
codeIndexOpenAiKey: z.ZodOptional<z.ZodString>;
|
|
5321
5437
|
codeIndexQdrantApiKey: z.ZodOptional<z.ZodString>;
|
|
5438
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5439
|
+
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
5440
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
5322
5441
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
5323
5442
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5324
5443
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5603,13 +5722,19 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5603
5722
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
5604
5723
|
experiments: z.ZodOptional<z.ZodObject<{
|
|
5605
5724
|
powerSteering: z.ZodBoolean;
|
|
5725
|
+
marketplace: z.ZodBoolean;
|
|
5606
5726
|
concurrentFileReads: z.ZodBoolean;
|
|
5727
|
+
disableCompletionCommand: z.ZodBoolean;
|
|
5607
5728
|
}, "strip", z.ZodTypeAny, {
|
|
5608
5729
|
powerSteering: boolean;
|
|
5730
|
+
marketplace: boolean;
|
|
5609
5731
|
concurrentFileReads: boolean;
|
|
5732
|
+
disableCompletionCommand: boolean;
|
|
5610
5733
|
}, {
|
|
5611
5734
|
powerSteering: boolean;
|
|
5735
|
+
marketplace: boolean;
|
|
5612
5736
|
concurrentFileReads: boolean;
|
|
5737
|
+
disableCompletionCommand: boolean;
|
|
5613
5738
|
}>>;
|
|
5614
5739
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
5615
5740
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -5626,6 +5751,13 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5626
5751
|
}, {
|
|
5627
5752
|
dimension: number;
|
|
5628
5753
|
}>>>;
|
|
5754
|
+
"openai-compatible": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5755
|
+
dimension: z.ZodNumber;
|
|
5756
|
+
}, "strip", z.ZodTypeAny, {
|
|
5757
|
+
dimension: number;
|
|
5758
|
+
}, {
|
|
5759
|
+
dimension: number;
|
|
5760
|
+
}>>>;
|
|
5629
5761
|
}, "strip", z.ZodTypeAny, {
|
|
5630
5762
|
openai?: Record<string, {
|
|
5631
5763
|
dimension: number;
|
|
@@ -5633,6 +5765,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5633
5765
|
ollama?: Record<string, {
|
|
5634
5766
|
dimension: number;
|
|
5635
5767
|
}> | undefined;
|
|
5768
|
+
"openai-compatible"?: Record<string, {
|
|
5769
|
+
dimension: number;
|
|
5770
|
+
}> | undefined;
|
|
5636
5771
|
}, {
|
|
5637
5772
|
openai?: Record<string, {
|
|
5638
5773
|
dimension: number;
|
|
@@ -5640,23 +5775,26 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5640
5775
|
ollama?: Record<string, {
|
|
5641
5776
|
dimension: number;
|
|
5642
5777
|
}> | undefined;
|
|
5778
|
+
"openai-compatible"?: Record<string, {
|
|
5779
|
+
dimension: number;
|
|
5780
|
+
}> | undefined;
|
|
5643
5781
|
}>>;
|
|
5644
5782
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
5645
5783
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
5646
5784
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
5647
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama"]>>;
|
|
5785
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
5648
5786
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
5649
5787
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
5650
5788
|
}, "strip", z.ZodTypeAny, {
|
|
5651
5789
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5652
5790
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5653
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
5791
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
5654
5792
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5655
5793
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5656
5794
|
}, {
|
|
5657
5795
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5658
5796
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5659
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
5797
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
5660
5798
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5661
5799
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5662
5800
|
}>>;
|
|
@@ -5732,6 +5870,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5732
5870
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
5733
5871
|
codeIndexOpenAiKey?: string | undefined;
|
|
5734
5872
|
codeIndexQdrantApiKey?: string | undefined;
|
|
5873
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
5874
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
5875
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
5735
5876
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5736
5877
|
includeMaxTokens?: boolean | undefined;
|
|
5737
5878
|
diffEnabled?: boolean | undefined;
|
|
@@ -5920,7 +6061,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5920
6061
|
terminalCompressProgressBar?: boolean | undefined;
|
|
5921
6062
|
experiments?: {
|
|
5922
6063
|
powerSteering: boolean;
|
|
6064
|
+
marketplace: boolean;
|
|
5923
6065
|
concurrentFileReads: boolean;
|
|
6066
|
+
disableCompletionCommand: boolean;
|
|
5924
6067
|
} | undefined;
|
|
5925
6068
|
codebaseIndexModels?: {
|
|
5926
6069
|
openai?: Record<string, {
|
|
@@ -5929,11 +6072,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5929
6072
|
ollama?: Record<string, {
|
|
5930
6073
|
dimension: number;
|
|
5931
6074
|
}> | undefined;
|
|
6075
|
+
"openai-compatible"?: Record<string, {
|
|
6076
|
+
dimension: number;
|
|
6077
|
+
}> | undefined;
|
|
5932
6078
|
} | undefined;
|
|
5933
6079
|
codebaseIndexConfig?: {
|
|
5934
6080
|
codebaseIndexEnabled?: boolean | undefined;
|
|
5935
6081
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
5936
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
6082
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
5937
6083
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
5938
6084
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
5939
6085
|
} | undefined;
|
|
@@ -5953,6 +6099,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
5953
6099
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
5954
6100
|
codeIndexOpenAiKey?: string | undefined;
|
|
5955
6101
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6102
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6103
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6104
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
5956
6105
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
5957
6106
|
includeMaxTokens?: boolean | undefined;
|
|
5958
6107
|
diffEnabled?: boolean | undefined;
|
|
@@ -6141,7 +6290,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6141
6290
|
terminalCompressProgressBar?: boolean | undefined;
|
|
6142
6291
|
experiments?: {
|
|
6143
6292
|
powerSteering: boolean;
|
|
6293
|
+
marketplace: boolean;
|
|
6144
6294
|
concurrentFileReads: boolean;
|
|
6295
|
+
disableCompletionCommand: boolean;
|
|
6145
6296
|
} | undefined;
|
|
6146
6297
|
codebaseIndexModels?: {
|
|
6147
6298
|
openai?: Record<string, {
|
|
@@ -6150,11 +6301,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6150
6301
|
ollama?: Record<string, {
|
|
6151
6302
|
dimension: number;
|
|
6152
6303
|
}> | undefined;
|
|
6304
|
+
"openai-compatible"?: Record<string, {
|
|
6305
|
+
dimension: number;
|
|
6306
|
+
}> | undefined;
|
|
6153
6307
|
} | undefined;
|
|
6154
6308
|
codebaseIndexConfig?: {
|
|
6155
6309
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6156
6310
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6157
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
6311
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6158
6312
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6159
6313
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6160
6314
|
} | undefined;
|
|
@@ -6180,6 +6334,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6180
6334
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6181
6335
|
codeIndexOpenAiKey?: string | undefined;
|
|
6182
6336
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6337
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6338
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6339
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6183
6340
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6184
6341
|
includeMaxTokens?: boolean | undefined;
|
|
6185
6342
|
diffEnabled?: boolean | undefined;
|
|
@@ -6368,7 +6525,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6368
6525
|
terminalCompressProgressBar?: boolean | undefined;
|
|
6369
6526
|
experiments?: {
|
|
6370
6527
|
powerSteering: boolean;
|
|
6528
|
+
marketplace: boolean;
|
|
6371
6529
|
concurrentFileReads: boolean;
|
|
6530
|
+
disableCompletionCommand: boolean;
|
|
6372
6531
|
} | undefined;
|
|
6373
6532
|
codebaseIndexModels?: {
|
|
6374
6533
|
openai?: Record<string, {
|
|
@@ -6377,11 +6536,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6377
6536
|
ollama?: Record<string, {
|
|
6378
6537
|
dimension: number;
|
|
6379
6538
|
}> | undefined;
|
|
6539
|
+
"openai-compatible"?: Record<string, {
|
|
6540
|
+
dimension: number;
|
|
6541
|
+
}> | undefined;
|
|
6380
6542
|
} | undefined;
|
|
6381
6543
|
codebaseIndexConfig?: {
|
|
6382
6544
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6383
6545
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6384
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
6546
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6385
6547
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6386
6548
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6387
6549
|
} | undefined;
|
|
@@ -6406,6 +6568,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6406
6568
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6407
6569
|
codeIndexOpenAiKey?: string | undefined;
|
|
6408
6570
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6571
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6572
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6573
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6409
6574
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6410
6575
|
includeMaxTokens?: boolean | undefined;
|
|
6411
6576
|
diffEnabled?: boolean | undefined;
|
|
@@ -6594,7 +6759,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6594
6759
|
terminalCompressProgressBar?: boolean | undefined;
|
|
6595
6760
|
experiments?: {
|
|
6596
6761
|
powerSteering: boolean;
|
|
6762
|
+
marketplace: boolean;
|
|
6597
6763
|
concurrentFileReads: boolean;
|
|
6764
|
+
disableCompletionCommand: boolean;
|
|
6598
6765
|
} | undefined;
|
|
6599
6766
|
codebaseIndexModels?: {
|
|
6600
6767
|
openai?: Record<string, {
|
|
@@ -6603,11 +6770,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6603
6770
|
ollama?: Record<string, {
|
|
6604
6771
|
dimension: number;
|
|
6605
6772
|
}> | undefined;
|
|
6773
|
+
"openai-compatible"?: Record<string, {
|
|
6774
|
+
dimension: number;
|
|
6775
|
+
}> | undefined;
|
|
6606
6776
|
} | undefined;
|
|
6607
6777
|
codebaseIndexConfig?: {
|
|
6608
6778
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6609
6779
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6610
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
6780
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6611
6781
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6612
6782
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6613
6783
|
} | undefined;
|
|
@@ -6635,6 +6805,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6635
6805
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6636
6806
|
codeIndexOpenAiKey?: string | undefined;
|
|
6637
6807
|
codeIndexQdrantApiKey?: string | undefined;
|
|
6808
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
6809
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
6810
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6638
6811
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6639
6812
|
includeMaxTokens?: boolean | undefined;
|
|
6640
6813
|
diffEnabled?: boolean | undefined;
|
|
@@ -6823,7 +6996,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6823
6996
|
terminalCompressProgressBar?: boolean | undefined;
|
|
6824
6997
|
experiments?: {
|
|
6825
6998
|
powerSteering: boolean;
|
|
6999
|
+
marketplace: boolean;
|
|
6826
7000
|
concurrentFileReads: boolean;
|
|
7001
|
+
disableCompletionCommand: boolean;
|
|
6827
7002
|
} | undefined;
|
|
6828
7003
|
codebaseIndexModels?: {
|
|
6829
7004
|
openai?: Record<string, {
|
|
@@ -6832,11 +7007,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6832
7007
|
ollama?: Record<string, {
|
|
6833
7008
|
dimension: number;
|
|
6834
7009
|
}> | undefined;
|
|
7010
|
+
"openai-compatible"?: Record<string, {
|
|
7011
|
+
dimension: number;
|
|
7012
|
+
}> | undefined;
|
|
6835
7013
|
} | undefined;
|
|
6836
7014
|
codebaseIndexConfig?: {
|
|
6837
7015
|
codebaseIndexEnabled?: boolean | undefined;
|
|
6838
7016
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
6839
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
7017
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
6840
7018
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
6841
7019
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
6842
7020
|
} | undefined;
|
|
@@ -6864,6 +7042,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
6864
7042
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
6865
7043
|
codeIndexOpenAiKey?: string | undefined;
|
|
6866
7044
|
codeIndexQdrantApiKey?: string | undefined;
|
|
7045
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
7046
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
7047
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
6867
7048
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
6868
7049
|
includeMaxTokens?: boolean | undefined;
|
|
6869
7050
|
diffEnabled?: boolean | undefined;
|
|
@@ -7052,7 +7233,9 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7052
7233
|
terminalCompressProgressBar?: boolean | undefined;
|
|
7053
7234
|
experiments?: {
|
|
7054
7235
|
powerSteering: boolean;
|
|
7236
|
+
marketplace: boolean;
|
|
7055
7237
|
concurrentFileReads: boolean;
|
|
7238
|
+
disableCompletionCommand: boolean;
|
|
7056
7239
|
} | undefined;
|
|
7057
7240
|
codebaseIndexModels?: {
|
|
7058
7241
|
openai?: Record<string, {
|
|
@@ -7061,11 +7244,14 @@ declare const taskCommandSchema: z.ZodDiscriminatedUnion<"commandName", [z.ZodOb
|
|
|
7061
7244
|
ollama?: Record<string, {
|
|
7062
7245
|
dimension: number;
|
|
7063
7246
|
}> | undefined;
|
|
7247
|
+
"openai-compatible"?: Record<string, {
|
|
7248
|
+
dimension: number;
|
|
7249
|
+
}> | undefined;
|
|
7064
7250
|
} | undefined;
|
|
7065
7251
|
codebaseIndexConfig?: {
|
|
7066
7252
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7067
7253
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7068
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
7254
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7069
7255
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7070
7256
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7071
7257
|
} | undefined;
|
|
@@ -7602,6 +7788,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7602
7788
|
configuration: z.ZodObject<{
|
|
7603
7789
|
codeIndexOpenAiKey: z.ZodOptional<z.ZodString>;
|
|
7604
7790
|
codeIndexQdrantApiKey: z.ZodOptional<z.ZodString>;
|
|
7791
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7792
|
+
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
7793
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
7605
7794
|
includeMaxTokens: z.ZodOptional<z.ZodBoolean>;
|
|
7606
7795
|
modelTemperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7607
7796
|
enableReasoningEffort: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7886,13 +8075,19 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7886
8075
|
fuzzyMatchThreshold: z.ZodOptional<z.ZodNumber>;
|
|
7887
8076
|
experiments: z.ZodOptional<z.ZodObject<{
|
|
7888
8077
|
powerSteering: z.ZodBoolean;
|
|
8078
|
+
marketplace: z.ZodBoolean;
|
|
7889
8079
|
concurrentFileReads: z.ZodBoolean;
|
|
8080
|
+
disableCompletionCommand: z.ZodBoolean;
|
|
7890
8081
|
}, "strip", z.ZodTypeAny, {
|
|
7891
8082
|
powerSteering: boolean;
|
|
8083
|
+
marketplace: boolean;
|
|
7892
8084
|
concurrentFileReads: boolean;
|
|
8085
|
+
disableCompletionCommand: boolean;
|
|
7893
8086
|
}, {
|
|
7894
8087
|
powerSteering: boolean;
|
|
8088
|
+
marketplace: boolean;
|
|
7895
8089
|
concurrentFileReads: boolean;
|
|
8090
|
+
disableCompletionCommand: boolean;
|
|
7896
8091
|
}>>;
|
|
7897
8092
|
codebaseIndexModels: z.ZodOptional<z.ZodObject<{
|
|
7898
8093
|
openai: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -7909,6 +8104,13 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7909
8104
|
}, {
|
|
7910
8105
|
dimension: number;
|
|
7911
8106
|
}>>>;
|
|
8107
|
+
"openai-compatible": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8108
|
+
dimension: z.ZodNumber;
|
|
8109
|
+
}, "strip", z.ZodTypeAny, {
|
|
8110
|
+
dimension: number;
|
|
8111
|
+
}, {
|
|
8112
|
+
dimension: number;
|
|
8113
|
+
}>>>;
|
|
7912
8114
|
}, "strip", z.ZodTypeAny, {
|
|
7913
8115
|
openai?: Record<string, {
|
|
7914
8116
|
dimension: number;
|
|
@@ -7916,6 +8118,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7916
8118
|
ollama?: Record<string, {
|
|
7917
8119
|
dimension: number;
|
|
7918
8120
|
}> | undefined;
|
|
8121
|
+
"openai-compatible"?: Record<string, {
|
|
8122
|
+
dimension: number;
|
|
8123
|
+
}> | undefined;
|
|
7919
8124
|
}, {
|
|
7920
8125
|
openai?: Record<string, {
|
|
7921
8126
|
dimension: number;
|
|
@@ -7923,23 +8128,26 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
7923
8128
|
ollama?: Record<string, {
|
|
7924
8129
|
dimension: number;
|
|
7925
8130
|
}> | undefined;
|
|
8131
|
+
"openai-compatible"?: Record<string, {
|
|
8132
|
+
dimension: number;
|
|
8133
|
+
}> | undefined;
|
|
7926
8134
|
}>>;
|
|
7927
8135
|
codebaseIndexConfig: z.ZodOptional<z.ZodObject<{
|
|
7928
8136
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
7929
8137
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
7930
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama"]>>;
|
|
8138
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
7931
8139
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
7932
8140
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
7933
8141
|
}, "strip", z.ZodTypeAny, {
|
|
7934
8142
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7935
8143
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7936
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
8144
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7937
8145
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7938
8146
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7939
8147
|
}, {
|
|
7940
8148
|
codebaseIndexEnabled?: boolean | undefined;
|
|
7941
8149
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
7942
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
8150
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
7943
8151
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
7944
8152
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
7945
8153
|
}>>;
|
|
@@ -8015,6 +8223,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8015
8223
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8016
8224
|
codeIndexOpenAiKey?: string | undefined;
|
|
8017
8225
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8226
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8227
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8228
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8018
8229
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8019
8230
|
includeMaxTokens?: boolean | undefined;
|
|
8020
8231
|
diffEnabled?: boolean | undefined;
|
|
@@ -8203,7 +8414,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8203
8414
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8204
8415
|
experiments?: {
|
|
8205
8416
|
powerSteering: boolean;
|
|
8417
|
+
marketplace: boolean;
|
|
8206
8418
|
concurrentFileReads: boolean;
|
|
8419
|
+
disableCompletionCommand: boolean;
|
|
8207
8420
|
} | undefined;
|
|
8208
8421
|
codebaseIndexModels?: {
|
|
8209
8422
|
openai?: Record<string, {
|
|
@@ -8212,11 +8425,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8212
8425
|
ollama?: Record<string, {
|
|
8213
8426
|
dimension: number;
|
|
8214
8427
|
}> | undefined;
|
|
8428
|
+
"openai-compatible"?: Record<string, {
|
|
8429
|
+
dimension: number;
|
|
8430
|
+
}> | undefined;
|
|
8215
8431
|
} | undefined;
|
|
8216
8432
|
codebaseIndexConfig?: {
|
|
8217
8433
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8218
8434
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8219
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
8435
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8220
8436
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8221
8437
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8222
8438
|
} | undefined;
|
|
@@ -8236,6 +8452,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8236
8452
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8237
8453
|
codeIndexOpenAiKey?: string | undefined;
|
|
8238
8454
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8455
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8456
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8457
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8239
8458
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8240
8459
|
includeMaxTokens?: boolean | undefined;
|
|
8241
8460
|
diffEnabled?: boolean | undefined;
|
|
@@ -8424,7 +8643,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8424
8643
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8425
8644
|
experiments?: {
|
|
8426
8645
|
powerSteering: boolean;
|
|
8646
|
+
marketplace: boolean;
|
|
8427
8647
|
concurrentFileReads: boolean;
|
|
8648
|
+
disableCompletionCommand: boolean;
|
|
8428
8649
|
} | undefined;
|
|
8429
8650
|
codebaseIndexModels?: {
|
|
8430
8651
|
openai?: Record<string, {
|
|
@@ -8433,11 +8654,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8433
8654
|
ollama?: Record<string, {
|
|
8434
8655
|
dimension: number;
|
|
8435
8656
|
}> | undefined;
|
|
8657
|
+
"openai-compatible"?: Record<string, {
|
|
8658
|
+
dimension: number;
|
|
8659
|
+
}> | undefined;
|
|
8436
8660
|
} | undefined;
|
|
8437
8661
|
codebaseIndexConfig?: {
|
|
8438
8662
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8439
8663
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8440
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
8664
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8441
8665
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8442
8666
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8443
8667
|
} | undefined;
|
|
@@ -8463,6 +8687,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8463
8687
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8464
8688
|
codeIndexOpenAiKey?: string | undefined;
|
|
8465
8689
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8690
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8691
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8692
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8466
8693
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8467
8694
|
includeMaxTokens?: boolean | undefined;
|
|
8468
8695
|
diffEnabled?: boolean | undefined;
|
|
@@ -8651,7 +8878,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8651
8878
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8652
8879
|
experiments?: {
|
|
8653
8880
|
powerSteering: boolean;
|
|
8881
|
+
marketplace: boolean;
|
|
8654
8882
|
concurrentFileReads: boolean;
|
|
8883
|
+
disableCompletionCommand: boolean;
|
|
8655
8884
|
} | undefined;
|
|
8656
8885
|
codebaseIndexModels?: {
|
|
8657
8886
|
openai?: Record<string, {
|
|
@@ -8660,11 +8889,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8660
8889
|
ollama?: Record<string, {
|
|
8661
8890
|
dimension: number;
|
|
8662
8891
|
}> | undefined;
|
|
8892
|
+
"openai-compatible"?: Record<string, {
|
|
8893
|
+
dimension: number;
|
|
8894
|
+
}> | undefined;
|
|
8663
8895
|
} | undefined;
|
|
8664
8896
|
codebaseIndexConfig?: {
|
|
8665
8897
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8666
8898
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8667
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
8899
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8668
8900
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8669
8901
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8670
8902
|
} | undefined;
|
|
@@ -8689,6 +8921,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8689
8921
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8690
8922
|
codeIndexOpenAiKey?: string | undefined;
|
|
8691
8923
|
codeIndexQdrantApiKey?: string | undefined;
|
|
8924
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
8925
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
8926
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8692
8927
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8693
8928
|
includeMaxTokens?: boolean | undefined;
|
|
8694
8929
|
diffEnabled?: boolean | undefined;
|
|
@@ -8877,7 +9112,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8877
9112
|
terminalCompressProgressBar?: boolean | undefined;
|
|
8878
9113
|
experiments?: {
|
|
8879
9114
|
powerSteering: boolean;
|
|
9115
|
+
marketplace: boolean;
|
|
8880
9116
|
concurrentFileReads: boolean;
|
|
9117
|
+
disableCompletionCommand: boolean;
|
|
8881
9118
|
} | undefined;
|
|
8882
9119
|
codebaseIndexModels?: {
|
|
8883
9120
|
openai?: Record<string, {
|
|
@@ -8886,11 +9123,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8886
9123
|
ollama?: Record<string, {
|
|
8887
9124
|
dimension: number;
|
|
8888
9125
|
}> | undefined;
|
|
9126
|
+
"openai-compatible"?: Record<string, {
|
|
9127
|
+
dimension: number;
|
|
9128
|
+
}> | undefined;
|
|
8889
9129
|
} | undefined;
|
|
8890
9130
|
codebaseIndexConfig?: {
|
|
8891
9131
|
codebaseIndexEnabled?: boolean | undefined;
|
|
8892
9132
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
8893
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
9133
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
8894
9134
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
8895
9135
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
8896
9136
|
} | undefined;
|
|
@@ -8918,6 +9158,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
8918
9158
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
8919
9159
|
codeIndexOpenAiKey?: string | undefined;
|
|
8920
9160
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9161
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9162
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9163
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
8921
9164
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
8922
9165
|
includeMaxTokens?: boolean | undefined;
|
|
8923
9166
|
diffEnabled?: boolean | undefined;
|
|
@@ -9106,7 +9349,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9106
9349
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9107
9350
|
experiments?: {
|
|
9108
9351
|
powerSteering: boolean;
|
|
9352
|
+
marketplace: boolean;
|
|
9109
9353
|
concurrentFileReads: boolean;
|
|
9354
|
+
disableCompletionCommand: boolean;
|
|
9110
9355
|
} | undefined;
|
|
9111
9356
|
codebaseIndexModels?: {
|
|
9112
9357
|
openai?: Record<string, {
|
|
@@ -9115,11 +9360,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9115
9360
|
ollama?: Record<string, {
|
|
9116
9361
|
dimension: number;
|
|
9117
9362
|
}> | undefined;
|
|
9363
|
+
"openai-compatible"?: Record<string, {
|
|
9364
|
+
dimension: number;
|
|
9365
|
+
}> | undefined;
|
|
9118
9366
|
} | undefined;
|
|
9119
9367
|
codebaseIndexConfig?: {
|
|
9120
9368
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9121
9369
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9122
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
9370
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9123
9371
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9124
9372
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9125
9373
|
} | undefined;
|
|
@@ -9147,6 +9395,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9147
9395
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9148
9396
|
codeIndexOpenAiKey?: string | undefined;
|
|
9149
9397
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9398
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9399
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9400
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9150
9401
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9151
9402
|
includeMaxTokens?: boolean | undefined;
|
|
9152
9403
|
diffEnabled?: boolean | undefined;
|
|
@@ -9335,7 +9586,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9335
9586
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9336
9587
|
experiments?: {
|
|
9337
9588
|
powerSteering: boolean;
|
|
9589
|
+
marketplace: boolean;
|
|
9338
9590
|
concurrentFileReads: boolean;
|
|
9591
|
+
disableCompletionCommand: boolean;
|
|
9339
9592
|
} | undefined;
|
|
9340
9593
|
codebaseIndexModels?: {
|
|
9341
9594
|
openai?: Record<string, {
|
|
@@ -9344,11 +9597,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9344
9597
|
ollama?: Record<string, {
|
|
9345
9598
|
dimension: number;
|
|
9346
9599
|
}> | undefined;
|
|
9600
|
+
"openai-compatible"?: Record<string, {
|
|
9601
|
+
dimension: number;
|
|
9602
|
+
}> | undefined;
|
|
9347
9603
|
} | undefined;
|
|
9348
9604
|
codebaseIndexConfig?: {
|
|
9349
9605
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9350
9606
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9351
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
9607
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9352
9608
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9353
9609
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9354
9610
|
} | undefined;
|
|
@@ -9398,6 +9654,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9398
9654
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9399
9655
|
codeIndexOpenAiKey?: string | undefined;
|
|
9400
9656
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9657
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9658
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9659
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9401
9660
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9402
9661
|
includeMaxTokens?: boolean | undefined;
|
|
9403
9662
|
diffEnabled?: boolean | undefined;
|
|
@@ -9586,7 +9845,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9586
9845
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9587
9846
|
experiments?: {
|
|
9588
9847
|
powerSteering: boolean;
|
|
9848
|
+
marketplace: boolean;
|
|
9589
9849
|
concurrentFileReads: boolean;
|
|
9850
|
+
disableCompletionCommand: boolean;
|
|
9590
9851
|
} | undefined;
|
|
9591
9852
|
codebaseIndexModels?: {
|
|
9592
9853
|
openai?: Record<string, {
|
|
@@ -9595,11 +9856,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9595
9856
|
ollama?: Record<string, {
|
|
9596
9857
|
dimension: number;
|
|
9597
9858
|
}> | undefined;
|
|
9859
|
+
"openai-compatible"?: Record<string, {
|
|
9860
|
+
dimension: number;
|
|
9861
|
+
}> | undefined;
|
|
9598
9862
|
} | undefined;
|
|
9599
9863
|
codebaseIndexConfig?: {
|
|
9600
9864
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9601
9865
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9602
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
9866
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9603
9867
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9604
9868
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9605
9869
|
} | undefined;
|
|
@@ -9638,6 +9902,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9638
9902
|
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
9639
9903
|
codeIndexOpenAiKey?: string | undefined;
|
|
9640
9904
|
codeIndexQdrantApiKey?: string | undefined;
|
|
9905
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
9906
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
9907
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
9641
9908
|
apiProvider?: "openai" | "ollama" | "anthropic" | "glama" | "openrouter" | "bedrock" | "vertex" | "vscode-lm" | "lmstudio" | "gemini" | "openai-native" | "mistral" | "deepseek" | "unbound" | "requesty" | "human-relay" | "fake-ai" | "xai" | "groq" | "chutes" | "litellm" | undefined;
|
|
9642
9909
|
includeMaxTokens?: boolean | undefined;
|
|
9643
9910
|
diffEnabled?: boolean | undefined;
|
|
@@ -9826,7 +10093,9 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9826
10093
|
terminalCompressProgressBar?: boolean | undefined;
|
|
9827
10094
|
experiments?: {
|
|
9828
10095
|
powerSteering: boolean;
|
|
10096
|
+
marketplace: boolean;
|
|
9829
10097
|
concurrentFileReads: boolean;
|
|
10098
|
+
disableCompletionCommand: boolean;
|
|
9830
10099
|
} | undefined;
|
|
9831
10100
|
codebaseIndexModels?: {
|
|
9832
10101
|
openai?: Record<string, {
|
|
@@ -9835,11 +10104,14 @@ declare const ipcMessageSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
9835
10104
|
ollama?: Record<string, {
|
|
9836
10105
|
dimension: number;
|
|
9837
10106
|
}> | undefined;
|
|
10107
|
+
"openai-compatible"?: Record<string, {
|
|
10108
|
+
dimension: number;
|
|
10109
|
+
}> | undefined;
|
|
9838
10110
|
} | undefined;
|
|
9839
10111
|
codebaseIndexConfig?: {
|
|
9840
10112
|
codebaseIndexEnabled?: boolean | undefined;
|
|
9841
10113
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
9842
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
10114
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
9843
10115
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
9844
10116
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
9845
10117
|
} | undefined;
|
|
@@ -10689,19 +10961,19 @@ interface RooCodeIpcServer extends EventEmitter<IpcServerEvents> {
|
|
|
10689
10961
|
declare const codebaseIndexConfigSchema: z.ZodObject<{
|
|
10690
10962
|
codebaseIndexEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
10691
10963
|
codebaseIndexQdrantUrl: z.ZodOptional<z.ZodString>;
|
|
10692
|
-
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama"]>>;
|
|
10964
|
+
codebaseIndexEmbedderProvider: z.ZodOptional<z.ZodEnum<["openai", "ollama", "openai-compatible"]>>;
|
|
10693
10965
|
codebaseIndexEmbedderBaseUrl: z.ZodOptional<z.ZodString>;
|
|
10694
10966
|
codebaseIndexEmbedderModelId: z.ZodOptional<z.ZodString>;
|
|
10695
10967
|
}, "strip", z.ZodTypeAny, {
|
|
10696
10968
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10697
10969
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10698
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
10970
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10699
10971
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10700
10972
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10701
10973
|
}, {
|
|
10702
10974
|
codebaseIndexEnabled?: boolean | undefined;
|
|
10703
10975
|
codebaseIndexQdrantUrl?: string | undefined;
|
|
10704
|
-
codebaseIndexEmbedderProvider?: "openai" | "ollama" | undefined;
|
|
10976
|
+
codebaseIndexEmbedderProvider?: "openai" | "ollama" | "openai-compatible" | undefined;
|
|
10705
10977
|
codebaseIndexEmbedderBaseUrl?: string | undefined;
|
|
10706
10978
|
codebaseIndexEmbedderModelId?: string | undefined;
|
|
10707
10979
|
}>;
|
|
@@ -10724,6 +10996,13 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
10724
10996
|
}, {
|
|
10725
10997
|
dimension: number;
|
|
10726
10998
|
}>>>;
|
|
10999
|
+
"openai-compatible": z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11000
|
+
dimension: z.ZodNumber;
|
|
11001
|
+
}, "strip", z.ZodTypeAny, {
|
|
11002
|
+
dimension: number;
|
|
11003
|
+
}, {
|
|
11004
|
+
dimension: number;
|
|
11005
|
+
}>>>;
|
|
10727
11006
|
}, "strip", z.ZodTypeAny, {
|
|
10728
11007
|
openai?: Record<string, {
|
|
10729
11008
|
dimension: number;
|
|
@@ -10731,6 +11010,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
10731
11010
|
ollama?: Record<string, {
|
|
10732
11011
|
dimension: number;
|
|
10733
11012
|
}> | undefined;
|
|
11013
|
+
"openai-compatible"?: Record<string, {
|
|
11014
|
+
dimension: number;
|
|
11015
|
+
}> | undefined;
|
|
10734
11016
|
}, {
|
|
10735
11017
|
openai?: Record<string, {
|
|
10736
11018
|
dimension: number;
|
|
@@ -10738,6 +11020,9 @@ declare const codebaseIndexModelsSchema: z.ZodObject<{
|
|
|
10738
11020
|
ollama?: Record<string, {
|
|
10739
11021
|
dimension: number;
|
|
10740
11022
|
}> | undefined;
|
|
11023
|
+
"openai-compatible"?: Record<string, {
|
|
11024
|
+
dimension: number;
|
|
11025
|
+
}> | undefined;
|
|
10741
11026
|
}>;
|
|
10742
11027
|
type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
10743
11028
|
/**
|
|
@@ -10746,12 +11031,21 @@ type CodebaseIndexModels = z.infer<typeof codebaseIndexModelsSchema>;
|
|
|
10746
11031
|
declare const codebaseIndexProviderSchema: z.ZodObject<{
|
|
10747
11032
|
codeIndexOpenAiKey: z.ZodOptional<z.ZodString>;
|
|
10748
11033
|
codeIndexQdrantApiKey: z.ZodOptional<z.ZodString>;
|
|
11034
|
+
codebaseIndexOpenAiCompatibleBaseUrl: z.ZodOptional<z.ZodString>;
|
|
11035
|
+
codebaseIndexOpenAiCompatibleApiKey: z.ZodOptional<z.ZodString>;
|
|
11036
|
+
codebaseIndexOpenAiCompatibleModelDimension: z.ZodOptional<z.ZodNumber>;
|
|
10749
11037
|
}, "strip", z.ZodTypeAny, {
|
|
10750
11038
|
codeIndexOpenAiKey?: string | undefined;
|
|
10751
11039
|
codeIndexQdrantApiKey?: string | undefined;
|
|
11040
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11041
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11042
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10752
11043
|
}, {
|
|
10753
11044
|
codeIndexOpenAiKey?: string | undefined;
|
|
10754
11045
|
codeIndexQdrantApiKey?: string | undefined;
|
|
11046
|
+
codebaseIndexOpenAiCompatibleBaseUrl?: string | undefined;
|
|
11047
|
+
codebaseIndexOpenAiCompatibleApiKey?: string | undefined;
|
|
11048
|
+
codebaseIndexOpenAiCompatibleModelDimension?: number | undefined;
|
|
10755
11049
|
}>;
|
|
10756
11050
|
type CodebaseIndexProvider = z.infer<typeof codebaseIndexProviderSchema>;
|
|
10757
11051
|
|
|
@@ -11001,25 +11295,48 @@ type OrganizationSettings = z.infer<typeof organizationSettingsSchema>;
|
|
|
11001
11295
|
*/
|
|
11002
11296
|
declare const ORGANIZATION_ALLOW_ALL: OrganizationAllowList;
|
|
11003
11297
|
declare const ORGANIZATION_DEFAULT: OrganizationSettings;
|
|
11298
|
+
/**
|
|
11299
|
+
* Share Types
|
|
11300
|
+
*/
|
|
11301
|
+
declare const shareResponseSchema: z.ZodObject<{
|
|
11302
|
+
success: z.ZodBoolean;
|
|
11303
|
+
shareUrl: z.ZodOptional<z.ZodString>;
|
|
11304
|
+
error: z.ZodOptional<z.ZodString>;
|
|
11305
|
+
}, "strip", z.ZodTypeAny, {
|
|
11306
|
+
success: boolean;
|
|
11307
|
+
error?: string | undefined;
|
|
11308
|
+
shareUrl?: string | undefined;
|
|
11309
|
+
}, {
|
|
11310
|
+
success: boolean;
|
|
11311
|
+
error?: string | undefined;
|
|
11312
|
+
shareUrl?: string | undefined;
|
|
11313
|
+
}>;
|
|
11314
|
+
type ShareResponse = z.infer<typeof shareResponseSchema>;
|
|
11004
11315
|
|
|
11005
11316
|
/**
|
|
11006
11317
|
* ExperimentId
|
|
11007
11318
|
*/
|
|
11008
|
-
declare const experimentIds: readonly ["powerSteering", "concurrentFileReads"];
|
|
11009
|
-
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "concurrentFileReads"]>;
|
|
11319
|
+
declare const experimentIds: readonly ["powerSteering", "marketplace", "concurrentFileReads", "disableCompletionCommand"];
|
|
11320
|
+
declare const experimentIdsSchema: z.ZodEnum<["powerSteering", "marketplace", "concurrentFileReads", "disableCompletionCommand"]>;
|
|
11010
11321
|
type ExperimentId = z.infer<typeof experimentIdsSchema>;
|
|
11011
11322
|
/**
|
|
11012
11323
|
* Experiments
|
|
11013
11324
|
*/
|
|
11014
11325
|
declare const experimentsSchema: z.ZodObject<{
|
|
11015
11326
|
powerSteering: z.ZodBoolean;
|
|
11327
|
+
marketplace: z.ZodBoolean;
|
|
11016
11328
|
concurrentFileReads: z.ZodBoolean;
|
|
11329
|
+
disableCompletionCommand: z.ZodBoolean;
|
|
11017
11330
|
}, "strip", z.ZodTypeAny, {
|
|
11018
11331
|
powerSteering: boolean;
|
|
11332
|
+
marketplace: boolean;
|
|
11019
11333
|
concurrentFileReads: boolean;
|
|
11334
|
+
disableCompletionCommand: boolean;
|
|
11020
11335
|
}, {
|
|
11021
11336
|
powerSteering: boolean;
|
|
11337
|
+
marketplace: boolean;
|
|
11022
11338
|
concurrentFileReads: boolean;
|
|
11339
|
+
disableCompletionCommand: boolean;
|
|
11023
11340
|
}>;
|
|
11024
11341
|
type Experiments = z.infer<typeof experimentsSchema>;
|
|
11025
11342
|
|
|
@@ -11307,6 +11624,8 @@ declare enum TelemetryEventName {
|
|
|
11307
11624
|
PROMPT_ENHANCED = "Prompt Enhanced",
|
|
11308
11625
|
TITLE_BUTTON_CLICKED = "Title Button Clicked",
|
|
11309
11626
|
AUTHENTICATION_INITIATED = "Authentication Initiated",
|
|
11627
|
+
MARKETPLACE_ITEM_INSTALLED = "Marketplace Item Installed",
|
|
11628
|
+
MARKETPLACE_ITEM_REMOVED = "Marketplace Item Removed",
|
|
11310
11629
|
SCHEMA_VALIDATION_ERROR = "Schema Validation Error",
|
|
11311
11630
|
DIFF_APPLICATION_ERROR = "Diff Application Error",
|
|
11312
11631
|
SHELL_INTEGRATION_ERROR = "Shell Integration Error",
|
|
@@ -11411,7 +11730,7 @@ type TelemetryEvent = {
|
|
|
11411
11730
|
* RooCodeTelemetryEvent
|
|
11412
11731
|
*/
|
|
11413
11732
|
declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11414
|
-
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION]>;
|
|
11733
|
+
type: z.ZodEnum<[TelemetryEventName.TASK_CREATED, TelemetryEventName.TASK_RESTARTED, TelemetryEventName.TASK_COMPLETED, TelemetryEventName.TASK_CONVERSATION_MESSAGE, TelemetryEventName.MODE_SWITCH, TelemetryEventName.TOOL_USED, TelemetryEventName.CHECKPOINT_CREATED, TelemetryEventName.CHECKPOINT_RESTORED, TelemetryEventName.CHECKPOINT_DIFFED, TelemetryEventName.CODE_ACTION_USED, TelemetryEventName.PROMPT_ENHANCED, TelemetryEventName.TITLE_BUTTON_CLICKED, TelemetryEventName.AUTHENTICATION_INITIATED, TelemetryEventName.MARKETPLACE_ITEM_INSTALLED, TelemetryEventName.MARKETPLACE_ITEM_REMOVED, TelemetryEventName.SCHEMA_VALIDATION_ERROR, TelemetryEventName.DIFF_APPLICATION_ERROR, TelemetryEventName.SHELL_INTEGRATION_ERROR, TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR, TelemetryEventName.CONTEXT_CONDENSED, TelemetryEventName.SLIDING_WINDOW_TRUNCATION]>;
|
|
11415
11734
|
properties: z.ZodObject<{
|
|
11416
11735
|
taskId: z.ZodOptional<z.ZodString>;
|
|
11417
11736
|
apiProvider: z.ZodOptional<z.ZodEnum<["anthropic", "glama", "openrouter", "bedrock", "vertex", "openai", "ollama", "vscode-lm", "lmstudio", "gemini", "openai-native", "mistral", "deepseek", "unbound", "requesty", "human-relay", "fake-ai", "xai", "groq", "chutes", "litellm"]>>;
|
|
@@ -11453,7 +11772,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
11453
11772
|
isSubtask?: boolean | undefined;
|
|
11454
11773
|
}>;
|
|
11455
11774
|
}, "strip", z.ZodTypeAny, {
|
|
11456
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
11775
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
11457
11776
|
properties: {
|
|
11458
11777
|
appName: string;
|
|
11459
11778
|
appVersion: string;
|
|
@@ -11469,7 +11788,7 @@ declare const rooCodeTelemetryEventSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
11469
11788
|
isSubtask?: boolean | undefined;
|
|
11470
11789
|
};
|
|
11471
11790
|
}, {
|
|
11472
|
-
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
11791
|
+
type: TelemetryEventName.TASK_CREATED | TelemetryEventName.TASK_RESTARTED | TelemetryEventName.TASK_COMPLETED | TelemetryEventName.TASK_CONVERSATION_MESSAGE | TelemetryEventName.MODE_SWITCH | TelemetryEventName.TOOL_USED | TelemetryEventName.CHECKPOINT_CREATED | TelemetryEventName.CHECKPOINT_RESTORED | TelemetryEventName.CHECKPOINT_DIFFED | TelemetryEventName.CONTEXT_CONDENSED | TelemetryEventName.SLIDING_WINDOW_TRUNCATION | TelemetryEventName.CODE_ACTION_USED | TelemetryEventName.PROMPT_ENHANCED | TelemetryEventName.TITLE_BUTTON_CLICKED | TelemetryEventName.AUTHENTICATION_INITIATED | TelemetryEventName.MARKETPLACE_ITEM_INSTALLED | TelemetryEventName.MARKETPLACE_ITEM_REMOVED | TelemetryEventName.SCHEMA_VALIDATION_ERROR | TelemetryEventName.DIFF_APPLICATION_ERROR | TelemetryEventName.SHELL_INTEGRATION_ERROR | TelemetryEventName.CONSECUTIVE_MISTAKE_ERROR;
|
|
11473
11792
|
properties: {
|
|
11474
11793
|
appName: string;
|
|
11475
11794
|
appVersion: string;
|
|
@@ -11925,7 +12244,7 @@ type TerminalActionPromptType = `TERMINAL_${TerminalActionName}`;
|
|
|
11925
12244
|
/**
|
|
11926
12245
|
* Command
|
|
11927
12246
|
*/
|
|
11928
|
-
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "popoutButtonClicked", "accountButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "focusInput", "acceptInput"];
|
|
12247
|
+
declare const commandIds: readonly ["activationCompleted", "plusButtonClicked", "promptsButtonClicked", "mcpButtonClicked", "historyButtonClicked", "marketplaceButtonClicked", "popoutButtonClicked", "accountButtonClicked", "settingsButtonClicked", "openInNewTab", "showHumanRelayDialog", "registerHumanRelayCallback", "unregisterHumanRelayCallback", "handleHumanRelayResponse", "newTask", "setCustomStoragePath", "focusInput", "acceptInput"];
|
|
11929
12248
|
type CommandId = (typeof commandIds)[number];
|
|
11930
12249
|
/**
|
|
11931
12250
|
* Language
|
|
@@ -11935,4 +12254,4 @@ declare const languagesSchema: z.ZodEnum<["ca", "de", "en", "es", "fr", "hi", "i
|
|
|
11935
12254
|
type Language = z.infer<typeof languagesSchema>;
|
|
11936
12255
|
declare const isLanguage: (value: string) => value is Language;
|
|
11937
12256
|
|
|
11938
|
-
export { ANTHROPIC_DEFAULT_MAX_TOKENS, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_REGION_INFO, type BedrockModelId, type ChutesModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, type DeepSeekModelId, type Equals, type ExperimentId, type Experiments, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, type MistralModelId, type ModeConfig, type ModelInfo, type ModelParameter, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, geminiDefaultModelId, geminiModels, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, keysOf, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mistralDefaultModelId, mistralModels, modeConfigSchema, modelInfoSchema, modelParameters, modelParametersSchema, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|
|
12257
|
+
export { ANTHROPIC_DEFAULT_MAX_TOKENS, type Ack, type AnthropicModelId, type AssertEqual, BEDROCK_DEFAULT_CONTEXT, BEDROCK_DEFAULT_TEMPERATURE, BEDROCK_MAX_TOKENS, BEDROCK_REGIONS, BEDROCK_REGION_INFO, type BedrockModelId, type ChutesModelId, type ClineAsk, type ClineMessage, type ClineSay, type CloudUserInfo, type CodeActionId, type CodeActionName, type CodebaseIndexConfig, type CodebaseIndexModels, type CodebaseIndexProvider, type CommandExecutionStatus, type CommandId, type ContextCondense, type CustomModePrompts, type CustomModesSettings, type CustomSupportPrompts, DEEP_SEEK_DEFAULT_TEMPERATURE, type DeepSeekModelId, EVALS_SETTINGS, EVALS_TIMEOUT, type Equals, type ExperimentId, type Experiments, GLAMA_DEFAULT_TEMPERATURE, GLOBAL_SETTINGS_KEYS, GLOBAL_STATE_KEYS, type GeminiModelId, type GlobalSettings, type GlobalState, type GroqModelId, type GroupEntry, type GroupOptions, type HistoryItem, type IpcClientEvents, type IpcMessage, IpcMessageType, IpcOrigin, type IpcServerEvents, type Keys, LITELLM_COMPUTER_USE_MODELS, LMSTUDIO_DEFAULT_TEMPERATURE, type Language, MISTRAL_DEFAULT_TEMPERATURE, MODEL_ID_KEYS, type MistralModelId, type ModeConfig, type ModelInfo, type ModelParameter, OPENAI_AZURE_AI_INFERENCE_PATH, OPENAI_NATIVE_DEFAULT_TEMPERATURE, OPENROUTER_DEFAULT_PROVIDER_NAME, OPEN_ROUTER_COMPUTER_USE_MODELS, OPEN_ROUTER_PROMPT_CACHING_MODELS, OPEN_ROUTER_REASONING_BUDGET_MODELS, OPEN_ROUTER_REQUIRED_REASONING_BUDGET_MODELS, ORGANIZATION_ALLOW_ALL, ORGANIZATION_DEFAULT, type OpenAiNativeModelId, type OrganizationAllowList, type OrganizationCloudSettings, type OrganizationDefaultSettings, type OrganizationSettings, PROVIDER_SETTINGS_KEYS, type PromptComponent, type ProviderName, type ProviderSettings, type ProviderSettingsEntry, type ReasoningEffort, type RooCodeAPI, type RooCodeAPIEvents, RooCodeEventName, type RooCodeEvents, type RooCodeIpcServer, type RooCodeSettings, type RooCodeTelemetryEvent, SECRET_STATE_KEYS, type SecretState, type ShareResponse, type TaskCommand, TaskCommandName, type TaskEvent, type TelemetryClient, type TelemetryEvent, TelemetryEventName, type TelemetryEventSubscription, type TelemetryProperties, type TelemetryPropertiesProvider, type TelemetrySetting, type TerminalActionId, type TerminalActionName, type TerminalActionPromptType, type TokenUsage, type ToolGroup, type ToolName, type ToolProgressStatus, type ToolUsage, VERTEX_REGIONS, type Values, type VertexModelId, type VscodeLlmModelId, type XAIModelId, ackSchema, anthropicDefaultModelId, anthropicModels, appPropertiesSchema, azureOpenAiDefaultApiVersion, bedrockDefaultModelId, bedrockDefaultPromptRouterModelId, bedrockModels, chutesDefaultModelId, chutesModels, clineAskSchema, clineAsks, clineMessageSchema, clineSaySchema, clineSays, codeActionIds, codebaseIndexConfigSchema, codebaseIndexModelsSchema, codebaseIndexProviderSchema, commandExecutionStatusSchema, commandIds, contextCondenseSchema, customModePromptsSchema, customModesSettingsSchema, customSupportPromptsSchema, deepSeekDefaultModelId, deepSeekModels, experimentIds, experimentIdsSchema, experimentsSchema, geminiDefaultModelId, geminiModels, getModelId, glamaDefaultModelId, glamaDefaultModelInfo, globalSettingsSchema, groqDefaultModelId, groqModels, groupEntrySchema, groupOptionsSchema, historyItemSchema, ipcMessageSchema, isGlobalStateKey, isLanguage, isModelParameter, isSecretStateKey, keysOf, languages, languagesSchema, litellmDefaultModelId, litellmDefaultModelInfo, mistralDefaultModelId, mistralModels, modeConfigSchema, modelInfoSchema, modelParameters, modelParametersSchema, openAiModelInfoSaneDefaults, openAiNativeDefaultModelId, openAiNativeModels, openRouterDefaultModelId, openRouterDefaultModelInfo, organizationAllowListSchema, organizationCloudSettingsSchema, organizationDefaultSettingsSchema, organizationSettingsSchema, promptComponentSchema, providerNames, providerNamesSchema, providerSettingsEntrySchema, providerSettingsSchema, providerSettingsSchemaDiscriminated, reasoningEfforts, reasoningEffortsSchema, requestyDefaultModelId, requestyDefaultModelInfo, rooCodeEventsSchema, rooCodeSettingsSchema, rooCodeTelemetryEventSchema, shareResponseSchema, taskCommandSchema, taskEventSchema, taskPropertiesSchema, telemetryPropertiesSchema, telemetrySettings, telemetrySettingsSchema, terminalActionIds, tokenUsageSchema, toolGroups, toolGroupsSchema, toolNames, toolNamesSchema, toolProgressStatusSchema, toolUsageSchema, unboundDefaultModelId, unboundDefaultModelInfo, vertexDefaultModelId, vertexModels, vscodeLlmDefaultModelId, vscodeLlmModels, xaiDefaultModelId, xaiModels };
|