diff --git a/src/public/app/widgets/llm_chat_panel.ts b/src/public/app/widgets/llm_chat_panel.ts index 154b8f1e3..3ecfd0eab 100644 --- a/src/public/app/widgets/llm_chat_panel.ts +++ b/src/public/app/widgets/llm_chat_panel.ts @@ -6,6 +6,7 @@ import utils from "../services/utils.js"; import { t } from "../services/i18n.js"; import libraryLoader from "../services/library_loader.js"; import { applySyntaxHighlight } from "../services/syntax_highlight.js"; +import options from "../services/options.js"; // Import the LLM Chat CSS (async function() { @@ -32,12 +33,16 @@ export default class LlmChatPanel extends BasicWidget { private loadingIndicator!: HTMLElement; private sourcesList!: HTMLElement; private useAdvancedContextCheckbox!: HTMLInputElement; + private validationWarning!: HTMLElement; private sessionId: string | null = null; private currentNoteId: string | null = null; doRender() { this.$widget = $(`
+ + +