9 lines
241 B
C#
9 lines
241 B
C#
namespace CvMatcher.Models.Settings;
|
|
|
|
public sealed class OpenAiSettings
|
|
{
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public string ChatModel { get; set; } = "gpt-4o-mini";
|
|
public int TimeoutSeconds { get; set; } = 90;
|
|
}
|