We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55557df commit ae6dc87Copy full SHA for ae6dc87
extensions/ql-vscode/src/config.ts
@@ -714,6 +714,11 @@ const EXTENSIONS_DIRECTORY = new Setting(
714
"extensionsDirectory",
715
DATA_EXTENSIONS,
716
);
717
+const MODEL_DETAILS_VIEW = new Setting("modelDetailsView", DATA_EXTENSIONS);
718
+
719
+export function showModelDetailsView(): boolean {
720
+ return !!MODEL_DETAILS_VIEW.getValue<boolean>();
721
+}
722
723
export function showLlmGeneration(): boolean {
724
return !!LLM_GENERATION.getValue<boolean>();
0 commit comments