BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationStorage.cs
2025-01-13 01:14:36 -06:00

9 lines
292 B
C#

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