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.

18 satır
731B

  1. namespace Services.Ollama
  2. {
  3. public class ParametresOllamaService
  4. {
  5. public string Ollama_URL { get; set; } = "http://localhost:11434";
  6. public int Ollama_TimeOut { get; set; } = 360;
  7. public double Ollama_Temperature { get; set; } = 0.01;
  8. public double Ollama_Top_p { get; set; } = 0.9;
  9. public int Ollama_Max_tokens { get; set; } = 200;
  10. public string Ollama_Batch_URL { get; set; } = "http://localhost:11435";
  11. public int Ollama_Batch_TimeOut { get; set; } = 360;
  12. public double Ollama_Batch_Temperature { get; set; } = 0.01;
  13. public double Ollama_Batch_Top_p { get; set; } = 0.9;
  14. public int Ollama_Batch_Max_tokens { get; set; } = 200;
  15. }
  16. }