BotSharp/src/Infrastructure/BotSharp.Abstraction/Files/Proccessors/IFileProcessor.cs
2025-10-15 19:33:15 -05:00

13 lines
404 B
C#

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