-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
86 additions
and
80 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,51 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for submitting a bug report. | ||
#### To help us resolve your issue, please provide fill in this bug report template. | ||
- type: dropdown | ||
id: contribute | ||
attributes: | ||
label: Willingness to contribute | ||
description: The Opik team encourages contributions from the community. If you are interested in contributing a fix for this bug, please select "Yes" and we will assign you to the issue. | ||
options: | ||
- Yes. I can contribute a fix for this bug independently. | ||
- No. I can't contribute a fix for this bug at this time. | ||
- type: checkboxes | ||
attributes: | ||
label: What component(s) are affected? | ||
options: | ||
- label: Python SDK | ||
required: false | ||
- label: Opik UI | ||
required: false | ||
- label: Opik Server | ||
required: false | ||
- label: Documentation | ||
required: false | ||
validations: | ||
required: true | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: Opik version | ||
placeholder: The Opik version, you can find the Opik version by running `opik.__version__` in Python. | ||
value: | | ||
- Opik version: x.x.x | ||
- type: textarea | ||
attributes: | ||
label: Describe the problem | ||
description: | | ||
Describe the problem clearly here, you should include both the expected behavior and the actual behavior. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Reproduction steps | ||
description: Describe how to reproduce your bug. Please provide detailed steps and include code snippets if possible. |
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,35 @@ | ||
name: Feature Request | ||
description: File a feature request. | ||
title: "[FR]: " | ||
labels: ["enhancement"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for submitting a feature request. | ||
#### To help us prioritize your request, please provide fill in this feature request template. | ||
- type: dropdown | ||
id: contribute | ||
attributes: | ||
label: Willingness to contribute | ||
description: The Opik team encourages contributions from the community. If you are interested in implementing this feature, please select "Yes" and we will assign you to the issue. | ||
options: | ||
- Yes. I can contribute this feature independently. | ||
- No. I can't contribute this feature at this time. | ||
- type: textarea | ||
attributes: | ||
label: Proposal summary | ||
description: Provide a brief summary of your feature request. | ||
validations: | ||
required: true | ||
- type: textarea | ||
validations: | ||
required: true | ||
attributes: | ||
label: Motivation | ||
description: | | ||
Describe the motivation for your feature request, this can include: | ||
- What problem are you trying to solve? | ||
- How are you currently solving this problem? | ||
- What are the benefits of this feature? |
This file was deleted.
Oops, something went wrong.