You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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;
- }
- }
|