9 lines
255 B
C#
9 lines
255 B
C#
namespace CvMatcher.Models.Settings;
|
|
|
|
public sealed class OllamaSettings
|
|
{
|
|
public string BaseUrl { get; set; } = "http://localhost:11434";
|
|
public string ChatModel { get; set; } = "llama3.1:8b";
|
|
public int TimeoutSeconds { get; set; } = 180;
|
|
}
|