TavilySearchResults breaks langgraph #1143
-
from langchain_community.tools.tavily_search import TavilySearchResults
tavily_search = TavilySearchResults(max_results=2)
tools = [
get_weather,
other_tool,
tavily_search
]
from langgraph.prebuilt import ToolNode
tool_node = ToolNode(tools=tools)
graph_builder.add_node("tools", tool_node)
...
graph_builder.add_conditional_edges(
"chatbot",
tools_condition,
{"tools": "tools", "__end__": "__end__"},
)
...
for chunk in graph.stream(
{"messages": [("human", "what is node in langgraph")]}, stream_mode="values"
):
chunk["messages"][-1].pretty_print() If graph agent decides to use tavily_search, it can perform search, then throw error Other tools work fine though. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
What LLM are you using? |
Beta Was this translation helpful? Give feedback.
-
I believe you just need to upgrade to version |
Beta Was this translation helpful? Give feedback.
I believe you just need to upgrade to version
0.1.12
and this should be fixed - can you try this and confirm? if yes, we should yank this version (which had a bug in it)