update app.py
#117
by
rachitgarg77
- opened
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
|
2 |
import datetime
|
3 |
import requests
|
4 |
import pytz
|
@@ -33,7 +33,17 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
33 |
except Exception as e:
|
34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
|
|
37 |
final_answer = FinalAnswerTool()
|
38 |
|
39 |
# If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
|
|
|
1 |
+
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool,duckduckgo_search
|
2 |
import datetime
|
3 |
import requests
|
4 |
import pytz
|
|
|
33 |
except Exception as e:
|
34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
35 |
|
36 |
+
@tool
|
37 |
+
def DuckDuckGoSearchTool(search: str,num_results: int =5)-> str:
|
38 |
+
""" A tool that get the search keyword .
|
39 |
+
Args:
|
40 |
+
search: A string representing the search.
|
41 |
+
"""
|
42 |
+
results = duckduckgo_search(search,max_results=num_results)
|
43 |
+
return results
|
44 |
+
|
45 |
|
46 |
+
|
47 |
final_answer = FinalAnswerTool()
|
48 |
|
49 |
# If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:
|