Srj-ai commited on
Commit
d8b2e43
·
verified ·
1 Parent(s): 345f736

added type hints describe_image(path: str) -> str:

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ python_code_executor=PythonInterpreterTool()
20
 
21
 
22
  @tool
23
- def describe_image(path):
24
  """Describes the image. requires image path. return image description.
25
  Args: path of image
26
  """
 
20
 
21
 
22
  @tool
23
+ def describe_image(path: str) -> str:
24
  """Describes the image. requires image path. return image description.
25
  Args: path of image
26
  """