remove poem tool

This commit is contained in:
Gaetan Hurel 2025-06-30 16:55:55 +02:00
parent 7e340a6649
commit e601856812
No known key found for this signature in database

View File

@ -1,6 +1,5 @@
"""Custom tools package for the LangGraph demo agent."""
from .poem_tool import print_poem
from .ssh_tool import SSHTool
from langchain_community.tools.shell.tool import ShellTool
@ -14,4 +13,4 @@ configured_remote_server = SSHTool(
ask_human_input=True # Safety confirmation
)
__all__ = ["print_poem", "SSHTool", "ShellTool", "configured_remote_server"]
__all__ = ["SSHTool", "ShellTool", "configured_remote_server"]