Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,14 +9,41 @@ from Gradio_UI import GradioUI
|
|
9 |
|
10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
11 |
@tool
|
12 |
-
def
|
13 |
-
|
14 |
-
"""A tool that does nothing yet
|
15 |
Args:
|
16 |
-
|
17 |
-
arg2: the second argument
|
18 |
"""
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
@tool
|
22 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
9 |
|
10 |
# Below is an example of a tool that does nothing. Amaze us with your creativity !
|
11 |
@tool
|
12 |
+
def get_stock_price(ticker: str) -> str:
|
13 |
+
"""A tool that fetches the latest stock price for a given ticker symbol from Yahoo Finance.
|
|
|
14 |
Args:
|
15 |
+
ticker: A string representing the stock ticker symbol (e.g., "AAPL" for Apple).
|
|
|
16 |
"""
|
17 |
+
|
18 |
+
try:
|
19 |
+
# Get the current time in EST (Eastern Time Zone)
|
20 |
+
current_time = datetime.datetime.now(datetime.timezone(datetime.timedelta(hours=-5)))
|
21 |
+
|
22 |
+
# Market open and close times (EST)
|
23 |
+
market_open = current_time.replace(hour=9, minute=30, second=0, microsecond=0)
|
24 |
+
market_close = current_time.replace(hour=16, minute=0, second=0, microsecond=0)
|
25 |
+
|
26 |
+
stock = yf.Ticker(ticker)
|
27 |
+
price = None
|
28 |
+
currency = stock.fast_info.get("currency", "USD")
|
29 |
+
|
30 |
+
# Check if the market is open
|
31 |
+
if market_open <= current_time <= market_close:
|
32 |
+
# Try to get live price
|
33 |
+
price = stock.fast_info.get("last_price")
|
34 |
+
else:
|
35 |
+
# Market is closed, use last closing price
|
36 |
+
hist = stock.history(period="1d")
|
37 |
+
if not hist.empty:
|
38 |
+
price = hist["Close"].iloc[-1] # Last closing price
|
39 |
+
|
40 |
+
if price is None:
|
41 |
+
return "Price unavailable"
|
42 |
+
|
43 |
+
return f"{currency} {price:,.2f}"
|
44 |
+
|
45 |
+
except Exception as e:
|
46 |
+
return f"Error fetching price: {e}"
|
47 |
|
48 |
@tool
|
49 |
def get_current_time_in_timezone(timezone: str) -> str:
|