BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/ITextChopper.cs
2023-06-18 13:15:00 -05:00

12 lines
248 B
C#

using BotSharp.Abstraction.Knowledges.Models;
namespace BotSharp.Abstraction.Knowledges;
/// <summary>
/// Chop large content into chunks
/// </summary>
public interface ITextChopper
{
List<string> Chop(string content, ChunkOption option);
}