Update tools.py
Browse files
tools.py
CHANGED
|
@@ -41,7 +41,7 @@ def subtract(a: int, b: int) -> int:
|
|
| 41 |
return a - b
|
| 42 |
|
| 43 |
@tool(parse_docstring=True)
|
| 44 |
-
def divide(a: int, b: int) ->
|
| 45 |
"""Divide two numbers.
|
| 46 |
|
| 47 |
Args:
|
|
|
|
| 41 |
return a - b
|
| 42 |
|
| 43 |
@tool(parse_docstring=True)
|
| 44 |
+
def divide(a: int, b: int) -> float:
|
| 45 |
"""Divide two numbers.
|
| 46 |
|
| 47 |
Args:
|