Update app.py
Browse files
app.py
CHANGED
|
@@ -9,14 +9,38 @@ 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 |
-
|
| 14 |
-
|
| 15 |
Args:
|
| 16 |
-
arg1:
|
| 17 |
-
arg2:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
"""
|
| 19 |
-
return
|
| 20 |
|
| 21 |
@tool
|
| 22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 9 |
|
| 10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
| 11 |
@tool
|
| 12 |
+
def multiplicator(arg1: int, arg2: int) -> int:
|
| 13 |
+
"""Multiply two integers and return the result.
|
| 14 |
+
|
| 15 |
Args:
|
| 16 |
+
arg1 (int): The first integer.
|
| 17 |
+
arg2 (int): The second integer.
|
| 18 |
+
|
| 19 |
+
Returns:
|
| 20 |
+
int: The result of arg1 * arg2.
|
| 21 |
+
"""
|
| 22 |
+
return arg1 * arg2
|
| 23 |
+
|
| 24 |
+
@tool
|
| 25 |
+
def get_current_datetime() -> str:
|
| 26 |
+
"""Returns the current date and time as a formatted string.
|
| 27 |
+
|
| 28 |
+
Returns:
|
| 29 |
+
str: The current date and time in 'YYYY-MM-DD HH:MM:SS' format.
|
| 30 |
+
"""
|
| 31 |
+
return datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
| 32 |
+
|
| 33 |
+
@tool
|
| 34 |
+
def to_uppercase(text: str) -> str:
|
| 35 |
+
"""Converts a given string to uppercase.
|
| 36 |
+
|
| 37 |
+
Args:
|
| 38 |
+
text (str): The input string.
|
| 39 |
+
|
| 40 |
+
Returns:
|
| 41 |
+
str: The string in uppercase.
|
| 42 |
"""
|
| 43 |
+
return text.upper()
|
| 44 |
|
| 45 |
@tool
|
| 46 |
def get_current_time_in_timezone(timezone: str) -> str:
|