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 1.0 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "AllowedHosts": "*",
  9. "LLamaOptions": {
  10. "Models": [
  11. {
  12. "Name": "WizardLM-7B",
  13. "MaxInstances": 2,
  14. "ModelPath": "D:\\Repositories\\AI\\Models\\wizardLM-7B.ggmlv3.q4_0.bin",
  15. "ContextSize": 2048
  16. }
  17. ],
  18. "Parameters": [
  19. {
  20. "Name": "Default",
  21. "Temperature": 0.6
  22. }
  23. ],
  24. "Prompts": [
  25. {
  26. "Name": "None",
  27. "Prompt": ""
  28. },
  29. {
  30. "Name": "Alpaca",
  31. "Path": "D:\\Repositories\\AI\\Prompts\\alpaca.txt",
  32. "AntiPrompt": [
  33. "User:"
  34. ],
  35. "OutputFilter": [
  36. "Response:",
  37. "User:"
  38. ]
  39. },
  40. {
  41. "Name": "ChatWithBob",
  42. "Path": "D:\\Repositories\\AI\\Prompts\\chat-with-bob.txt",
  43. "AntiPrompt": [
  44. "User:"
  45. ],
  46. "OutputFilter": [
  47. "Bob:",
  48. "User:"
  49. ]
  50. }
  51. ]
  52. }
  53. }