.github: add issue templates (#3143)
This commit is contained in:
parent
e87c780ff9
commit
87100be5e0
4 changed files with 194 additions and 0 deletions
19
.github/ISSUE_TEMPLATE/10_model_request.yml
vendored
Normal file
19
.github/ISSUE_TEMPLATE/10_model_request.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
name: Model request
|
||||||
|
description: Request a new model for the library
|
||||||
|
title: ""
|
||||||
|
labels: [mr]
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please check if your Model request is [already available](https://ollama.com/search) or that you cannot [import it](https://github.com/ollama/ollama/blob/main/docs/import.md#import-a-model) yourself.
|
||||||
|
Tell us about which Model you'd like to see in the library!
|
||||||
|
- type: textarea
|
||||||
|
id: problem
|
||||||
|
attributes:
|
||||||
|
label: What model would you like?
|
||||||
|
description: Please provide a link to the model.
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for filing a model request!
|
42
.github/ISSUE_TEMPLATE/20_feature_request.yml
vendored
Normal file
42
.github/ISSUE_TEMPLATE/20_feature_request.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
name: Feature request
|
||||||
|
description: Propose a new feature
|
||||||
|
title: ""
|
||||||
|
labels: [needs-triage, fr]
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please check if your feature request is [already filed](https://github.com/ollama/ollama/issues).
|
||||||
|
Tell us about your idea!
|
||||||
|
- type: textarea
|
||||||
|
id: problem
|
||||||
|
attributes:
|
||||||
|
label: What are you trying to do?
|
||||||
|
description: Tell us about the problem you're trying to solve.
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: solution
|
||||||
|
attributes:
|
||||||
|
label: How should we solve this?
|
||||||
|
description: If you have an idea of how you'd like to see this feature work, let us know.
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: alternative
|
||||||
|
attributes:
|
||||||
|
label: What is the impact of not solving this?
|
||||||
|
description: (How) Are you currently working around the issue?
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: context
|
||||||
|
attributes:
|
||||||
|
label: Anything else?
|
||||||
|
description: Any additional context to share, e.g., links
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for filing a feature request!
|
125
.github/ISSUE_TEMPLATE/90_bug_report.yml
vendored
Normal file
125
.github/ISSUE_TEMPLATE/90_bug_report.yml
vendored
Normal file
|
@ -0,0 +1,125 @@
|
||||||
|
name: Bug report
|
||||||
|
description: File a bug report. If you need help, please join our Discord server.
|
||||||
|
labels: [needs-triage, bug]
|
||||||
|
body:
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Please check if your bug is [already filed](https://github.com/ollama/ollama/issues) before filing a new one.
|
||||||
|
- type: textarea
|
||||||
|
id: what-happened
|
||||||
|
attributes:
|
||||||
|
label: What is the issue?
|
||||||
|
description: What happened? What did you expect to happen?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: what-was-expected
|
||||||
|
attributes:
|
||||||
|
label: What did you expect to see?
|
||||||
|
description: What did you expect to see/happen instead?
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: steps
|
||||||
|
attributes:
|
||||||
|
label: Steps to reproduce
|
||||||
|
description: What are the steps you took that hit this issue?
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: changes
|
||||||
|
attributes:
|
||||||
|
label: Are there any recent changes that introduced the issue?
|
||||||
|
description: If so, what are those changes?
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: dropdown
|
||||||
|
id: os
|
||||||
|
attributes:
|
||||||
|
label: OS
|
||||||
|
description: What OS are you using? You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- Linux
|
||||||
|
- macOS
|
||||||
|
- Windows
|
||||||
|
- Other
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: dropdown
|
||||||
|
id: architecture
|
||||||
|
attributes:
|
||||||
|
label: Architecture
|
||||||
|
description: What architecture are you using? You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- arm64
|
||||||
|
- amd64
|
||||||
|
- x86
|
||||||
|
- Other
|
||||||
|
- type: dropdown
|
||||||
|
id: platform
|
||||||
|
attributes:
|
||||||
|
label: Platform
|
||||||
|
description: What platform are you using? You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- Docker
|
||||||
|
- WSL
|
||||||
|
- WSL2
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: input
|
||||||
|
id: ollama-version
|
||||||
|
attributes:
|
||||||
|
label: Ollama version
|
||||||
|
description: What Ollama version are you using? (`ollama --version`)
|
||||||
|
placeholder: e.g., 1.14.4
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: dropdown
|
||||||
|
id: gpu
|
||||||
|
attributes:
|
||||||
|
label: GPU
|
||||||
|
description: What GPU, if any, are you using? You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- Nvidia
|
||||||
|
- AMD
|
||||||
|
- Intel
|
||||||
|
- Apple
|
||||||
|
- Other
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: gpu-info
|
||||||
|
attributes:
|
||||||
|
label: GPU info
|
||||||
|
description: What GPU info do you have? (`nvidia-smi`, `rocminfo`, `system_profiler SPDisplaysDataType`, etc.)
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: dropdown
|
||||||
|
id: cpu
|
||||||
|
attributes:
|
||||||
|
label: CPU
|
||||||
|
description: What CPU are you using? You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- Intel
|
||||||
|
- AMD
|
||||||
|
- Apple
|
||||||
|
- Other
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: textarea
|
||||||
|
id: other-software
|
||||||
|
attributes:
|
||||||
|
label: Other software
|
||||||
|
description: What other software are you using that might be related to this issue?
|
||||||
|
validations:
|
||||||
|
required: false
|
||||||
|
- type: markdown
|
||||||
|
attributes:
|
||||||
|
value: |
|
||||||
|
Thanks for filing a bug report!
|
8
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
blank_issues_enabled: true
|
||||||
|
contact_links:
|
||||||
|
- name: Help
|
||||||
|
url: https://discord.com/invite/ollama
|
||||||
|
about: Please join our Discord server for help using Ollama
|
||||||
|
- name: Troubleshooting
|
||||||
|
url: https://github.com/ollama/ollama/blob/main/docs/faq.md#faq
|
||||||
|
about: See the FAQ for common issues and solutions
|
Loading…
Reference in a new issue