Larxel commited on
Commit
ebc2867
·
verified ·
1 Parent(s): 88ec4c9

Fixed typo

Browse files

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

Files changed (1) hide show
  1. app.py +2 -2
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(intesity:int)-> str:
24
  """A tool to scream when asked to.
25
  Args:
26
  intensity: how long to scream for.
27
  """
28
- return "AaAaAAaAaAaAaAaaAaAaAaA" * intesity
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