Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
-
def calculate_bandwidth(users, usage):
|
23 |
"""
|
24 |
Calculate the recommended internet speed based on user inputs.
|
25 |
:param users: Number of users
|
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
+
def calculate_bandwidth(users: int, usage: dict) -> float:
|
23 |
"""
|
24 |
Calculate the recommended internet speed based on user inputs.
|
25 |
:param users: Number of users
|