BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/ChunkOption.cs

17 lines
355 B
C#
Raw Normal View History

2023-06-18 18:15:00 +00:00
namespace BotSharp.Abstraction.Knowledges.Models;
public class ChunkOption
{
/// <summary>
2023-06-29 23:14:57 +00:00
/// Max chunk character size
2023-06-18 18:15:00 +00:00
/// </summary>
public int Size { get; set; }
/// <summary>
2023-06-29 23:14:57 +00:00
/// Overlap word count in between two chunks
2023-06-18 18:15:00 +00:00
/// </summary>
public int Conjunction { get; set; }
2023-06-29 23:14:57 +00:00
public bool SplitByWord { get; set; }
2023-06-18 18:15:00 +00:00
}