-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1177 from janhq/issuetemplate
chore: standardize issue templates
- Loading branch information
Showing
8 changed files
with
100 additions
and
75 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: "\U0001F41B Bug Report" | ||
description: "If something isn't working as expected \U0001F914" | ||
labels: [ "type: bug" ] | ||
title: 'bug: [DESCRIPTION]' | ||
|
||
body: | ||
- type: input | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Cortex version" | ||
description: "**Tip:** The version is in the app's bottom right corner" | ||
|
||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Describe the Bug" | ||
description: "A clear & concise description of the bug" | ||
|
||
- type: textarea | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: | | ||
Please list out steps to reproduce the issue | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '...' | ||
- type: textarea | ||
attributes: | ||
label: "Screenshots / Logs" | ||
description: | | ||
You can find logs in: ~/cortex/logs | ||
- type: checkboxes | ||
attributes: | ||
label: "What is your OS?" | ||
options: | ||
- label: MacOS | ||
- label: Windows | ||
- label: Linux | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: "What engine are you running?" | ||
options: | ||
- label: cortex.llamacpp (default) | ||
- label: cortex.tensorrt-llm (Nvidia GPUs) | ||
- label: cortex.onnx (NPUs, DirectML) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## To encourage contributors to use issue templates, we don't allow blank issues | ||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: "\1F4AC Cortex Discussions" | ||
url: "https://github.com/orgs/janhq/discussions/categories/q-a" | ||
about: "Get help, discuss features & roadmap, and share your projects" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: "\U0001F680 Feature Request" | ||
description: "Suggest an idea for this project \U0001F63B!" | ||
title: 'idea: [DESCRIPTION]' | ||
body: | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Problem Statement" | ||
description: "Describe the problem you're facing" | ||
placeholder: | | ||
I'm always frustrated when ... | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Feature Idea" | ||
description: "Describe what you want instead. Examples are welcome!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: "\U0001F929 Model Request" | ||
description: "Request a new model to be compiled" | ||
title: 'feat: [DESCRIPTION]' | ||
labels: 'type: model request' | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "**Tip:** Download any model with `cortex pull HUGGINGFACE_MODEL_ID`. Use this form for unsupported models only." | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: "Model Requests" | ||
description: "If applicable, include the source URL, licenses, and any other relevant information" | ||
- type: checkboxes | ||
attributes: | ||
label: "Which formats?" | ||
options: | ||
- label: GGUF (llama.cpp) | ||
- label: TensorRT (TensorRT-LLM) | ||
- label: ONNX (Onnx Runtime) |