|
@@ -8,7 +8,7 @@ Agents can empower Llama 3 with important new capabilities. In particular, we wi
|
|
|
|
|
|
Tool-calling agents with LangGraph use two nodes: (1) a LLM node decides which tool to invoke based upon the user input. It outputs the tool name and tool arguments to use based upon the input. (2) the tool name and arguments are passed to a tool node, which calls the tool with the specified arguments and returns the result back to the LLM.
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
Our first notebook, `langgraph-tool-calling-agent`, shows how to build our agent mentioned above using LangGraph.
|
|
|
|