You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug-report.yml
+49-28Lines changed: 49 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -8,16 +8,15 @@ body:
8
8
value: |
9
9
Thank you for taking the time to file a bug report.
10
10
11
-
Use this to report BUGS in LangChain. For usage questions, feature requests and general design questions, please use the [LangChain Forum](https://forum.langchain.com/).
11
+
For usage questions, feature requests and general design questions, please use the [LangChain Forum](https://forum.langchain.com/).
12
12
13
-
Relevant links to check before filing a bug report to see if your issue has already been reported, fixed or
14
-
if there's another way to solve your problem:
13
+
Check these before submitting to see if your issue has already been reported, fixed or if there's another way to solve your problem:
- label: This is not related to the langchain-community package.
38
37
required: true
39
-
- label: I read what a minimal reproducible example is (https://stackoverflow.com/help/minimal-reproducible-example).
40
-
required: true
41
38
- label: I posted a self-contained, minimal, reproducible example. A maintainer can copy it and run it AS IS.
42
39
required: true
40
+
- type: checkboxes
41
+
id: package
42
+
attributes:
43
+
label: Package (Required)
44
+
description: |
45
+
Which `langchain` package(s) is this bug related to? Select at least one.
46
+
47
+
Note that if the package you are reporting for is not listed here, it is not in this repository (e.g. `langchain-google-genai` is in [`langchain-ai/langchain-google`](https://github.com/langchain-ai/langchain-google/)).
48
+
49
+
Please report issues for other packages to their respective repositories.
50
+
options:
51
+
- label: langchain
52
+
- label: langchain-openai
53
+
- label: langchain-anthropic
54
+
- label: langchain-classic
55
+
- label: langchain-core
56
+
- label: langchain-cli
57
+
- label: langchain-model-profiles
58
+
- label: langchain-tests
59
+
- label: langchain-text-splitters
60
+
- label: langchain-chroma
61
+
- label: langchain-deepseek
62
+
- label: langchain-exa
63
+
- label: langchain-fireworks
64
+
- label: langchain-groq
65
+
- label: langchain-huggingface
66
+
- label: langchain-mistralai
67
+
- label: langchain-nomic
68
+
- label: langchain-ollama
69
+
- label: langchain-perplexity
70
+
- label: langchain-prompty
71
+
- label: langchain-qdrant
72
+
- label: langchain-xai
73
+
- label: Other / not sure / general
43
74
- type: textarea
44
75
id: reproduction
45
76
validations:
46
77
required: true
47
78
attributes:
48
-
label: Example Code
79
+
label: Example Code (Python)
49
80
description: |
50
81
Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
51
82
52
83
If a maintainer can copy it, run it, and see it right away, there's a much higher chance that you'll be able to get help.
53
84
54
85
**Important!**
55
86
56
-
* Avoid screenshots when possible, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code.
57
-
* Reduce your code to the minimum required to reproduce the issue if possible. This makes it much easier for others to help you.
58
-
* Use code tags (e.g., ```python ... ```) to correctly [format your code](https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting).
59
-
* INCLUDE the language label (e.g. `python`) after the first three backticks to enable syntax highlighting. (e.g., ```python rather than ```).
87
+
* Avoid screenshots, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code.
88
+
* Reduce your code to the minimum required to reproduce the issue if possible.
60
89
90
+
(This will be automatically formatted into code, so no need for backticks.)
91
+
render: python
61
92
placeholder: |
62
-
The following code:
63
-
64
-
```python
65
93
from langchain_core.runnables import RunnableLambda
66
94
67
95
def bad_code(inputs) -> int:
68
96
raise NotImplementedError('For demo purpose')
69
97
70
98
chain = RunnableLambda(bad_code)
71
99
chain.invoke('Hello!')
72
-
```
73
100
- type: textarea
74
-
id: error
75
-
validations:
76
-
required: false
77
101
attributes:
78
102
label: Error Message and Stack Trace (if applicable)
79
103
description: |
80
-
If you are reporting an error, please include the full error message and stack trace.
81
-
placeholder: |
82
-
Exception + full stack trace
104
+
If you are reporting an error, please copy and paste the full error message and
105
+
stack trace.
106
+
(This will be automatically formatted into code, so no need for backticks.)
107
+
render: shell
83
108
- type: textarea
84
109
id: description
85
110
attributes:
@@ -99,9 +124,7 @@ body:
99
124
attributes:
100
125
label: System Info
101
126
description: |
102
-
Please share your system info with us. Do NOT skip this step and please don't trim
103
-
the output. Most users don't include enough information here and it makes it harder
104
-
for us to help you.
127
+
Please share your system info with us.
105
128
106
129
Run the following command in your terminal and paste the output here:
107
130
@@ -113,8 +136,6 @@ body:
113
136
from langchain_core import sys_info
114
137
sys_info.print_sys_info()
115
138
```
116
-
117
-
alternatively, put the entire output of `pip freeze` here.
- label: This is not related to the langchain-community package.
36
36
required: true
37
+
- type: checkboxes
38
+
id: package
39
+
attributes:
40
+
label: Package (Required)
41
+
description: |
42
+
Which `langchain` package(s) is this request related to? Select at least one.
43
+
44
+
Note that if the package you are requesting for is not listed here, it is not in this repository (e.g. `langchain-google-genai` is in `langchain-ai/langchain`).
45
+
46
+
Please submit feature requests for other packages to their respective repositories.
0 commit comments