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

8 lines
214 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);
2023-08-09 21:49:55 +00:00
List<RoleDialogModel> GetDialogs(string conversationId);
2023-06-27 18:31:13 +00:00
}