You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

appsettings.json 985 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "LLamaOptions": {
  10. "ModelLoadType": 0,
  11. "Models": [
  12. {
  13. "Name": "LLama2-7b-Chat",
  14. "MaxInstances": 20,
  15. "ModelPath": "..\\LLama.Unittest\\Models\\llama-2-7b-chat.Q4_0.gguf",
  16. "ContextSize": 2048,
  17. "BatchSize": 2048,
  18. "Threads": 4,
  19. "GpuLayerCount": 6,
  20. "UseMemorymap": true,
  21. "UseMemoryLock": false,
  22. "MainGpu": 0,
  23. "LowVram": false,
  24. "Seed": 1686349486,
  25. "UseFp16Memory": true,
  26. "Perplexity": false,
  27. "LoraAdapter": "",
  28. "LoraBase": "",
  29. "EmbeddingMode": false,
  30. "TensorSplits": null,
  31. "GroupedQueryAttention": 1,
  32. "RmsNormEpsilon": 0.000005,
  33. "RopeFrequencyBase": 10000.0,
  34. "RopeFrequencyScale": 1.0,
  35. "MulMatQ": false,
  36. "Encoding": "UTF-8"
  37. }
  38. ]
  39. }
  40. }