Skip to content

Commit b7c99e5

Browse files
authored
Add issue templates (#975)
1 parent 339abd8 commit b7c99e5

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: 🐛 Pydantic AI Bug
2+
description: Report a bug or unexpected behavior in Pydantic AI
3+
labels: ["need confirmation"]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for contributing to Pydantic AI! ✊
9+
10+
- type: checkboxes
11+
id: checks
12+
attributes:
13+
label: Initial Checks
14+
description: Just making sure you're using the latest version of Pydantic AI.
15+
options:
16+
- label: I confirm that I'm using the latest version of Pydantic AI
17+
required: true
18+
19+
- type: textarea
20+
id: description
21+
attributes:
22+
label: Description
23+
description: |
24+
Please explain what you're seeing and what you would expect to see.
25+
26+
Please provide as much detail as possible to make understanding and solving your problem as quick as possible. 🙏
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: example
32+
attributes:
33+
label: Example Code
34+
description: >
35+
If applicable, please add a self-contained,
36+
[minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example)
37+
demonstrating the bug.
38+
39+
placeholder: |
40+
from pydantic_ai import Agent
41+
42+
...
43+
render: Python
44+
45+
- type: textarea
46+
id: version
47+
attributes:
48+
label: Python, Pydantic AI & LLM client version
49+
description: |
50+
Which version of Python, Pydantic and LLM client are you using?
51+
render: Text
52+
validations:
53+
required: true

.github/ISSUE_TEMPLATE/config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: 💬 Join Slack
4+
url: "https://logfire.pydantic.dev/docs/help/#slack"
5+
about: Join the Logfire Slack to ask questions, get help and chat about Pydantic AI
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 🚀 Pydantic AI Feature Request
2+
description: "Suggest a new feature for Pydantic AI"
3+
labels: ["feature request"]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for contributing to Pydantic AI! ✊
9+
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: |
15+
Please give as much detail as possible about the feature you would like to suggest. 🙏
16+
17+
You might like to add:
18+
* A demo of how code might look when using the feature
19+
* Your use case(s) for the feature
20+
* Reference to other projects that have a similar feature
21+
validations:
22+
required: true

0 commit comments

Comments
 (0)