From 6caaa8cea7aed7e9cd3e11ff8b22ad6c795a8724 Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Wed, 4 Dec 2024 19:16:26 -0500 Subject: [PATCH] Update libs/langgraph/langgraph/types.py Co-authored-by: Nuno Campos --- libs/langgraph/langgraph/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/types.py b/libs/langgraph/langgraph/types.py index 28e5a5940..fcfd99318 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -256,7 +256,7 @@ class Command(Generic[N]): goto: can be one of the following: - name of the node to navigate to next (any node that belongs to the specified `graph`) - list of node names to navigate to next - - `Send` object + - `Send` object (to execute a node with the input provided) - sequence of `Send` objects """