bstraehle commited on
Commit
1646cbf
·
verified ·
1 Parent(s): 83a618d

Update tools/ai_tools.py

Browse files
Files changed (1) hide show
  1. 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 only, search the web to answer the question.
55
 
56
  Args:
57
- question (str): Question to answer
 
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