Update app.py
Browse files
app.py
CHANGED
|
@@ -13,8 +13,8 @@ def get_message_repeater(message:str, times:int)-> str: #it's import to specify
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that prints message mulitple times
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
-
|
| 18 |
|
| 19 |
Returns:
|
| 20 |
str: The repeated message.
|
|
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that prints message mulitple times
|
| 15 |
Args:
|
| 16 |
+
message (str): The message to repeat.
|
| 17 |
+
times (int): How many times to repeat the message.
|
| 18 |
|
| 19 |
Returns:
|
| 20 |
str: The repeated message.
|