trippyrocks commited on
Commit
aa27a4c
·
verified ·
1 Parent(s): ae7a494

Update app.py

Browse files

add DuckDuckGo search function

Files changed (1) hide show
  1. app.py +13 -0
app.py CHANGED
@@ -18,6 +18,19 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
18
  """
19
  return "What magic will you build ?"
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
23
  """A tool that fetches the current local time in a specified timezone.
 
18
  """
19
  return "What magic will you build ?"
20
 
21
+ @tool
22
+ def basic_search(q:str)-> str:
23
+ """A tool that takes in a query and returns the output from a DuckDuckGo search.
24
+ Args:
25
+ q: User query
26
+ """
27
+
28
+ try:
29
+ search_tool = DuckDuckGoSearchTool()
30
+ results = search_tool(q)
31
+ except Exception as e:
32
+ return f"Error: {str(e)}"
33
+
34
  @tool
35
  def get_current_time_in_timezone(timezone: str) -> str:
36
  """A tool that fetches the current local time in a specified timezone.