added an info to remind of the use of powerful llms

This commit is contained in:
Nils Kruthoff 2026-06-30 23:54:38 +02:00
parent 348e638758
commit 02b3d5c7ab
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C
2 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,7 @@
</MudExpansionPanels>
<ProviderSelection @bind-ProviderSettings="@this.ProviderSettings" ValidateProvider="@this.ValidatingProvider"/>
<MudAlert Severity="Severity.Info" Square="true" Class="mb-2 mt-n1" Style="width: max-content">@this.highPerformanceLLMInfo</MudAlert>
}
else
{
@ -70,6 +71,7 @@ else
</MudStack>
<ProviderSelection @bind-ProviderSettings="@this.ProviderSettings" ValidateProvider="@this.ValidatingProvider"/>
<MudAlert Severity="Severity.Info" Square="true" Class="mb-2 mt-n1" Style="width: max-content">@this.highPerformanceLLMInfo</MudAlert>
}
@code {

View File

@ -97,6 +97,8 @@ public partial class AssistantBuilder : AssistantBaseCore<NoSettingsPanel>
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),