diff --git a/integrations/llama_cpp/tests/test_chat_generator.py b/integrations/llama_cpp/tests/test_chat_generator.py index 065165e6b..99f70cd36 100644 --- a/integrations/llama_cpp/tests/test_chat_generator.py +++ b/integrations/llama_cpp/tests/test_chat_generator.py @@ -417,7 +417,6 @@ def test_function_call_and_execute(self, generator): assert len(response["replies"]) > 0 first_reply = response["replies"][0] - print(first_reply) assert "tool_calls" in first_reply.meta tool_calls = first_reply.meta["tool_calls"]