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