mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
added another render fragment for general content below the submit button for all content present after the llm response is finished
This commit is contained in:
parent
fc2cc2b532
commit
52a1657c0a
@ -49,6 +49,11 @@
|
||||
}
|
||||
</MudStack>
|
||||
|
||||
@if (this.BelowSubmitContent is not null)
|
||||
{
|
||||
@this.BelowSubmitContent
|
||||
}
|
||||
|
||||
@if (this.AfterSubmitContent is not null && this.isProcessing)
|
||||
{
|
||||
@this.AfterSubmitContent
|
||||
|
||||
@ -65,6 +65,8 @@ public abstract partial class AssistantBase<TSettings> : AssistantLowerBase wher
|
||||
|
||||
private protected virtual RenderFragment? AfterSubmitContent => null;
|
||||
|
||||
private protected virtual RenderFragment? BelowSubmitContent => null;
|
||||
|
||||
protected virtual bool ShowResult => true;
|
||||
|
||||
protected virtual bool ShowEntireChatThread => false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user