Skip to content

Add new bug report template and VSCode settings #1339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

85 changes: 85 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
# @format

name: Bug Report
description: Create a report to help us reproduce and fix the issue
title: "[Bug]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
**Before submitting a bug, please make sure the issue hasn't been already addressed by searching through the [FAQs](https://ai.meta.com/llama/faq/) and [existing/past issues](https://github.com/facebookresearch/llama/issues)**
- type: textarea
id: description
attributes:
label: Describe the bug
description: Please provide a clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Minimal Reproducible Example
description: Please include a minimal code snippet to reproduce the bug. Ensure relevant imports are included.
placeholder: |
```python
# sample code to repro the bug
```
render: python
validations:
required: true
- type: textarea
id: output
attributes:
label: Output / Stack Trace
description: Paste the full stack trace and any relevant output.
placeholder: |
```
<paste stacktrace and other outputs here>
```
render: shell
validations:
required: true
- type: input
id: model
attributes:
label: Model
placeholder: "e.g., llama-2-7b-chat"
validations:
required: true
- type: dropdown
id: huggingface
attributes:
label: Using via Hugging Face?
options:
- "yes"
- "no"
validations:
required: true
- type: input
id: os
attributes:
label: Operating System
placeholder: "e.g., Linux/Ubuntu, Windows 11"
validations:
required: true
- type: input
id: gpu-vram
attributes:
label: GPU VRAM
placeholder: "e.g., 80GB"
- type: input
id: gpu-count
attributes:
label: Number of GPUs
placeholder: "e.g., 1, 8"
- type: input
id: gpu-make
attributes:
label: GPU Make
placeholder: "e.g., Nvidia, AMD"
- type: textarea
id: context
attributes:
label: Additional Context
description: Add any other context about the problem or environment here.
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"python-envs.pythonProjects": [
{
"path": "",
"envManager": "ms-python.python:venv",
"packageManager": "ms-python.python:pip"
}
]
}