From 02b3d5c7abd07293b2b42a5b7aaa02c3e7657228 Mon Sep 17 00:00:00 2001 From: Nils Kruthoff Date: Tue, 30 Jun 2026 23:54:38 +0200 Subject: [PATCH] added an info to remind of the use of powerful llms --- .../Assistants/Builder/AssistantBuilder.razor | 2 ++ .../Assistants/Builder/AssistantBuilder.razor.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor b/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor index fb24c6be..14407d4f 100644 --- a/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor +++ b/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor @@ -38,6 +38,7 @@ + @this.highPerformanceLLMInfo } else { @@ -70,6 +71,7 @@ else + @this.highPerformanceLLMInfo } @code { diff --git a/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor.cs b/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor.cs index 5244449e..55087fb8 100644 --- a/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor.cs +++ b/app/MindWork AI Studio/Assistants/Builder/AssistantBuilder.razor.cs @@ -97,6 +97,8 @@ public partial class AssistantBuilder : AssistantBaseCore private string reviewNotes = string.Empty; private string generatedLuaAssistant = string.Empty; private Guid pluginId = Guid.NewGuid(); + + private string highPerformanceLLMInfo => T("It is recommended to a powerful LLM."); private static readonly AssistantContextFile[] ASSISTANT_CONTEXT_FILES = [ new("Assistant plugin schema", "Plugins/assistants/README.md", IsRequired: true),