diff --git a/app/MindWork AI Studio/Assistants/AssistantBase.razor b/app/MindWork AI Studio/Assistants/AssistantBase.razor index 90a86b0e..c787269e 100644 --- a/app/MindWork AI Studio/Assistants/AssistantBase.razor +++ b/app/MindWork AI Studio/Assistants/AssistantBase.razor @@ -6,12 +6,23 @@ @(this.Title) + + - - @this.Description - + + + + @this.Description + + + + + Settings + + + @if (this.Body is not null) { @@ -22,6 +33,7 @@ @this.SubmitText + } @@ -112,6 +124,7 @@ } + @if (this.ShowReset) { @@ -128,6 +141,8 @@ { } + + diff --git a/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs b/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs index f6582c39..d692bdbd 100644 --- a/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs +++ b/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs @@ -88,6 +88,8 @@ public abstract partial class AssistantBase : ComponentBase, IMessageBusReceiver protected virtual bool ShowCopyResult => true; protected virtual bool ShowReset => true; + + protected virtual bool ShowAssistantSettings => true; protected virtual ChatThread ConvertToChatThread => this.chatThread ?? new();