019-bug-misc.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. name: Bug (misc.)
  2. description: Something is not working the way it should (and it's not covered by any of the above cases).
  3. title: "Misc. bug: "
  4. labels: ["bug-unconfirmed"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: >
  9. Thanks for taking the time to fill out this bug report!
  10. This issue template is intended for miscellaneous bugs that don't fit into any other category.
  11. If you encountered the issue while using an external UI (e.g. ollama),
  12. please reproduce your issue using one of the examples/binaries in this repository.
  13. - type: textarea
  14. id: version
  15. attributes:
  16. label: Name and Version
  17. description: Which version of our software are you running? (use `--version` to get a version string)
  18. placeholder: |
  19. $./llama-cli --version
  20. version: 2999 (42b4109e)
  21. built with cc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 for x86_64-linux-gnu
  22. validations:
  23. required: true
  24. - type: dropdown
  25. id: operating-system
  26. attributes:
  27. label: Which operating systems do you know to be affected?
  28. multiple: true
  29. options:
  30. - Linux
  31. - Mac
  32. - Windows
  33. - BSD
  34. - Other? (Please let us know in description)
  35. validations:
  36. required: true
  37. - type: dropdown
  38. id: module
  39. attributes:
  40. label: Which llama.cpp modules do you know to be affected?
  41. multiple: true
  42. options:
  43. - libllama (core library)
  44. - llama-cli
  45. - llama-server
  46. - llama-bench
  47. - llama-quantize
  48. - Python/Bash scripts
  49. - Other (Please specify in the next section)
  50. validations:
  51. required: true
  52. - type: textarea
  53. id: steps_to_reproduce
  54. attributes:
  55. label: Steps to Reproduce
  56. description: >
  57. Please tell us how to reproduce the bug and any additional information that you think could be useful for fixing it.
  58. validations:
  59. required: true
  60. - type: textarea
  61. id: first_bad_commit
  62. attributes:
  63. label: First Bad Commit
  64. description: >
  65. If the bug was not present on an earlier version: when did it start appearing?
  66. If possible, please do a git bisect and identify the exact commit that introduced the bug.
  67. validations:
  68. required: false
  69. - type: textarea
  70. id: logs
  71. attributes:
  72. label: Relevant log output
  73. description: >
  74. Please copy and paste any relevant log output, including the command that you entered and any generated text.
  75. This will be automatically formatted into code, so no need for backticks.
  76. render: shell
  77. validations:
  78. required: true