mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
19 lines
555 B
C#
19 lines
555 B
C#
using Microsoft.AspNetCore.Components;
|
|
using Microsoft.AspNetCore.Components.Rendering;
|
|
|
|
namespace AIStudio.Assistants;
|
|
|
|
//
|
|
// See https://stackoverflow.com/a/77300384/2258393 for why this class is necessary
|
|
//
|
|
|
|
public abstract class AssistantBaseCore : AssistantBase
|
|
{
|
|
private protected sealed override RenderFragment Body => this.BuildRenderTree;
|
|
|
|
// Allow content to be provided by a .razor file but without
|
|
// overriding the content of the base class
|
|
protected new virtual void BuildRenderTree(RenderTreeBuilder builder)
|
|
{
|
|
}
|
|
} |