17 lines
355 B
C#
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; }
|
|
}
|