bug_report_template.yml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. name: "\U0001F41E Bug report"
  2. description: Report a bug on Gradio
  3. labels: [ "bug" ]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thanks for taking the time to fill out this bug report!
  9. - type: textarea
  10. id: bug-description
  11. attributes:
  12. label: Describe the bug
  13. description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
  14. placeholder: Bug description
  15. validations:
  16. required: true
  17. - type: checkboxes
  18. attributes:
  19. label: Is there an existing issue for this?
  20. description: Please search to see if an issue already exists for the issue you encountered.
  21. options:
  22. - label: I have searched the existing issues
  23. required: true
  24. - type: textarea
  25. id: reproduction
  26. attributes:
  27. label: Reproduction
  28. description: Please provide a link to a repo or REPL that can reproduce the problem you ran into. Or provide the Python code below that can be run to reproduce the issue.
  29. placeholder: Reproduction
  30. validations:
  31. required: true
  32. - type: textarea
  33. id: screenshot
  34. attributes:
  35. label: Screenshot
  36. description: "If possible, please include screenshot(s) so that we can understand what the issue is."
  37. - type: textarea
  38. id: logs
  39. attributes:
  40. label: Logs
  41. description: "Please include the full stacktrace of the errors you get from Python or Javascript. If you are running in a colab notebooks, you can get the logs with by setting `debug=True`, i.e: `gradio.Interface.launch(debug=True)`"
  42. render: shell
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: system-info
  47. attributes:
  48. label: System Info
  49. description: Please share your system info with us, you can get the Gradio version with `gradio.__version__`
  50. render: shell
  51. placeholder: Gradio version, Operating System, Browser
  52. validations:
  53. required: true
  54. - type: dropdown
  55. id: severity
  56. attributes:
  57. label: Severity
  58. description: Select the severity of this issue
  59. options:
  60. - annoying
  61. - serious, but I can work around it
  62. - blocking upgrade to latest gradio version
  63. - blocking all usage of gradio
  64. validations:
  65. required: true