diff options
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug_report.yml')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 42 | 
1 files changed, 40 insertions, 2 deletions
| diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7d435297..d80b24e2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -43,11 +43,20 @@ body:    - type: input      id: commit      attributes: -      label: Commit where the problem happens -      description: Which commit are you running ? (Do not write *Latest version/repo/commit*, as this means nothing and will have changed by the time we read your issue. Rather, copy the **Commit** link at the bottom of the UI, or from the cmd/terminal if you can't launch it.) +      label: Version or Commit where the problem happens +      description: "Which webui version or commit are you running ? (Do not write *Latest Version/repo/commit*, as this means nothing and will have changed by the time we read your issue. Rather, copy the **Version: v1.2.3** link at the bottom of the UI, or from the cmd/terminal if you can't launch it.)"      validations:        required: true    - type: dropdown +    id: py-version +    attributes: +      label: What Python version are you running on ? +      multiple: false +      options: +        - Python 3.10.x +        - Python 3.11.x (above, no supported yet) +        - Python 3.9.x (below, no recommended) +  - type: dropdown      id: platforms      attributes:        label: What platforms do you use to access the UI ? @@ -60,6 +69,35 @@ body:          - Android          - Other/Cloud    - type: dropdown +    id: device +    attributes: +        label: What device are you running WebUI on? +        multiple: true +        options: +        - Nvidia GPUs (RTX 20 above) +        - Nvidia GPUs (GTX 16 below) +        - AMD GPUs (RX 6000 above) +        - AMD GPUs (RX 5000 below) +        - CPU +        - Other GPUs +  - type: dropdown +    id: cross_attention_opt +    attributes: +      label: Cross attention optimization +      description: What cross attention optimization are you using, Settings -> Optimizations -> Cross attention optimization +      multiple: false +      options: +        - Automatic +        - xformers +        - sdp-no-mem +        - sdp +        - Doggettx +        - V1  +        - InvokeAI +        - "None " +    validations: +      required: true +  - type: dropdown      id: browsers      attributes:        label: What browsers do you use to access the UI ? | 
