diff --git a/app/MindWork AI Studio/Assistants/AssistantBase.razor b/app/MindWork AI Studio/Assistants/AssistantBase.razor
index 3a866034..b6da8421 100644
--- a/app/MindWork AI Studio/Assistants/AssistantBase.razor
+++ b/app/MindWork AI Studio/Assistants/AssistantBase.razor
@@ -183,9 +183,14 @@
}
+ @if (this.FooterActions is not null)
+ {
+ @this.FooterActions
+ }
+
-
\ No newline at end of file
+
diff --git a/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs b/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs
index a3939cf4..8b5b6739 100644
--- a/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs
+++ b/app/MindWork AI Studio/Assistants/AssistantBase.razor.cs
@@ -125,6 +125,8 @@ public abstract partial class AssistantBase : AssistantLowerBase wher
private protected virtual RenderFragment? HeaderActions => null;
+ private protected virtual RenderFragment? FooterActions => null;
+
private protected virtual RenderFragment? AfterResultContent => null;
protected virtual IReadOnlyList FooterButtons => [];