Skip to content

Commit 6472992

Browse files
authored
Merge pull request #101 from mistralai/pandora-s-git-patch-1
Issue Templates
2 parents 70c9d2c + 54b7e80 commit 6472992

File tree

3 files changed

+123
-0
lines changed

3 files changed

+123
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Bug report related to the Python client
2+
description: Submit a bug report that's related to the Python client
3+
title: '[BUG CLIENT]: '
4+
labels: ['bug client', 'triage']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: python-vv
12+
attributes:
13+
label: Python -VV
14+
description: Run `python -VV` from your virtual environment
15+
placeholder: Copy-paste the output (no need for backticks, will be formatted into code automatically)
16+
render: shell
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: pip-freeze
21+
attributes:
22+
label: Pip Freeze
23+
description: Run `pip freeze` from your virtual environment
24+
placeholder: Copy-paste the output (no need for backticks, will be formatted into code automatically)
25+
render: shell
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: reproduction-steps
30+
attributes:
31+
label: Reproduction Steps
32+
description: Provide a clear and concise description of the steps that lead to your issue.
33+
placeholder: |
34+
1. First step...
35+
2. Second step...
36+
...
37+
validations:
38+
required: true
39+
- type: textarea
40+
id: expected-behavior
41+
attributes:
42+
label: Expected Behavior
43+
description: Explain briefly what you expected to happen.
44+
validations:
45+
required: true
46+
- type: textarea
47+
id: additional-context
48+
attributes:
49+
label: Additional Context
50+
description: Add any context about your problem that you deem relevant.
51+
- type: textarea
52+
id: suggested-solutions
53+
attributes:
54+
label: Suggested Solutions
55+
description: Please list any solutions you recommend we consider.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug report related to our models
2+
description: Submit a bug report that's related to our models behavior
3+
title: '[BUG MODEL]: '
4+
labels: ['bug model', 'triage']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: dropdown
11+
id: model
12+
attributes:
13+
label: Model
14+
description: What's the model?
15+
options:
16+
- open-mistral-7b
17+
- open-mixtral-8x7b
18+
- open-mixtral-8x22b
19+
- mistral-small-latest
20+
- mistral-medium-latest
21+
- mistral-large-latest
22+
- mistral-embed
23+
- codestral-latest
24+
default: 0
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: model-payload
29+
attributes:
30+
label: Request Payload
31+
description: Please provide the full request payload.
32+
placeholder: |
33+
Please provide a complete example of the request payload, including, if possible, parameters such as 'messages', 'max_tokens', 'temperature', 'prefix', and 'tool_calls'.
34+
If you can, please set the 'temperature' parameter to 0 in your example. This will greatly help us.
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: model-output
39+
attributes:
40+
label: Output
41+
description: Provide the output of the model.
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: model-expected-output
46+
attributes:
47+
label: Expected Behavior
48+
description: Explain briefly what you expected to happen.
49+
validations:
50+
required: true
51+
- type: textarea
52+
id: model-additional-context
53+
attributes:
54+
label: Additional Context
55+
description: Add any context about your problem that you deem relevant.
56+
- type: textarea
57+
id: model-suggested-solutions
58+
attributes:
59+
label: Suggested Solutions
60+
description: Please list any solutions you recommend we consider.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Documentation
4+
url: https://docs.mistral.ai
5+
about: Developer documentation for the Mistral AI platform
6+
- name: Discord
7+
url: https://discord.com/invite/mistralai)
8+
about: Chat with the Mistral community

0 commit comments

Comments
 (0)