Skip to content

Commit 83de565

Browse files
committed
feat: increase max concurrent file reads and adjust slider range in settings
1 parent b4fdef6 commit 83de565

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/webview/ClineProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ export class ClineProvider extends EventEmitter<ClineProviderEvents> implements
13731373
telemetrySetting: stateValues.telemetrySetting || "unset",
13741374
showRooIgnoredFiles: stateValues.showRooIgnoredFiles ?? true,
13751375
maxReadFileLine: stateValues.maxReadFileLine ?? 500,
1376-
maxConcurrentFileReads: stateValues.maxConcurrentFileReads ?? 1,
1376+
maxConcurrentFileReads: stateValues.maxConcurrentFileReads ?? 5,
13771377
historyPreviewCollapsed: stateValues.historyPreviewCollapsed ?? false,
13781378
}
13791379
}

webview-ui/src/components/settings/ContextManagementSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export const ContextManagementSettings = ({
105105
<div className="flex items-center gap-2">
106106
<Slider
107107
min={1}
108-
max={15}
108+
max={100}
109109
step={1}
110110
value={[maxConcurrentFileReads ?? 5]}
111111
onValueChange={([value]) => setCachedStateField("maxConcurrentFileReads", value)}

0 commit comments

Comments
 (0)