mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 10:59:46 +00:00
12 lines
424 B
C#
12 lines
424 B
C#
using AIStudio.Components;
|
|
|
|
namespace AIStudio.Assistants;
|
|
|
|
public abstract class AssistantLowerBase : MSGComponentBase
|
|
{
|
|
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";
|
|
} |