Skip to content

Commit 234498a

Browse files
authored
Enable multiple models feature (#3019)
1 parent 40a77df commit 234498a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

extensions/ql-vscode/src/config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,6 @@ const LLM_GENERATION_BATCH_SIZE = new Setting(
707707
MODEL_SETTING,
708708
);
709709
const EXTENSIONS_DIRECTORY = new Setting("extensionsDirectory", MODEL_SETTING);
710-
const SHOW_MULTIPLE_MODELS = new Setting("showMultipleModels", MODEL_SETTING);
711710

712711
export interface ModelConfig {
713712
flowGeneration: boolean;
@@ -744,6 +743,6 @@ export class ModelConfigListener extends ConfigListener implements ModelConfig {
744743
}
745744

746745
public get showMultipleModels(): boolean {
747-
return !!SHOW_MULTIPLE_MODELS.getValue<boolean>();
746+
return isCanary();
748747
}
749748
}

0 commit comments

Comments
 (0)