Spaces:
Sleeping
Sleeping
Add fetching trading pair price from binance
Browse files
app.py
CHANGED
@@ -18,6 +18,24 @@ def my_cutom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
18 |
"""
|
19 |
return "What magic will you build ?"
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
@tool
|
22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
23 |
"""A tool that fetches the current local time in a specified timezone.
|
@@ -35,6 +53,8 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
35 |
|
36 |
|
37 |
final_answer = FinalAnswerTool()
|
|
|
|
|
38 |
model = HfApiModel(
|
39 |
max_tokens=2096,
|
40 |
temperature=0.5,
|
@@ -51,7 +71,7 @@ with open("prompts.yaml", 'r') as stream:
|
|
51 |
|
52 |
agent = CodeAgent(
|
53 |
model=model,
|
54 |
-
tools=[final_answer, image_generation_tool,
|
55 |
max_steps=6,
|
56 |
verbosity_level=1,
|
57 |
grammar=None,
|
|
|
18 |
"""
|
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')
|
26 |
+
"""
|
27 |
+
|
28 |
+
url = f"https://api.binance.com/api/v3/ticker/price?symbol={symbol.upper()}"
|
29 |
+
|
30 |
+
try:
|
31 |
+
response = requests.get(url)
|
32 |
+
response.raise_for_status() # Raise exception for 4XX/5XX status codes
|
33 |
+
data = response.json()
|
34 |
+
return f'The price for {data[symbol]} is {[data[price]}'
|
35 |
+
except requests.RequestException as e:
|
36 |
+
print(f"Error fetching data: {e}")
|
37 |
+
raise
|
38 |
+
|
39 |
@tool
|
40 |
def get_current_time_in_timezone(timezone: str) -> str:
|
41 |
"""A tool that fetches the current local time in a specified timezone.
|
|
|
53 |
|
54 |
|
55 |
final_answer = FinalAnswerTool()
|
56 |
+
duck_search = DuckDuckGoSearchTool()
|
57 |
+
|
58 |
model = HfApiModel(
|
59 |
max_tokens=2096,
|
60 |
temperature=0.5,
|
|
|
71 |
|
72 |
agent = CodeAgent(
|
73 |
model=model,
|
74 |
+
tools=[final_answer, image_generation_tool, duck_search, get_current_time_in_timezone, fetch_binance_price], ## add your tools here (don't remove final answer)
|
75 |
max_steps=6,
|
76 |
verbosity_level=1,
|
77 |
grammar=None,
|