File size: 2,805 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
name: "\U0001F41E Bug report"
description: Report a bug on Gradio
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! Before you get started, please [search to see](https://github.com/gradio-app/gradio/issues) if an issue already exists for the bug you encountered
- type: textarea
id: bug-description
attributes:
label: Describe the bug
description: Please provide a concise description of what the bug is, in clear English. If you intend to submit a PR for this issue, tell us in the description.
placeholder: Bug description
validations:
required: true
- type: checkboxes
attributes:
label: Have you searched existing issues? π
description: Please search to see if an issue already exists for the issue you encountered.
options:
- label: I have searched and found no existing issues
required: true
- type: textarea
id: reproduction
attributes:
label: Reproduction
description: Please provide a minimal example, with code, that can be run to reproduce the issue. Do NOT provide screenshots of code, or link to external repos or applications. Use ``` to format code blocks.
placeholder: Reproduction
value: |
```python
import gradio as gr
```
validations:
required: true
- type: textarea
id: screenshot
attributes:
label: Screenshot
description: If relevant, please include screenshot(s) of your Gradio app so that we can understand what the issue is.
- type: textarea
id: logs
attributes:
label: Logs
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)`"
render: shell
- type: textarea
id: system-info
attributes:
label: System Info
description: Please ensure you are running the latest version of Gradio. You can get the Gradio version and all its dependencies by running `gradio environment`
render: shell
validations:
required: true
- type: dropdown
id: severity
attributes:
label: Severity
description: Select the severity of this issue
options:
- I can work around it
- Blocking usage of gradio
validations:
required: true
- type: markdown
attributes:
value: |
π Please ensure that you have filled all of the required sections above, and that the reproduction you have provided is [minimal, complete, and reproducible](https://stackoverflow.com/help/minimal-reproducible-example). Incomplete issues will be closed.
|