bug_report.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. name: Bug Report
  2. description: File a bug report
  3. labels: ["bug"]
  4. body:
  5. - type: input
  6. id: version
  7. attributes:
  8. label: Which version of the app are you using?
  9. description: Please specify the app version you're using (e.g. v3.3.1)
  10. validations:
  11. required: true
  12. - type: dropdown
  13. id: provider
  14. attributes:
  15. label: Which API Provider are you using?
  16. multiple: false
  17. options:
  18. - OpenRouter
  19. - Anthropic
  20. - Google Gemini
  21. - DeepSeek
  22. - OpenAI
  23. - OpenAI Compatible
  24. - GCP Vertex AI
  25. - AWS Bedrock
  26. - Glama
  27. - VS Code LM API
  28. - LM Studio
  29. - Ollama
  30. validations:
  31. required: true
  32. - type: input
  33. id: model
  34. attributes:
  35. label: Which Model are you using?
  36. description: Please specify the model you're using (e.g. Claude 3.5 Sonnet)
  37. validations:
  38. required: true
  39. - type: textarea
  40. id: what-happened
  41. attributes:
  42. label: What happened?
  43. description: Also tell us, what did you expect to happen?
  44. placeholder: Tell us what you see!
  45. validations:
  46. required: true
  47. - type: textarea
  48. id: steps
  49. attributes:
  50. label: Steps to reproduce
  51. description: How do you trigger this bug? Please walk us through it step by step.
  52. value: |
  53. 1.
  54. 2.
  55. 3.
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: logs
  60. attributes:
  61. label: Relevant API REQUEST output
  62. description: Please copy and paste any relevant output. This will be automatically formatted into code, so no need for backticks.
  63. render: shell
  64. - type: textarea
  65. id: additional-context
  66. attributes:
  67. label: Additional context
  68. description: Add any other context about the problem here, such as screenshots or related issues.