Fix example

CC @vbarda
This commit is contained in:
Jacob Lee
2024-07-11 15:14:12 -07:00
committed by GitHub
parent e9f7cd3e52
commit 634fd082c5
+1 -1
View File
@@ -84,7 +84,7 @@ tool_node = ToolNode(tools)
model = ChatAnthropic(model="claude-3-5-sonnet-20240620", temperature=0).bind_tools(tools)
# Define the function that determines whether to continue or not
def should_continue(state: MessagesState) -> Literal["tools", END]:
def should_continue(state: MessagesState):
messages = state['messages']
last_message = messages[-1]
# If the LLM makes a tool call, then we route to the "tools" node