From 6e0e9b30fe61116ac9940e39952ad86673a42376 Mon Sep 17 00:00:00 2001 From: "Brandon Hancock (bhancock_ai)" <109994880+bhancockio@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:35:39 -0500 Subject: [PATCH] drop prints (#2181) --- src/crewai/utilities/converter.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/crewai/utilities/converter.py b/src/crewai/utilities/converter.py index f63a53d95..991185f4a 100644 --- a/src/crewai/utilities/converter.py +++ b/src/crewai/utilities/converter.py @@ -216,7 +216,6 @@ def convert_with_instructions( def get_conversion_instructions(model: Type[BaseModel], llm: Any) -> str: instructions = "Please convert the following text into valid JSON." - print("Using function calling: ", llm.supports_function_calling()) if llm.supports_function_calling(): model_schema = PydanticSchemaParser(model=model).get_schema() instructions += ( @@ -225,7 +224,6 @@ def get_conversion_instructions(model: Type[BaseModel], llm: Any) -> str: ) else: model_description = generate_model_description(model) - print("Model description: ", model_description) instructions += ( f"\n\nOutput ONLY the valid JSON and nothing else.\n\n" f"The JSON must follow this format exactly:\n{model_description}"