openai/openai-python
Publicmirrored fromhttps://github.com/openai/openai-pythonAvailable
.github/ISSUE_TEMPLATE/bug_report.yml
64lines · modecode
| 1 | name: Bug report |
| 2 | description: Report an issue or bug with this library |
| 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: checkboxes |
| 10 | id: non_api |
| 11 | attributes: |
| 12 | label: Confirm this is an issue with the Python library and not an underlying OpenAI API |
| 13 | description: Issues with the underlying OpenAI API should be reported on our [Developer Community](https://community.openai.com/c/api/7) |
| 14 | options: |
| 15 | - label: This is an issue with the Python library |
| 16 | required: true |
| 17 | - type: textarea |
| 18 | id: what-happened |
| 19 | attributes: |
| 20 | label: Describe the bug |
| 21 | description: A clear and concise description of what the bug is, and any additional context. |
| 22 | placeholder: Tell us what you see! |
| 23 | validations: |
| 24 | required: true |
| 25 | - type: textarea |
| 26 | id: repro-steps |
| 27 | attributes: |
| 28 | label: To Reproduce |
| 29 | description: Steps to reproduce the behavior. |
| 30 | placeholder: | |
| 31 | 1. Fetch a '...' |
| 32 | 2. Update the '....' |
| 33 | 3. See error |
| 34 | validations: |
| 35 | required: true |
| 36 | - type: textarea |
| 37 | id: code-snippets |
| 38 | attributes: |
| 39 | label: Code snippets |
| 40 | description: If applicable, add code snippets to help explain your problem. |
| 41 | render: Python |
| 42 | validations: |
| 43 | required: false |
| 44 | - type: input |
| 45 | id: os |
| 46 | attributes: |
| 47 | label: OS |
| 48 | placeholder: macOS |
| 49 | validations: |
| 50 | required: true |
| 51 | - type: input |
| 52 | id: language-version |
| 53 | attributes: |
| 54 | label: Python version |
| 55 | placeholder: Python v3.11.4 |
| 56 | validations: |
| 57 | required: true |
| 58 | - type: input |
| 59 | id: lib-version |
| 60 | attributes: |
| 61 | label: Library version |
| 62 | placeholder: openai v1.0.1 |
| 63 | validations: |
| 64 | required: true |
| 65 | |