2023-05-04 23:33:52 +00:00
name : "\U0001F41B Bug Report"
2024-01-24 17:09:21 +00:00
description : Report a bug in LangChain. To report a security issue, please instead use the security option below. For questions, please use the GitHub Discussions.
2023-05-04 23:33:52 +00:00
labels : [ "02 Bug Report" ]
body :
- type : markdown
attributes :
value : >
2024-01-10 18:16:02 +00:00
Thank you for taking the time to file a bug report.
2024-01-24 17:09:21 +00:00
Use this to report bugs in LangChain.
If you're not certain that your issue is due to a bug in LangChain, please use [GitHub Discussions](https://github.com/langchain-ai/langchain/discussions)
to ask for help with your issue.
2024-01-10 18:16:02 +00:00
Relevant links to check before filing a bug report to see if your issue has already been reported, fixed or
if there's another way to solve your problem :
[ LangChain documentation with the integrated search](https://python.langchain.com/docs/get_started/introduction),
[ API Reference](https://api.python.langchain.com/en/stable/),
[ GitHub search](https://github.com/langchain-ai/langchain),
[ LangChain Github Discussions](https://github.com/langchain-ai/langchain/discussions),
2024-01-24 17:09:21 +00:00
[ LangChain Github Issues](https://github.com/langchain-ai/langchain/issues?q=is%3Aissue),
[ LangChain ChatBot](https://chat.langchain.com/)
2024-01-10 17:35:41 +00:00
- type : checkboxes
id : checks
2023-05-04 23:33:52 +00:00
attributes :
2024-01-10 17:35:41 +00:00
label : Checked other resources
description : Please confirm and check all the following options.
options :
- label : I added a very descriptive title to this issue.
required : true
2024-01-10 18:16:02 +00:00
- label : I searched the LangChain documentation with the integrated search.
2024-01-10 17:35:41 +00:00
required : true
- label : I used the GitHub search to find a similar question and didn't find it.
required : true
2024-01-24 17:09:21 +00:00
- label : I am sure that this is a bug in LangChain rather than my code.
required : true
2024-02-28 21:27:39 +00:00
- label : The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package).
required : true
2024-01-10 17:35:41 +00:00
- type : textarea
id : reproduction
2023-05-04 23:33:52 +00:00
validations :
required : true
2024-01-10 17:35:41 +00:00
attributes :
label : Example Code
description : |
Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
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.
2024-01-24 17:09:21 +00:00
**Important!**
2024-01-10 17:35:41 +00:00
2024-01-24 17:09:21 +00:00
* 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).
* INCLUDE the language label (e.g. `python`) after the first three backticks to enable syntax highlighting. (e.g., ```python rather than ```).
* Reduce your code to the minimum required to reproduce the issue if possible. This makes it much easier for others to help you.
* Avoid screenshots when possible, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code.
2023-05-04 23:33:52 +00:00
2024-01-10 17:35:41 +00:00
placeholder : |
The following code :
```python
2024-01-10 18:16:02 +00:00
from langchain_core.runnables import RunnableLambda
def bad_code(inputs) -> int :
raise NotImplementedError('For demo purpose')
chain = RunnableLambda(bad_code)
chain.invoke('Hello!')
2024-01-10 17:35:41 +00:00
```
2024-01-24 17:09:21 +00:00
- type : textarea
id : error
validations :
required : false
attributes :
label : Error Message and Stack Trace (if applicable)
description : |
If you are reporting an error, please include the full error message and stack trace.
placeholder : |
Exception + full stack trace
2023-05-04 23:33:52 +00:00
- type : textarea
2024-01-10 17:35:41 +00:00
id : description
2023-05-04 23:33:52 +00:00
attributes :
2024-01-10 17:35:41 +00:00
label : Description
2023-05-04 23:33:52 +00:00
description : |
2024-01-10 17:35:41 +00:00
What is the problem, question, or error?
2023-05-04 23:33:52 +00:00
2024-01-10 17:35:41 +00:00
Write a short description telling what you are doing, what you expect to happen, and what is currently happening.
placeholder : |
* I'm trying to use the `langchain` library to do X.
* I expect to see Y.
* Instead, it does Z.
validations :
required : true
- type : textarea
id : system-info
2023-05-04 23:33:52 +00:00
attributes :
2024-01-10 17:35:41 +00:00
label : System Info
2024-01-24 17:09:21 +00:00
description : |
Please share your system info with us.
"pip freeze | grep langchain"
platform (windows / linux / mac)
python version
OR if you're on a recent version of langchain-core you can paste the output of :
python -m langchain_core.sys_info
2024-01-10 17:39:08 +00:00
placeholder : |
"pip freeze | grep langchain"
platform
python version
2024-01-24 17:09:21 +00:00
Alternatively, if you're on a recent version of langchain-core you can paste the output of :
python -m langchain_core.sys_info
These will only surface LangChain packages, don't forget to include any other relevant
packages you're using (if you're not sure what's relevant, you can paste the entire output of `pip freeze`).
2024-01-10 17:35:41 +00:00
validations :
required : true