This commit is contained in:
2026-05-06 10:56:02 +03:00
parent 661bf461f9
commit 17266730fc
11 changed files with 562 additions and 1024 deletions
-9
View File
@@ -1,9 +0,0 @@
namespace Api.Settings;
public sealed class OpenAiSettings
{
public string ApiKey { get; set; } = string.Empty;
public string ChatModel { get; set; } = "gpt-4o-mini";
public string EmbeddingModel { get; set; } = "text-embedding-3-small";
public int TimeoutSeconds { get; set; } = 60;
}
-11
View File
@@ -1,11 +0,0 @@
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;
}