BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/ChunkOption.cs
2023-06-29 18:14:57 -05:00

17 lines
355 B
C#

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