Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -13,9 +13,10 @@ def my_custom_tool(prompt: str)-> str: #it's import to specify the return type
|
|
13 |
"""A tool that does helps to generate the image for the given text prompt
|
14 |
Args:
|
15 |
prompt(str): A string that describes about the image to generate
|
|
|
|
|
16 |
"""
|
17 |
-
|
18 |
-
|
19 |
@tool
|
20 |
def get_current_time_in_timezone(timezone: str) -> str:
|
21 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
13 |
"""A tool that does helps to generate the image for the given text prompt
|
14 |
Args:
|
15 |
prompt(str): A string that describes about the image to generate
|
16 |
+
Returns:
|
17 |
+
str: A URL to the generated image.
|
18 |
"""
|
19 |
+
|
|
|
20 |
@tool
|
21 |
def get_current_time_in_timezone(timezone: str) -> str:
|
22 |
"""A tool that fetches the current local time in a specified timezone.
|