Spaces:
Sleeping
Sleeping
Update tools/extract_market_data.py
Browse files
tools/extract_market_data.py
CHANGED
|
@@ -7,8 +7,10 @@ class ExtractMarketDataTool(Tool):
|
|
| 7 |
name = "extract_market_data"
|
| 8 |
description = ("Extracts market data (via `yfinance` or Yahoo! Finance) and "
|
| 9 |
"returns the information about a stock such as the stock's info, "
|
| 10 |
-
"
|
| 11 |
-
"
|
|
|
|
|
|
|
| 12 |
inputs = {'stock': {'type': 'string', 'description': 'The market/stock code that the User wants to inspect.'}}
|
| 13 |
output_type = "string"
|
| 14 |
|
|
|
|
| 7 |
name = "extract_market_data"
|
| 8 |
description = ("Extracts market data (via `yfinance` or Yahoo! Finance) and "
|
| 9 |
"returns the information about a stock such as the stock's info, "
|
| 10 |
+
"address, city-state-zip-country, phone, website, industry, sector, "
|
| 11 |
+
"calendar data such as dividend rate, highs, lows, average, revenue, etc. "
|
| 12 |
+
"Use this when someone asks information about a market stock. "
|
| 13 |
+
"Ensure that a digestible or summarized version is output.")
|
| 14 |
inputs = {'stock': {'type': 'string', 'description': 'The market/stock code that the User wants to inspect.'}}
|
| 15 |
output_type = "string"
|
| 16 |
|