BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationStorage.cs
2023-09-05 22:19:36 -05:00

9 lines
275 B
C#

namespace BotSharp.Abstraction.Conversations;
public interface IConversationStorage
{
void InitStorage(string conversationId);
void Append(string conversationId, string agentId, RoleDialogModel dialog);
List<RoleDialogModel> GetDialogs(string conversationId);
}