Spaces:
Sleeping
Sleeping
random based on time
Browse files
app.py
CHANGED
|
@@ -7,11 +7,10 @@ from tools.final_answer import FinalAnswerTool
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
| 10 |
-
|
| 11 |
@tool
|
| 12 |
-
def get_random_animal()-> str:
|
| 13 |
-
|
| 14 |
-
"""A tool that selects a random animal name.
|
| 15 |
"""
|
| 16 |
|
| 17 |
return "Dog"
|
|
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
| 10 |
+
|
| 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"
|