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

9 lines
292 B
C#
Raw Normal View History

2023-06-27 18:31:13 +00:00
namespace BotSharp.Abstraction.Conversations;
public interface IConversationStorage
{
2023-09-09 20:13:19 +00:00
void Append(string conversationId, RoleDialogModel dialog);
2025-01-13 07:14:36 +00:00
void Append(string conversationId, IEnumerable<RoleDialogModel> dialogs);
2023-08-09 21:49:55 +00:00
List<RoleDialogModel> GetDialogs(string conversationId);
2023-06-27 18:31:13 +00:00
}