|
| 1 | +name: 🐛 Bug report |
| 2 | +description: Something is broken or behaving unexpectedly in the evaluation toolkit. |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to file a bug report! Please fill in as much of the form below as you can — the more detail you provide, the faster we can help. |
| 10 | +
|
| 11 | + > **Before you submit:** Please search [existing issues](https://github.com/microsoft-foundry/Model-Router-Auto-Evaluation/issues?q=is%3Aissue) to avoid duplicates, and check the [FAQ](../blob/main/docs/faq.md) for known issues. |
| 12 | +
|
| 13 | + - type: checkboxes |
| 14 | + id: prereqs |
| 15 | + attributes: |
| 16 | + label: Pre-flight checklist |
| 17 | + description: Please confirm the following before submitting. |
| 18 | + options: |
| 19 | + - label: I have searched existing issues and this is not a duplicate. |
| 20 | + required: true |
| 21 | + - label: I have read the [FAQ](../blob/main/docs/faq.md). |
| 22 | + required: true |
| 23 | + - label: I have removed any API keys, endpoints, or other secrets from logs and config snippets I paste below. |
| 24 | + required: true |
| 25 | + |
| 26 | + - type: textarea |
| 27 | + id: summary |
| 28 | + attributes: |
| 29 | + label: Summary |
| 30 | + description: A clear, concise description of the bug. |
| 31 | + placeholder: When I run `python scripts/run_eval.py --dry-run`, the script crashes with a KeyError. |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + |
| 35 | + - type: textarea |
| 36 | + id: reproduce |
| 37 | + attributes: |
| 38 | + label: Steps to reproduce |
| 39 | + description: Exact commands and inputs we can run to see the bug ourselves. |
| 40 | + placeholder: | |
| 41 | + 1. Clone the repo at commit <SHA> |
| 42 | + 2. Create `.env` with the following variables (values redacted): ... |
| 43 | + 3. Run `python scripts/run_eval.py --dataset datasets/sample_custom.jsonl --sample-size 5` |
| 44 | + 4. See the error |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + |
| 48 | + - type: textarea |
| 49 | + id: expected |
| 50 | + attributes: |
| 51 | + label: Expected behaviour |
| 52 | + description: What did you expect to happen? |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: textarea |
| 57 | + id: actual |
| 58 | + attributes: |
| 59 | + label: Actual behaviour |
| 60 | + description: What actually happened? Include error messages, stack traces, or unexpected output. Use code fences (```) for readability. |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + |
| 64 | + - type: dropdown |
| 65 | + id: pipeline |
| 66 | + attributes: |
| 67 | + label: Which part of the pipeline is affected? |
| 68 | + options: |
| 69 | + - Local evaluation (scripts/run_eval.py) |
| 70 | + - Foundry cloud evaluation (scripts/run_foundry_eval.py) |
| 71 | + - Comparison or export scripts (compare_results.py / export_results.py) |
| 72 | + - WALKTHROUGH.ipynb (Jupyter notebook) |
| 73 | + - Configuration (configs/*.yaml) |
| 74 | + - Dataset loading (JSONL / CSV / SQL) |
| 75 | + - Reporting / dashboard / charts |
| 76 | + - Tests (pytest) |
| 77 | + - Documentation |
| 78 | + - Other / not sure |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | + - type: input |
| 83 | + id: python-version |
| 84 | + attributes: |
| 85 | + label: Python version |
| 86 | + description: Output of `python --version` |
| 87 | + placeholder: "3.11.7" |
| 88 | + validations: |
| 89 | + required: true |
| 90 | + |
| 91 | + - type: input |
| 92 | + id: os |
| 93 | + attributes: |
| 94 | + label: Operating system |
| 95 | + placeholder: "Windows 11 / macOS 14.4 / Ubuntu 22.04" |
| 96 | + validations: |
| 97 | + required: true |
| 98 | + |
| 99 | + - type: input |
| 100 | + id: package-version |
| 101 | + attributes: |
| 102 | + label: Repo commit or release |
| 103 | + description: Output of `git rev-parse --short HEAD` or the release tag you are using. |
| 104 | + placeholder: "abc1234 or v1.0.0" |
| 105 | + |
| 106 | + - type: textarea |
| 107 | + id: config |
| 108 | + attributes: |
| 109 | + label: Relevant configuration |
| 110 | + description: A redacted snippet of the YAML config or environment variables involved. **Do not include API keys.** |
| 111 | + render: yaml |
| 112 | + |
| 113 | + - type: textarea |
| 114 | + id: logs |
| 115 | + attributes: |
| 116 | + label: Logs and screenshots |
| 117 | + description: Paste any relevant terminal output, stack traces, or screenshots. Redact secrets first. |
| 118 | + render: shell |
| 119 | + |
| 120 | + - type: textarea |
| 121 | + id: additional |
| 122 | + attributes: |
| 123 | + label: Additional context |
| 124 | + description: Anything else we should know — workarounds tried, related issues, hypotheses, etc. |
0 commit comments