Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
|
|
|
|
|
|
|
| 2 |
import datetime
|
| 3 |
import requests
|
| 4 |
import pytz
|
|
@@ -9,14 +11,22 @@ from Gradio_UI import GradioUI
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
-
def
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
-
"""A tool that
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
-
arg2: the second argument
|
| 18 |
"""
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
@@ -33,7 +43,8 @@ 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 |
model = HfApiModel(
|
| 39 |
max_tokens=2096,
|
|
@@ -51,7 +62,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
| 51 |
|
| 52 |
agent = CodeAgent(
|
| 53 |
model=model,
|
| 54 |
-
tools=[final_answer], ## add your tools here (don't remove final answer)
|
| 55 |
max_steps=6,
|
| 56 |
verbosity_level=1,
|
| 57 |
grammar=None,
|
|
|
|
| 1 |
from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
|
| 2 |
+
from names_dataset import NameDataset
|
| 3 |
+
|
| 4 |
import datetime
|
| 5 |
import requests
|
| 6 |
import pytz
|
|
|
|
| 11 |
|
| 12 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 13 |
@tool
|
| 14 |
+
def name_information(name: str)-> str: #it's import to specify the return type
|
| 15 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 16 |
+
"""A tool that gets information about a first name top countries and gender
|
| 17 |
Args:
|
| 18 |
+
name: the first name
|
|
|
|
| 19 |
"""
|
| 20 |
+
results = nd.search(name)
|
| 21 |
+
first_name = results["first_name"]
|
| 22 |
+
first_name_top_countries =[k for k first_name["country"]]
|
| 23 |
+
if first_name["gender"]["male"] > 0.6:
|
| 24 |
+
first_name_gender = "male"
|
| 25 |
+
elif first_name["gender"]["female"] > 0.6:
|
| 26 |
+
first_name_gender = "female"
|
| 27 |
+
else:
|
| 28 |
+
first_name_gender = male
|
| 29 |
+
return f"{name} is the most common in {first_name_top_countries} and is generally a {first_name_gender} name"
|
| 30 |
|
| 31 |
@tool
|
| 32 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 43 |
except Exception as e:
|
| 44 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 45 |
|
| 46 |
+
nd = NameDataset()
|
| 47 |
+
duckduck_go_search = DuckDuckGoSearchTool()
|
| 48 |
final_answer = FinalAnswerTool()
|
| 49 |
model = HfApiModel(
|
| 50 |
max_tokens=2096,
|
|
|
|
| 62 |
|
| 63 |
agent = CodeAgent(
|
| 64 |
model=model,
|
| 65 |
+
tools=[final_answer, duckduck_go_search, name_information], ## add your tools here (don't remove final answer)
|
| 66 |
max_steps=6,
|
| 67 |
verbosity_level=1,
|
| 68 |
grammar=None,
|