Update tools/ai_tools.py
Browse files- tools/ai_tools.py +3 -2
tools/ai_tools.py
CHANGED
@@ -51,10 +51,11 @@ class AITools():
|
|
51 |
|
52 |
@tool("Web Browser Tool")
|
53 |
def web_browser_tool(question: str, url: str) -> str:
|
54 |
-
"""Given a question
|
55 |
|
56 |
Args:
|
57 |
-
question (str): Question
|
|
|
58 |
|
59 |
Returns:
|
60 |
str: Answer to the question
|
|
|
51 |
|
52 |
@tool("Web Browser Tool")
|
53 |
def web_browser_tool(question: str, url: str) -> str:
|
54 |
+
"""Given a question and URL, load the URL and act, extract, navigate, and observe to answer the question.
|
55 |
|
56 |
Args:
|
57 |
+
question (str): Question about a URL
|
58 |
+
url (str): The URL
|
59 |
|
60 |
Returns:
|
61 |
str: Answer to the question
|