namespace BotSharp.Abstraction.Knowledges.Models; public class ChunkOption { /// /// Max chunk character size /// public int Size { get; set; } /// /// Overlap word count in between two chunks /// public int Conjunction { get; set; } public bool SplitByWord { get; set; } }