Skip to content

Commit 0ec954c

Browse files
committed
nit
1 parent f680ab6 commit 0ec954c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

langgraph_supervisor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from langgraph_supervisor.supervisor import create_supervisor
21
from langgraph_supervisor.handoff import create_handoff_tool
2+
from langgraph_supervisor.supervisor import create_supervisor
33

44
__all__ = ["create_supervisor", "create_handoff_tool"]

langgraph_supervisor/handoff.py

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def create_handoff_tool(
6161
name: Optional name of the tool to use for the handoff.
6262
If not provided, the tool name will be `transfer_to_<agent_name>`.
6363
description: Optional description for the handoff tool.
64+
If not provided, the description will be `Ask agent <agent_name> for help`.
6465
"""
6566
if name is None:
6667
name = f"transfer_to_{_normalize_agent_name(agent_name)}"

0 commit comments

Comments
 (0)