mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-14 15:49:06 +00:00
12 lines
433 B
C#
12 lines
433 B
C#
|
using Microsoft.AspNetCore.Components;
|
||
|
|
||
|
namespace AIStudio.Assistants;
|
||
|
|
||
|
public abstract class AssistantLowerBase : ComponentBase
|
||
|
{
|
||
|
protected static readonly Dictionary<string, object?> USER_INPUT_ATTRIBUTES = new();
|
||
|
|
||
|
internal const string RESULT_DIV_ID = "assistantResult";
|
||
|
internal const string BEFORE_RESULT_DIV_ID = "beforeAssistantResult";
|
||
|
internal const string AFTER_RESULT_DIV_ID = "afterAssistantResult";
|
||
|
}
|