We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f680ab6 commit 0ec954cCopy full SHA for 0ec954c
langgraph_supervisor/__init__.py
@@ -1,4 +1,4 @@
1
-from langgraph_supervisor.supervisor import create_supervisor
2
from langgraph_supervisor.handoff import create_handoff_tool
+from langgraph_supervisor.supervisor import create_supervisor
3
4
__all__ = ["create_supervisor", "create_handoff_tool"]
langgraph_supervisor/handoff.py
@@ -61,6 +61,7 @@ def create_handoff_tool(
61
name: Optional name of the tool to use for the handoff.
62
If not provided, the tool name will be `transfer_to_<agent_name>`.
63
description: Optional description for the handoff tool.
64
+ If not provided, the description will be `Ask agent <agent_name> for help`.
65
"""
66
if name is None:
67
name = f"transfer_to_{_normalize_agent_name(agent_name)}"
0 commit comments