BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/IPdf2TextConverter.cs

8 lines
229 B
C#
Raw Normal View History

2023-08-21 20:53:49 +00:00
namespace BotSharp.Abstraction.Knowledges
{
public interface IPdf2TextConverter
{
2024-08-31 00:31:18 +00:00
public string Provider { get; }
2023-12-30 03:54:41 +00:00
Task<string> ConvertPdfToText(string filePath, int? startPageNum, int? endPageNum);
2023-08-21 20:53:49 +00:00
}
}