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