Spaces:
Sleeping
Sleeping
add args to random function
Browse files
app.py
CHANGED
@@ -11,6 +11,8 @@ from Gradio_UI import GradioUI
|
|
11 |
@tool
|
12 |
def get_random_animal(local_time: str)-> str:
|
13 |
"""A tool that selects a random animal name based on the time in Budapest.
|
|
|
|
|
14 |
"""
|
15 |
|
16 |
return "Dog"
|
|
|
11 |
@tool
|
12 |
def get_random_animal(local_time: str)-> str:
|
13 |
"""A tool that selects a random animal name based on the time in Budapest.
|
14 |
+
Args:
|
15 |
+
local_time: A string of the current time in Budapest.
|
16 |
"""
|
17 |
|
18 |
return "Dog"
|