We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40a77df commit 234498aCopy full SHA for 234498a
extensions/ql-vscode/src/config.ts
@@ -707,7 +707,6 @@ const LLM_GENERATION_BATCH_SIZE = new Setting(
707
MODEL_SETTING,
708
);
709
const EXTENSIONS_DIRECTORY = new Setting("extensionsDirectory", MODEL_SETTING);
710
-const SHOW_MULTIPLE_MODELS = new Setting("showMultipleModels", MODEL_SETTING);
711
712
export interface ModelConfig {
713
flowGeneration: boolean;
@@ -744,6 +743,6 @@ export class ModelConfigListener extends ConfigListener implements ModelConfig {
744
743
}
745
746
public get showMultipleModels(): boolean {
747
- return !!SHOW_MULTIPLE_MODELS.getValue<boolean>();
+ return isCanary();
748
749
0 commit comments