12 lines
344 B
C#
12 lines
344 B
C#
namespace Api.Settings;
|
|
|
|
public sealed class RagSettings
|
|
{
|
|
public int MaxPdfSizeMb { get; set; } = 5;
|
|
public int ChunkSize { get; set; } = 900;
|
|
public int ChunkOverlap { get; set; } = 150;
|
|
public int CvTtlMinutes { get; set; } = 60;
|
|
public int MaxJobTextChars { get; set; } = 20000;
|
|
public int TopK { get; set; } = 6;
|
|
}
|