BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Proccessors/IFileProcessor.cs

13 lines
404 B
C#
Raw Normal View History

2025-10-15 18:24:27 +00:00
using BotSharp.Abstraction.Files.Options;
using BotSharp.Abstraction.Files.Responses;
2025-10-14 18:52:01 +00:00
namespace BotSharp.Abstraction.Files.Proccessors;
2025-10-16 00:33:15 +00:00
public interface IFileProcessor
2025-10-14 18:52:01 +00:00
{
public string Provider { get; }
2025-10-16 00:33:15 +00:00
Task<FileHandleResponse> HandleFilesAsync(Agent agent, string text, IEnumerable<InstructFileModel> files, FileHandleOptions? options = null)
2025-10-14 18:52:01 +00:00
=> throw new NotImplementedException();
}