Update app.py
Browse files
app.py
CHANGED
@@ -11,18 +11,19 @@ from Gradio_UI import GradioUI
|
|
11 |
@tool
|
12 |
def my_cutom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
14 |
-
"""
|
|
|
15 |
Args:
|
16 |
-
|
17 |
-
|
18 |
"""
|
19 |
-
return "
|
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.
|
24 |
Args:
|
25 |
-
timezone: A string representing a valid timezone (e.g., 'America/
|
26 |
"""
|
27 |
try:
|
28 |
# Create timezone object
|
@@ -51,7 +52,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
51 |
|
52 |
agent = CodeAgent(
|
53 |
model=model,
|
54 |
-
tools=[
|
55 |
max_steps=6,
|
56 |
verbosity_level=1,
|
57 |
grammar=None,
|
|
|
11 |
@tool
|
12 |
def my_cutom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
|
13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
14 |
+
"""Get movies and availability to purchase tickets in Nashville TN
|
15 |
+
|
16 |
Args:
|
17 |
+
title: the movie title in the cinema
|
18 |
+
time: the time available to purchase tickets
|
19 |
"""
|
20 |
+
return "The title and the time of all movies located in nashville TN"
|
21 |
|
22 |
@tool
|
23 |
def get_current_time_in_timezone(timezone: str) -> str:
|
24 |
"""A tool that fetches the current local time in a specified timezone.
|
25 |
Args:
|
26 |
+
timezone: A string representing a valid timezone (e.g., 'America/Chicago').
|
27 |
"""
|
28 |
try:
|
29 |
# Create timezone object
|
|
|
52 |
|
53 |
agent = CodeAgent(
|
54 |
model=model,
|
55 |
+
tools=[DuckDuckGoSearchTool], ## add your tools here (don't remove final answer)
|
56 |
max_steps=6,
|
57 |
verbosity_level=1,
|
58 |
grammar=None,
|