Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 341b85d

Browse files
Create issue templates (openai#214)
* Create config.yml * Add * Create feature_request.yml
1 parent 5ac7946 commit 341b85d

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
labels: ["bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report! If you have questions about using the OpenAI Python library, please post on our [Community forum](https://community.openai.com).
9+
- type: textarea
10+
id: what-happened
11+
attributes:
12+
label: Describe the bug
13+
description: A clear and concise description of what the bug is, and any additional context.
14+
placeholder: Tell us what you see!
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: repro-steps
19+
attributes:
20+
label: To Reproduce
21+
description: Steps to reproduce the behavior.
22+
placeholder: |
23+
1. Fetch a '...'
24+
2. Update the '....'
25+
3. See error
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: code-snippets
30+
attributes:
31+
label: Code snippets
32+
description: If applicable, add code snippets to help explain your problem.
33+
render: Python
34+
validations:
35+
required: false
36+
- type: input
37+
id: os
38+
attributes:
39+
label: OS
40+
placeholder: macOS
41+
validations:
42+
required: true
43+
- type: input
44+
id: language-version
45+
attributes:
46+
label: Python version
47+
placeholder: Python v3.7.1
48+
validations:
49+
required: true
50+
- type: input
51+
id: lib-version
52+
attributes:
53+
label: Library version
54+
placeholder: openai-python v0.26.4
55+
validations:
56+
required: true

.github/ISSUE_TEMPLATE/config.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: OpenAI support
4+
url: https://help.openai.com/
5+
about: |
6+
Please only file issues here that you believe represent actual bugs or feature requests for the OpenAI Python library.
7+
If you're having general trouble with the OpenAI API, ChatGPT, etc, please visit our help center to get support.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Feature request
2+
description: Suggest an idea for this library
3+
labels: ["feature-request"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature request! Please note, we are not able to accommodate all feature requests given limited bandwidth but we appreciate you taking the time to share with us how to improve the OpenAI Python library.
9+
- type: textarea
10+
id: feature
11+
attributes:
12+
label: Describe the feature or improvement you're requesting
13+
description: A clear and concise description of what you want to happen.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: context
18+
attributes:
19+
label: Additional context
20+
description: Add any other context about the feature request here.

0 commit comments

Comments
 (0)