|
| 1 | +name: Bug report |
| 2 | +description: Report something that is not working in mlxcel |
| 3 | +title: "fix: <short description>" |
| 4 | +labels: ["type:bug", "status:ready"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to file a bug report. The information below helps us reproduce the issue and ship a fix faster. |
| 10 | +
|
| 11 | + **Security issues**: Do **not** file security vulnerabilities here. See [SECURITY.md](https://github.com/lablup/mlxcel/blob/main/SECURITY.md) for the private reporting channel. |
| 12 | +
|
| 13 | + - type: textarea |
| 14 | + id: summary |
| 15 | + attributes: |
| 16 | + label: Summary |
| 17 | + description: A short, factual description of the bug. |
| 18 | + placeholder: e.g. "mlxcel-server crashes on /v1/chat/completions when the prompt contains a 4-byte UTF-8 character" |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + |
| 22 | + - type: textarea |
| 23 | + id: reproduction |
| 24 | + attributes: |
| 25 | + label: Reproduction steps |
| 26 | + description: | |
| 27 | + Minimal commands or HTTP requests that reproduce the issue. Include the prompt and seed if relevant. |
| 28 | + placeholder: | |
| 29 | + 1. `mlxcel download mlx-community/Qwen3.5-0.8B-OptiQ-4bit` |
| 30 | + 2. `mlxcel generate -m models/Qwen3.5-0.8B-OptiQ-4bit -p "..." -n 100 --seed 42` |
| 31 | + 3. Observed: ... |
| 32 | + 4. Expected: ... |
| 33 | + render: bash |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | + - type: textarea |
| 38 | + id: expected |
| 39 | + attributes: |
| 40 | + label: Expected behavior |
| 41 | + description: What did you expect to happen? |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + |
| 45 | + - type: textarea |
| 46 | + id: actual |
| 47 | + attributes: |
| 48 | + label: Actual behavior |
| 49 | + description: What actually happened? Include error messages, panic backtraces, or unexpected output verbatim. |
| 50 | + render: text |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: input |
| 55 | + id: version |
| 56 | + attributes: |
| 57 | + label: mlxcel version |
| 58 | + description: Output of `mlxcel --version` or the commit SHA you built from. |
| 59 | + placeholder: e.g. "v0.0.27" or "main @ abc1234" |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: dropdown |
| 64 | + id: install |
| 65 | + attributes: |
| 66 | + label: Install method |
| 67 | + options: |
| 68 | + - Homebrew (lablup/tap) |
| 69 | + - Pre-built release binary (GitHub Releases) |
| 70 | + - Built from source |
| 71 | + - Other (please describe in Additional context) |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + |
| 75 | + - type: dropdown |
| 76 | + id: platform |
| 77 | + attributes: |
| 78 | + label: Platform |
| 79 | + options: |
| 80 | + - macOS (Apple Silicon) |
| 81 | + - Linux + CUDA (gb10) |
| 82 | + - Linux + CUDA (gh200) |
| 83 | + - Linux + CUDA (other — please specify in Additional context) |
| 84 | + - Other |
| 85 | + validations: |
| 86 | + required: true |
| 87 | + |
| 88 | + - type: input |
| 89 | + id: model |
| 90 | + attributes: |
| 91 | + label: Model checkpoint |
| 92 | + description: The Hugging Face repo ID or local path of the model you were running, if relevant. |
| 93 | + placeholder: e.g. "mlx-community/Qwen3.5-0.8B-OptiQ-4bit" |
| 94 | + |
| 95 | + - type: textarea |
| 96 | + id: logs |
| 97 | + attributes: |
| 98 | + label: Relevant logs |
| 99 | + description: Server / CLI output, ideally with `RUST_LOG=mlxcel=debug` set for stack traces. |
| 100 | + render: text |
| 101 | + |
| 102 | + - type: textarea |
| 103 | + id: additional |
| 104 | + attributes: |
| 105 | + label: Additional context |
| 106 | + description: Anything else that might help — workarounds you tried, related issues, screenshots, etc. |
| 107 | + |
| 108 | + - type: checkboxes |
| 109 | + id: checks |
| 110 | + attributes: |
| 111 | + label: Pre-submission checks |
| 112 | + options: |
| 113 | + - label: I searched existing issues and did not find a duplicate |
| 114 | + required: true |
| 115 | + - label: This is not a security vulnerability (those go to SECURITY.md instead) |
| 116 | + required: true |
0 commit comments