Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

yahoo finance key word addition to read me file for better search experience in llamahub #897

Merged
merged 2 commits into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llama_hub/llama_packs/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
"StockMarketDataQueryEnginePack": {
"id": "llama_packs/stock_market_data_query_engine",
"author": "anoopshrma",
"keywords": ["stock", "market", "data", "query", "engine"]
"keywords": ["stock", "market","yahoo","finance","yahoo finance", "data", "query", "engine"]
},
"VannaPack": {
"id": "llama_packs/vanna",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stock Market Data Query Engine Pack
# Stock Market Data Query Engine Pack (Yahoo Finance Query Engine)

Query and retrieve historical market data for a list of stock tickers. It utilizes [yfinance](https://pypi.org/project/yfinance/) to fetch historical stock prices.
Query and retrieve historical market data for a list of stock tickers. It utilizes Yahoo Finance ([yfinance](https://pypi.org/project/yfinance/) ) to fetch historical stock prices.

## CLI Usage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


class StockMarketDataQueryEnginePack(BaseLlamaPack):
"""Historical stock market data query engine pack."""
"""Historical stock market data query engine pack based on yahoo finance."""

def __init__(
self,
Expand Down
Loading