Skip to content

Commit 2988ace

Browse files
authored
Change auto-model default batch size (#3036)
1 parent d24352b commit 2988ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ export class ModelConfigListener extends ConfigListener implements ModelConfig {
735735
* Note that the model may return fewer than this number of candidates.
736736
*/
737737
public get llmGenerationBatchSize(): number {
738-
return LLM_GENERATION_BATCH_SIZE.getValue<number | null>() || 10;
738+
return LLM_GENERATION_BATCH_SIZE.getValue<number | null>() || 5;
739739
}
740740

741741
public getExtensionsDirectory(languageId: string): string | undefined {

0 commit comments

Comments
 (0)