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

8 lines
225 B
C#
Raw Normal View History

2023-08-21 20:53:49 +00:00
namespace BotSharp.Abstraction.Knowledges
{
public interface IPdf2TextConverter
{
public string Name { 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
}
}