Skip to content

Commit 369e3a6

Browse files
authored
Update default settings for evals (#3130)
1 parent aae6fc0 commit 369e3a6

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

evals/packages/types/src/roo-code-defaults.ts

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ export const rooCodeDefaults: RooCodeSettings = {
66

77
lastShownAnnouncementId: "apr-30-2025-3-15",
88

9+
pinnedApiConfigs: {},
10+
911
autoApprovalEnabled: true,
1012
alwaysAllowReadOnly: true,
1113
alwaysAllowReadOnlyOutsideWorkspace: false,
@@ -22,17 +24,43 @@ export const rooCodeDefaults: RooCodeSettings = {
2224
allowedCommands: ["*"],
2325

2426
browserToolEnabled: false,
27+
browserViewportSize: "900x600",
28+
screenshotQuality: 75,
29+
remoteBrowserEnabled: false,
30+
31+
ttsEnabled: false,
32+
ttsSpeed: 1,
33+
soundEnabled: false,
34+
soundVolume: 0.5,
35+
36+
terminalOutputLineLimit: 500,
37+
terminalShellIntegrationTimeout: 30000,
38+
terminalCommandDelay: 0,
39+
terminalPowershellCounter: false,
40+
terminalZshOhMy: true,
41+
terminalZshClearEolMark: true,
42+
terminalZshP10k: false,
43+
terminalZdotdir: true,
44+
terminalCompressProgressBar: true,
45+
terminalShellIntegrationDisabled: true,
46+
47+
diffEnabled: true,
48+
fuzzyMatchThreshold: 1,
2549

2650
enableCheckpoints: false,
2751

52+
rateLimitSeconds: 0,
2853
maxOpenTabsContext: 20,
2954
maxWorkspaceFiles: 200,
3055
showRooIgnoredFiles: true,
3156
maxReadFileLine: 500,
3257

33-
terminalShellIntegrationDisabled: true,
58+
language: "en",
59+
telemetrySetting: "enabled",
3460

3561
mcpEnabled: false,
3662

3763
mode: "code",
64+
65+
customModes: [],
3866
}

evals/packages/types/src/roo-code.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,6 @@ export const providerSettingsSchema = z.object({
399399
// OpenAI Native
400400
openAiNativeApiKey: z.string().optional(),
401401
openAiNativeBaseUrl: z.string().optional(),
402-
// XAI
403-
xaiApiKey: z.string().optional(),
404402
// Mistral
405403
mistralApiKey: z.string().optional(),
406404
mistralCodestralUrl: z.string().optional(),

0 commit comments

Comments
 (0)