10_bug_report.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. name: Bug report
  2. labels: [bug]
  3. description: Something isn't working right.
  4. body:
  5. - type: textarea
  6. id: description
  7. attributes:
  8. label: What is the issue?
  9. description: What happened? What did you expect to happen?
  10. validations:
  11. required: true
  12. - type: textarea
  13. id: logs
  14. attributes:
  15. label: Relevant log output
  16. description: Please copy and paste any relevant log output. See [Troubleshooting Guide](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md#how-to-troubleshoot-issues) for details.
  17. render: shell
  18. validations:
  19. required: false
  20. - type: dropdown
  21. id: os
  22. attributes:
  23. label: OS
  24. description: Which operating system are you using?
  25. multiple: true
  26. options:
  27. - Linux
  28. - macOS
  29. - Windows
  30. - Docker
  31. - WSL2
  32. validations:
  33. required: false
  34. - type: dropdown
  35. id: gpu
  36. attributes:
  37. label: GPU
  38. description: Which GPU are you using?
  39. multiple: true
  40. options:
  41. - Nvidia
  42. - AMD
  43. - Intel
  44. - Apple
  45. - Other
  46. validations:
  47. required: false
  48. - type: dropdown
  49. id: cpu
  50. attributes:
  51. label: CPU
  52. description: Which CPU are you using?
  53. multiple: true
  54. options:
  55. - Intel
  56. - AMD
  57. - Apple
  58. - Other
  59. validations:
  60. required: false
  61. - type: input
  62. id: version
  63. attributes:
  64. label: Ollama version
  65. description: What version of Ollama are you using? (`ollama --version`)
  66. placeholder: e.g., 0.1.32
  67. validations:
  68. required: false