diff --git a/src/cai/tools/web/google_search.py b/src/cai/tools/web/google_search.py index 26fd6be2..ebf9c150 100644 --- a/src/cai/tools/web/google_search.py +++ b/src/cai/tools/web/google_search.py @@ -12,7 +12,6 @@ from dotenv import load_dotenv from cai.sdk.agents import function_tool -@function_tool def google_search(query: str, num_results: int = 10) -> str: """ Perform a regular Google search and return a formatted string with results. @@ -36,7 +35,6 @@ def google_search(query: str, num_results: int = 10) -> str: return formatted_results -@function_tool def google_dork_search(dork_query: str, num_results: int = 100) -> str: """ Perform a Google dork search and return a formatted string with URLs.