Changes
Build and Push Docker Images / build (push) Successful in 42s

This commit is contained in:
2026-05-04 15:56:15 +03:00
parent 540720e771
commit 2dce2ab0ff
14 changed files with 656 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
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;
}