019-bug-misc.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 is affected? (You can 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: Operating systems
  28. description: Which operating systems do you know to be affected?
  29. multiple: true
  30. options:
  31. - Linux
  32. - Mac
  33. - Windows
  34. - BSD
  35. - Other? (Please let us know in description)
  36. validations:
  37. required: false
  38. - type: dropdown
  39. id: module
  40. attributes:
  41. label: Which llama.cpp modules do you know to be affected?
  42. multiple: true
  43. options:
  44. - Documentation/Github
  45. - libllama (core library)
  46. - llama-cli
  47. - llama-server
  48. - llama-bench
  49. - llama-quantize
  50. - Python/Bash scripts
  51. - Test code
  52. - Other (Please specify in the next section)
  53. validations:
  54. required: false
  55. - type: textarea
  56. id: info
  57. attributes:
  58. label: Problem description & steps to reproduce
  59. description: >
  60. Please give us a summary of the problem and tell us how to reproduce it (if applicable).
  61. validations:
  62. required: true
  63. - type: textarea
  64. id: first_bad_commit
  65. attributes:
  66. label: First Bad Commit
  67. description: >
  68. If the bug was not present on an earlier version and it's not trivial to track down: when did it start appearing?
  69. If possible, please do a git bisect and identify the exact commit that introduced the bug.
  70. validations:
  71. required: false
  72. - type: textarea
  73. id: logs
  74. attributes:
  75. label: Relevant log output
  76. description: >
  77. If applicable, please copy and paste any relevant log output, including the command that you entered and any generated text.
  78. This will be automatically formatted into code, so no need for backticks.
  79. render: shell
  80. validations:
  81. required: false