Spaces:
Sleeping
Sleeping
Fix syntax error
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def my_cutom_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 fetch_binance_price(symbol: str = "BTCUSDT") -> str
|
23 |
"""Get price for a token from binance exchange
|
24 |
Args:
|
25 |
symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
|
|
|
19 |
return "What magic will you build ?"
|
20 |
|
21 |
@tool
|
22 |
+
def fetch_binance_price(symbol: str = "BTCUSDT") -> str:
|
23 |
"""Get price for a token from binance exchange
|
24 |
Args:
|
25 |
symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
|