Skip to content

Commit

Permalink
removing logs
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomdmoura committed Sep 23, 2024
1 parent 7531186 commit 9820a69
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/crewai/tools/tool_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ def _tool_calling(
) -> Union[ToolCalling, InstructorToolCalling]:
try:
if self.function_calling_llm:
print("self.function_calling_llm")
model = (
InstructorToolCalling
if self.function_calling_llm.supports_function_calling()
Expand All @@ -323,9 +322,7 @@ def _tool_calling(
),
max_attempts=1,
)
print("converter", converter)
tool_object = converter.to_pydantic()
print("tool_object", tool_object)
calling = ToolCalling(
tool_name=tool_object["tool_name"],
arguments=tool_object["arguments"],
Expand Down
6 changes: 0 additions & 6 deletions src/crewai/utilities/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ def handle_partial_json(
converter_cls: Optional[Type[Converter]] = None,
) -> Union[dict, BaseModel, str]:
match = re.search(r"({.*})", result, re.DOTALL)
print("handle_partial_json")
if match:
try:
exported_result = model.model_validate_json(match.group(0))
Expand Down Expand Up @@ -161,11 +160,8 @@ def convert_with_instructions(
agent: Any,
converter_cls: Optional[Type[Converter]] = None,
) -> Union[dict, BaseModel, str]:
print("convert_with_instructions")
llm = agent.function_calling_llm or agent.llm
print("llm", llm)
instructions = get_conversion_instructions(model, llm)
print("instructions", instructions)
converter = create_converter(
agent=agent,
converter_cls=converter_cls,
Expand All @@ -174,11 +170,9 @@ def convert_with_instructions(
model=model,
instructions=instructions,
)
print("converter", converter)
exported_result = (
converter.to_pydantic() if not is_json_output else converter.to_json()
)
print("exported_result", exported_result)

if isinstance(exported_result, ConverterError):
Printer().print(
Expand Down

0 comments on commit 9820a69

Please sign in to comment.