Files
myAi/cv-matcher-api/Models/Settings/MatcherSettings.cs
T
claude 91cdb536b1
Build and Push Docker Images / build (push) Successful in 32s
Changes
2026-05-06 12:48:44 +03:00

9 lines
214 B
C#

namespace Api.Models.Settings;
public sealed class MatcherSettings
{
public int TopK { get; set; } = 10;
public int DeepScoreTopN { get; set; } = 5;
public int MaxJobTextChars { get; set; } = 60000;
}