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