Skip to content

Commit 757fe40

Browse files
Jack-KhuuVarun Puri
authored andcommitted
Initial gh issue form (#881)
* Rename TorchChat to Torchchat * Adding Issue templates
1 parent 0a7884d commit 757fe40

File tree

3 files changed

+78
-0
lines changed

3 files changed

+78
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: 🐛 Bug Report
2+
description: Create a report to help us reproduce and fix the bug
3+
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: >
8+
#### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/pytorch/torchchat/issues?q=is%3Aissue+sort%3Acreated-desc+).
9+
- type: textarea
10+
attributes:
11+
label: 🐛 Describe the bug
12+
description: |
13+
Please provide a clear and concise description of what the bug is.
14+
15+
If relevant, add a minimal example so that we can reproduce the error by running the code.
16+
17+
If the code is too long (hopefully, it isn't), feel free to put it in a public gist and link it in the issue: https://gist.github.com.
18+
19+
Please also paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````.
20+
placeholder: |
21+
A clear and concise description of what the bug is.
22+
23+
```python
24+
# Sample code to reproduce the problem
25+
```
26+
27+
```
28+
The error message you got, with the full traceback.
29+
```
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Versions
35+
description: |
36+
Please run the following and paste the output below.
37+
```sh
38+
wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
39+
# For security purposes, please check the contents of collect_env.py before running it.
40+
python collect_env.py
41+
```
42+
validations:
43+
required: true
44+
- type: markdown
45+
attributes:
46+
value: >
47+
Thanks for contributing 🎉!

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/ISSUE_TEMPLATE/config.yml
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: 🚀 Feature request
2+
description: Submit a proposal/request for a new torchchat feature
3+
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: 🚀 The feature, motivation and pitch
8+
description: >
9+
A clear and concise description of the feature proposal. Please outline the motivation for the proposal. Is your feature request related to a specific problem? e.g., *"I'm working on X and would like Y to be possible"*. If this is related to another GitHub issue, please link to it here too.
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Alternatives
15+
description: >
16+
A description of alternative solutions or features you've considered, if any.
17+
- type: textarea
18+
attributes:
19+
label: Additional context
20+
description: >
21+
Add any other context or screenshots about the feature request.
22+
- type: textarea
23+
attributes:
24+
label: RFC (Optional)
25+
description: >
26+
Explain the design in enough detail for others to understand the problem, scope, and proposed solution.
27+
- type: markdown
28+
attributes:
29+
value: >
30+
Thanks for contributing 🎉!

0 commit comments

Comments
 (0)