diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 6dfd8b051..83bbf116f 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,5 +1,5 @@ name: "\U0001F41B Bug Report" -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. +description: Report a bug in LangGraph. To report a security issue, please instead use the security option below. For questions, please use the GitHub Discussions. labels: ["02 Bug Report"] body: - type: markdown @@ -15,11 +15,11 @@ body: 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: + [LangGraph documentation](https://langchain-ai.github.io/langgraph/). [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), - [LangChain Github Issues](https://github.com/langchain-ai/langchain/issues?q=is%3Aissue), + [GitHub search](https://github.com/langchain-ai/langgraph), + [LangChain Github Discussions](https://github.com/langchain-ai/langgraph/discussions), + [LangChain Github Issues](https://github.com/langchain-ai/langgraph/issues), [LangChain ChatBot](https://chat.langchain.com/) - type: checkboxes id: checks @@ -54,13 +54,13 @@ body: * Avoid screenshots when possible, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code. placeholder: | - from langchain_core.runnables import RunnableLambda + from langgraph.graph import StateGraph def bad_code(inputs) -> int: raise NotImplementedError('For demo purpose') - chain = RunnableLambda(bad_code) - chain.invoke('Hello!') + chain = StateGraph(list) + chain.invoke('Hello!') render: python - type: textarea id: error @@ -82,7 +82,7 @@ body: 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'm trying to use the `langgraph` library to do X. * I expect to see Y. * Instead, it does Z. validations: @@ -102,7 +102,7 @@ body: python -m langchain_core.sys_info placeholder: | - "pip freeze | grep langchain" + "pip freeze | grep langgraph" platform python version diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 746565c48..ebbbe8c96 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,13 +3,13 @@ version: 2.1 contact_links: - name: 🤔 Question or Problem about: Ask a question or ask about a problem in GitHub Discussions. - url: https://www.github.com/langchain-ai/langchain/discussions/categories/q-a - - name: Discord - url: https://discord.gg/6adMQxSpJS - about: General community discussions + url: https://github.com/langchain-ai/langgraph/discussions/categories/q-a - name: Feature Request - url: https://www.github.com/langchain-ai/langchain/discussions/categories/ideas + url: https://github.com/langchain-ai/langgraph/discussions/categories/ideas about: Suggest a feature or an idea - name: Show and tell about: Show what you built with LangChain - url: https://www.github.com/langchain-ai/langchain/discussions/categories/show-and-tell + url: https://github.com/langchain-ai/langgraph/discussions/categories/show-and-tell + - name: Slack + url: https://www.langchain.com/join-community + about: General community discussions diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml index 61a3ad496..b2a0056bf 100644 --- a/.github/ISSUE_TEMPLATE/documentation.yml +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -1,5 +1,5 @@ name: Documentation -description: Report an issue related to the LangChain documentation. +description: Report an issue related to the LangGraph documentation. title: "DOC: " labels: [03 - Documentation]