namespace Services.Ollama { public class ParametresOllamaService { public string Ollama_URL { get; set; } = "http://localhost:11434"; public int Ollama_TimeOut { get; set; } = 360; public double Ollama_Temperature { get; set; } = 0.01; public double Ollama_Top_p { get; set; } = 0.9; public int Ollama_Max_tokens { get; set; } = 200; public string Ollama_Batch_URL { get; set; } = "http://localhost:11435"; public int Ollama_Batch_TimeOut { get; set; } = 360; public double Ollama_Batch_Temperature { get; set; } = 0.01; public double Ollama_Batch_Top_p { get; set; } = 0.9; public int Ollama_Batch_Max_tokens { get; set; } = 200; } }