Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ model = LiteLLMModel(
|
|
21 |
|
22 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
23 |
@tool
|
24 |
-
def get_average_ar(beginning_ar:
|
25 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
26 |
"""A tool that takes that takes the beginning and closing accounts receivable amounts to calculate the average
|
27 |
Args:
|
|
|
21 |
|
22 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
23 |
@tool
|
24 |
+
def get_average_ar(beginning_ar:float, closing_ar:float)-> float: #it's import to specify the return type
|
25 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
26 |
"""A tool that takes that takes the beginning and closing accounts receivable amounts to calculate the average
|
27 |
Args:
|