2024-05-06 06:51:59 +00:00
|
|
|
namespace BotSharp.Abstraction.Files;
|
2023-11-09 21:11:36 +00:00
|
|
|
|
2024-05-06 06:51:59 +00:00
|
|
|
public interface IBotSharpFileService
|
2023-11-09 21:11:36 +00:00
|
|
|
{
|
|
|
|
|
string GetDirectory(string conversationId);
|
2024-05-03 22:24:18 +00:00
|
|
|
IEnumerable<OutputFileModel> GetConversationFiles(string conversationId, string messageId);
|
2024-05-06 06:51:59 +00:00
|
|
|
string? GetMessageFile(string conversationId, string messageId, string fileName, string fileType);
|
|
|
|
|
void SaveConversationFiles(string conversationId, List<BotSharpFile> files);
|
2023-11-09 21:11:36 +00:00
|
|
|
}
|