Skip to content

Commit e117f0b

Browse files
committed
github: add self sorted issue ticket forms [no ci]
1 parent b9adcbb commit e117f0b

File tree

6 files changed

+333
-0
lines changed

6 files changed

+333
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Low Severity Bugs
2+
description: Used to report low severity bugs in llama.cpp (e.g. cosmetic issues, non critical UI glitches)
3+
title: "Bug: "
4+
labels: ["bug", "low severity"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
Please include information about your system, the steps to reproduce the bug,
11+
and the version of llama.cpp that you are using.
12+
If possible, please provide a minimal code example that reproduces the bug.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen?
26+
placeholder: Tell us what you see!
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: version
31+
attributes:
32+
label: Name and Version
33+
description: Which executable and which version of our software are you running? (use `--version` to get a version string)
34+
placeholder: |
35+
$./main --version
36+
version: 2999 (42b4109e)
37+
built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
38+
validations:
39+
required: true
40+
- type: dropdown
41+
id: operating-system
42+
attributes:
43+
label: What operating system are you seeing the problem on?
44+
multiple: true
45+
options:
46+
- Linux
47+
- Mac
48+
- Windows
49+
- FreeBSD
50+
- OpenBSD
51+
- NetBSD
52+
- BIOS
53+
- Other? (Please let us know in description)
54+
validations:
55+
required: false
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Relevant log output
60+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
61+
render: shell
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Medium Severity Bug
2+
description: Used to report medium severity bugs in llama.cpp (e.g. Malfunctioning Features but generally still useable)
3+
title: "Bug: "
4+
labels: ["bug", "medium severity"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
Please include information about your system, the steps to reproduce the bug,
11+
and the version of llama.cpp that you are using.
12+
If possible, please provide a minimal code example that reproduces the bug.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen?
26+
placeholder: Tell us what you see!
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: version
31+
attributes:
32+
label: Name and Version
33+
description: Which executable and which version of our software are you running? (use `--version` to get a version string)
34+
placeholder: |
35+
$./main --version
36+
version: 2999 (42b4109e)
37+
built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
38+
validations:
39+
required: true
40+
- type: dropdown
41+
id: operating-system
42+
attributes:
43+
label: What operating system are you seeing the problem on?
44+
multiple: true
45+
options:
46+
- Linux
47+
- Mac
48+
- Windows
49+
- FreeBSD
50+
- OpenBSD
51+
- NetBSD
52+
- BIOS
53+
- Other? (Please let us know in description)
54+
validations:
55+
required: false
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Relevant log output
60+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
61+
render: shell
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: High Severity Bug
2+
description: Used to report high severity bugs in llama.cpp (e.g. Malfunctioning features hindering important common workflow)
3+
title: "Bug: "
4+
labels: ["bug", "high severity"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
Please include information about your system, the steps to reproduce the bug,
11+
and the version of llama.cpp that you are using.
12+
If possible, please provide a minimal code example that reproduces the bug.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen?
26+
placeholder: Tell us what you see!
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: version
31+
attributes:
32+
label: Name and Version
33+
description: Which executable and which version of our software are you running? (use `--version` to get a version string)
34+
placeholder: |
35+
$./main --version
36+
version: 2999 (42b4109e)
37+
built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
38+
validations:
39+
required: true
40+
- type: dropdown
41+
id: operating-system
42+
attributes:
43+
label: What operating system are you seeing the problem on?
44+
multiple: true
45+
options:
46+
- Linux
47+
- Mac
48+
- Windows
49+
- FreeBSD
50+
- OpenBSD
51+
- NetBSD
52+
- BIOS
53+
- Other? (Please let us know in description)
54+
validations:
55+
required: false
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Relevant log output
60+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
61+
render: shell
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Critical Severity Bug
2+
description: Used to report critical severity bugs in llama.cpp (e.g. Crashing, Corrupted, Dataloss)
3+
title: "Bug: "
4+
labels: ["bug", "critical severity"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
Please include information about your system, the steps to reproduce the bug,
11+
and the version of llama.cpp that you are using.
12+
If possible, please provide a minimal code example that reproduces the bug.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen?
26+
placeholder: Tell us what you see!
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: version
31+
attributes:
32+
label: Name and Version
33+
description: Which executable and which version of our software are you running? (use `--version` to get a version string)
34+
placeholder: |
35+
$./main --version
36+
version: 2999 (42b4109e)
37+
built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
38+
validations:
39+
required: true
40+
- type: dropdown
41+
id: operating-system
42+
attributes:
43+
label: What operating system are you seeing the problem on?
44+
multiple: true
45+
options:
46+
- Linux
47+
- Mac
48+
- Windows
49+
- FreeBSD
50+
- OpenBSD
51+
- NetBSD
52+
- BIOS
53+
- Other? (Please let us know in description)
54+
validations:
55+
required: false
56+
- type: textarea
57+
id: logs
58+
attributes:
59+
label: Relevant log output
60+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
61+
render: shell
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Enhancement template
2+
description: Used to request enhancements for llama.cpp
3+
title: "Feature Request: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
[Please post your idea first in Discussion if there is not yet a consensus for this enhancement request. This will help to keep this issue tracker focused on enhancements that the community has agreed needs to be implemented.](https://github.com/ggerganov/llama.cpp/discussions/categories/ideas)
10+
11+
- type: checkboxes
12+
id: prerequisites
13+
attributes:
14+
label: Prerequisites
15+
description: Please confirm the following before submitting your enhancement request.
16+
options:
17+
- label: I am running the latest code. Mention the version if possible as well.
18+
required: true
19+
- label: I carefully followed the [README.md](https://github.com/ggerganov/llama.cpp/blob/master/README.md).
20+
required: true
21+
- label: I searched using keywords relevant to my issue to make sure that I am creating a new issue that is not already open (or closed).
22+
required: true
23+
- label: I reviewed the [Discussions](https://github.com/ggerganov/llama.cpp/discussions), and have a new and useful enhancement to share.
24+
required: true
25+
26+
- type: textarea
27+
id: feature-description
28+
attributes:
29+
label: Feature Description
30+
description: Please provide a detailed written description of what you were trying to do, and what you expected `llama.cpp` to do as an enhancement.
31+
placeholder: Detailed description of the enhancement
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: motivation
37+
attributes:
38+
label: Motivation
39+
description: Please provide a detailed written description of reasons why this feature is necessary and how it is useful to `llama.cpp` users.
40+
placeholder: Explanation of why this feature is needed and its benefits
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: possible-implementation
46+
attributes:
47+
label: Possible Implementation
48+
description: If you have an idea as to how it can be implemented, please write a detailed description. Feel free to give links to external sources or share visuals that might be helpful to understand the details better.
49+
placeholder: Detailed description of potential implementation
50+
validations:
51+
required: false
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Question template
2+
description: Used to ask questions about llama.cpp
3+
title: "Question: "
4+
labels: ["question"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
[Please search your question first in Discussion if you got a common general question.](https://github.com/ggerganov/llama.cpp/discussions/categories/q-a)
10+
11+
- type: checkboxes
12+
id: prerequisites
13+
attributes:
14+
label: Prerequisites
15+
description: Please confirm the following before submitting your question.
16+
options:
17+
- label: I searched using keywords relevant to my issue to make sure that I am creating a new issue that is not already open (or closed).
18+
required: true
19+
- label: I reviewed the [Discussions](https://github.com/ggerganov/llama.cpp/discussions), and have a new useful question to share that cannot be answered within Discussions.
20+
required: true
21+
22+
- type: textarea
23+
id: background-description
24+
attributes:
25+
label: Background Description
26+
description: Please provide a detailed written description of what you were trying to do, and what you expected `llama.cpp` to do as an question.
27+
placeholder: Detailed description of your question
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: possible-answer
33+
attributes:
34+
label: Possible Answer
35+
description: If you have some idea of possible answers you want to confirm, that would also be appreciated.
36+
placeholder: Your idea of possible answers
37+
validations:
38+
required: false

0 commit comments

Comments
 (0)