mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 08:39:47 +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";
|
|
} |