Update app.py
Browse filesI added a custom tool to search news headlines using the DuckDuckGo tool
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 get_news_headlines(headline: str)-> str:
|
| 23 |
+
"""A tool that fetches the most recent headlines
|
| 24 |
+
Args:
|
| 25 |
+
headline: A string representing the latest news headlines
|
| 26 |
+
"""
|
| 27 |
+
try:
|
| 28 |
+
hl = DuckDuckGoSearchTool()
|
| 29 |
+
results = hl.run(f"{topic} news")
|
| 30 |
+
return f"The current news headlines are {results}"
|
| 31 |
+
except Exception as e:
|
| 32 |
+
return f"Error fetching news headlines"
|
| 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.
|