Spaces:
Runtime error
Runtime error
File size: 628 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from phi.tools import Toolkit
from phi.utils.log import logger
class GoogleTools(Toolkit):
def __init__(self):
super().__init__(name="google_tools")
self.register(self.get_result_from_google)
def get_result_from_google(self, query: str) -> str:
"""Gets the result for a query from Google.
Use this function to find an answer when not available in the knowledge base.
:param query: The query to search for.
:return: The result from Google.
"""
logger.info(f"Searching google for: {query}")
return "Sorry, this capability is not available yet."
|