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

12 lines
248 B
C#
Raw Normal View History

2023-06-18 18:15:00 +00:00
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);
}