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)