BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/IConversationStorage.cs

9 lines
275 B
C#
Raw Normal View History

2023-06-27 18:31:13 +00:00
namespace BotSharp.Abstraction.Conversations;
public interface IConversationStorage
{
2023-08-09 21:49:55 +00:00
void InitStorage(string conversationId);
2023-08-19 00:15:50 +00:00
void Append(string conversationId, string agentId, RoleDialogModel dialog);
2023-08-09 21:49:55 +00:00
List<RoleDialogModel> GetDialogs(string conversationId);
2023-06-27 18:31:13 +00:00
}