BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/IPdf2TextConverter.cs
2024-08-30 19:31:18 -05:00

8 lines
229 B
C#

namespace BotSharp.Abstraction.Knowledges
{
public interface IPdf2TextConverter
{
public string Provider { get; }
Task<string> ConvertPdfToText(string filePath, int? startPageNum, int? endPageNum);
}
}