From c6e8d6c24722a199d8c9cbe2a154161609b36885 Mon Sep 17 00:00:00 2001 From: Mark Sze Date: Mon, 20 Jan 2025 20:04:51 +0000 Subject: [PATCH] Updated test of tool description to match CrewAI's updated tool description Signed-off-by: Mark Sze --- test/interop/crewai/test_crewai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/interop/crewai/test_crewai.py b/test/interop/crewai/test_crewai.py index 164ed0758f..e9f5adc79d 100644 --- a/test/interop/crewai/test_crewai.py +++ b/test/interop/crewai/test_crewai.py @@ -50,7 +50,7 @@ def test_convert_tool(self) -> None: assert self.tool.name == "Read_a_file_s_content" assert ( self.tool.description - == "A tool that can be used to read None's content. (IMPORTANT: When using arguments, put them all in an `args` dictionary)" + == "A tool that reads the content of a file. To use this tool, provide a 'file_path' parameter with the path to the file you want to read. (IMPORTANT: When using arguments, put them all in an `args` dictionary)" ) args = self.model_type(file_path=file_path)