Spaces:
Sleeping
Sleeping
Fixed typo
Browse filesAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
app.py
CHANGED
@@ -20,12 +20,12 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
20 |
|
21 |
|
22 |
@tool
|
23 |
-
def scream(
|
24 |
"""A tool to scream when asked to.
|
25 |
Args:
|
26 |
intensity: how long to scream for.
|
27 |
"""
|
28 |
-
return "AaAaAAaAaAaAaAaaAaAaAaA" *
|
29 |
|
30 |
|
31 |
@tool
|
|
|
20 |
|
21 |
|
22 |
@tool
|
23 |
+
def scream(intensity:int)-> str:
|
24 |
"""A tool to scream when asked to.
|
25 |
Args:
|
26 |
intensity: how long to scream for.
|
27 |
"""
|
28 |
+
return "AaAaAAaAaAaAaAaaAaAaAaA" * intensity
|
29 |
|
30 |
|
31 |
@tool
|