Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lines
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. }