bug_report.yaml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. name: Bug Report
  2. description: Create a detailed bug report to help us improve Open WebUI.
  3. title: 'issue: '
  4. labels: ['bug', 'triage']
  5. assignees: []
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. # Bug Report
  11. ## Important Notes
  12. - **Before submitting a bug report**: Please check the [Issues](https://github.com/open-webui/open-webui/issues) or [Discussions](https://github.com/open-webui/open-webui/discussions) sections to see if a similar issue has already been reported. If unsure, start a discussion first, as this helps us efficiently focus on improving the project.
  13. - **Respectful collaboration**: Open WebUI is a volunteer-driven project with a single maintainer and contributors who also have full-time jobs. Please be constructive and respectful in your communication.
  14. - **Contributing**: If you encounter an issue, consider submitting a pull request or forking the project. We prioritize preventing contributor burnout to maintain Open WebUI's quality.
  15. - **Bug Reproducibility**: If a bug cannot be reproduced using a `:main` or `:dev` Docker setup or with `pip install` on Python 3.11, community assistance may be required. In such cases, we will move it to the "[Issues](https://github.com/open-webui/open-webui/discussions/categories/issues)" Discussions section. Your help is appreciated!
  16. - type: checkboxes
  17. id: issue-check
  18. attributes:
  19. label: Check Existing Issues
  20. description: Confirm that you’ve checked for existing reports before submitting a new one.
  21. options:
  22. - label: I have searched the existing issues and discussions.
  23. required: true
  24. - type: dropdown
  25. id: installation-method
  26. attributes:
  27. label: Installation Method
  28. description: How did you install Open WebUI?
  29. options:
  30. - Git Clone
  31. - Pip Install
  32. - Docker
  33. - Other
  34. validations:
  35. required: true
  36. - type: input
  37. id: open-webui-version
  38. attributes:
  39. label: Open WebUI Version
  40. description: Specify the version (e.g., v0.3.11)
  41. validations:
  42. required: true
  43. - type: input
  44. id: ollama-version
  45. attributes:
  46. label: Ollama Version (if applicable)
  47. description: Specify the version (e.g., v0.2.0, or v0.1.32-rc1)
  48. validations:
  49. required: false
  50. - type: input
  51. id: operating-system
  52. attributes:
  53. label: Operating System
  54. description: Specify the OS (e.g., Windows 10, macOS Sonoma, Ubuntu 22.04)
  55. validations:
  56. required: true
  57. - type: input
  58. id: browser
  59. attributes:
  60. label: Browser (if applicable)
  61. description: Specify the browser/version (e.g., Chrome 100.0, Firefox 98.0)
  62. validations:
  63. required: false
  64. - type: checkboxes
  65. id: confirmation
  66. attributes:
  67. label: Confirmation
  68. description: Ensure the following prerequisites have been met.
  69. options:
  70. - label: I have read and followed all instructions in `README.md`.
  71. required: true
  72. - label: I am using the latest version of **both** Open WebUI and Ollama.
  73. required: true
  74. - label: I have checked the browser console logs.
  75. required: true
  76. - label: I have checked the Docker container logs.
  77. required: true
  78. - label: I have listed steps to reproduce the bug in detail.
  79. required: true
  80. - type: textarea
  81. id: expected-behavior
  82. attributes:
  83. label: Expected Behavior
  84. description: Describe what should have happened.
  85. validations:
  86. required: true
  87. - type: textarea
  88. id: actual-behavior
  89. attributes:
  90. label: Actual Behavior
  91. description: Describe what actually happened.
  92. validations:
  93. required: true
  94. - type: textarea
  95. id: reproduction-steps
  96. attributes:
  97. label: Steps to Reproduce
  98. description: Provide step-by-step instructions to reproduce the issue.
  99. placeholder: |
  100. 1. Go to '...'
  101. 2. Click on '...'
  102. 3. Scroll down to '...'
  103. 4. See the error message '...'
  104. validations:
  105. required: true
  106. - type: textarea
  107. id: logs-screenshots
  108. attributes:
  109. label: Logs & Screenshots
  110. description: Include relevant logs, errors, or screenshots to help diagnose the issue.
  111. placeholder: 'Attach logs from the browser console, Docker logs, or error messages.'
  112. validations:
  113. required: true
  114. - type: textarea
  115. id: additional-info
  116. attributes:
  117. label: Additional Information
  118. description: Provide any extra details that may assist in understanding the issue.
  119. validations:
  120. required: false
  121. - type: markdown
  122. attributes:
  123. value: |
  124. ## Note
  125. If the bug report is incomplete or does not follow instructions, it may not be addressed. Ensure that you've followed all the **README.md** and **troubleshooting.md** guidelines, and provide all necessary information for us to reproduce the issue.
  126. Thank you for contributing to Open WebUI!