Skip to content

Commit

Permalink
Update _function_utils.py (#575)
Browse files Browse the repository at this point in the history
Removed forgotten "print" statement.
  • Loading branch information
RomanMazyrin authored Oct 29, 2024
1 parent c0d24b5 commit 431409a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion libs/genai/langchain_google_genai/_function_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ def _dict_to_gapic_schema(schema: Dict[str, Any]) -> Optional[gapic.Schema]:
def _format_dict_to_function_declaration(
tool: Union[FunctionDescription, Dict[str, Any]],
) -> gapic.FunctionDeclaration:
print(tool)
return gapic.FunctionDeclaration(
name=tool.get("name") or tool.get("title"),
description=tool.get("description"),
Expand Down

0 comments on commit 431409a

Please sign in to comment.