sec-rag-platform / src /secrag /corpus.py
adwitiyashukla's picture
deploy space
483b7d0
Raw
History Blame Contribute Delete
327 Bytes
from __future__ import annotations
CORPUS_TICKERS: tuple[str, ...] = ("AAPL", "MSFT", "NVDA", "JPM", "WMT")
CORPUS_YEARS: int = 2
COMPANY_NAMES: dict[str, str] = {
"AAPL": "Apple Inc.",
"MSFT": "Microsoft Corporation",
"NVDA": "NVIDIA Corporation",
"JPM": "JPMorgan Chase & Co.",
"WMT": "Walmart Inc.",
}