/ .github / ISSUE_TEMPLATE / 03-bug-high.yml
03-bug-high.yml
 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-unconfirmed", "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: textarea
14      id: what-happened
15      attributes:
16        label: What happened?
17        description: Also tell us, what did you expect to happen?
18        placeholder: Tell us what you see!
19      validations:
20        required: true
21    - type: textarea
22      id: version
23      attributes:
24        label: Name and Version
25        description: Which executable and which version of our software are you running? (use `--version` to get a version string)
26        placeholder: |
27          $./llama-cli --version
28          version: 2999 (42b4109e)
29          built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
30      validations:
31        required: true
32    - type: dropdown
33      id: operating-system
34      attributes:
35        label: What operating system are you seeing the problem on?
36        multiple: true
37        options:
38          - Linux
39          - Mac
40          - Windows
41          - BSD
42          - Other? (Please let us know in description)
43      validations:
44        required: false
45    - type: textarea
46      id: logs
47      attributes:
48        label: Relevant log output
49        description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
50        render: shell