using BotSharp.Abstraction.Files.Options; using BotSharp.Abstraction.Files.Responses; namespace BotSharp.Abstraction.Files.Proccessors; public interface IFileProcessor { public string Provider { get; } Task HandleFilesAsync(Agent agent, string text, IEnumerable files, FileHandleOptions? options = null) => throw new NotImplementedException(); }