1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- name: Bug report
- labels: [bug]
- description: Something isn't working right.
- body:
- - type: textarea
- id: description
- attributes:
- label: What is the issue?
- description: What happened? What did you expect to happen?
- validations:
- required: true
- - type: textarea
- id: logs
- attributes:
- label: Relevant log output
- description: Please copy and paste any relevant log output. See [Troubleshooting Guide](https://github.com/ollama/ollama/blob/main/docs/troubleshooting.md#how-to-troubleshoot-issues) for details.
- render: shell
- validations:
- required: false
- - type: dropdown
- id: os
- attributes:
- label: OS
- description: Which operating system are you using?
- multiple: true
- options:
- - Linux
- - macOS
- - Windows
- - Docker
- - WSL2
- validations:
- required: false
- - type: dropdown
- id: gpu
- attributes:
- label: GPU
- description: Which GPU are you using?
- multiple: true
- options:
- - Nvidia
- - AMD
- - Intel
- - Apple
- - Other
- validations:
- required: false
- - type: dropdown
- id: cpu
- attributes:
- label: CPU
- description: Which CPU are you using?
- multiple: true
- options:
- - Intel
- - AMD
- - Apple
- - Other
- validations:
- required: false
- - type: input
- id: version
- attributes:
- label: Ollama version
- description: What version of Ollama are you using? (`ollama --version`)
- placeholder: e.g., 0.1.32
- validations:
- required: false
|