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

12 lines
290 B
C#
Raw Normal View History

2023-08-21 20:53:49 +00:00
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Http;
namespace BotSharp.Abstraction.Knowledges
{
public interface IPdf2TextConverter
{
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
}
}