egmaminta2 commited on
Commit
5ebabee
·
verified ·
1 Parent(s): 3786354

Update tools/extract_market_data.py

Browse files
Files changed (1) hide show
  1. tools/extract_market_data.py +4 -2
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
- "analyst price targets, quarterly income, and etc. "
11
- "Use this when someone asks the current situation of a market stock.")
 
 
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