From e601856812ef64e87b31c8ca591964da44aa2e69 Mon Sep 17 00:00:00 2001 From: Gaetan Hurel Date: Mon, 30 Jun 2025 16:55:55 +0200 Subject: [PATCH] remove poem tool --- simple-react-agent/custom_tools/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/simple-react-agent/custom_tools/__init__.py b/simple-react-agent/custom_tools/__init__.py index 077bb81..8575550 100644 --- a/simple-react-agent/custom_tools/__init__.py +++ b/simple-react-agent/custom_tools/__init__.py @@ -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"]