├── .env.sample ├── .gitignore ├── Readme.md ├── app.py ├── documents ├── sec_filing_combined.txt ├── sec_filing_raw.html └── sec_filing_tables.txt ├── notebooks ├── agent_scratch.ipynb ├── chat_with_documents.ipynb ├── sankey_chart.ipynb └── y_finance_scratch.ipynb ├── requirements.txt ├── tools ├── __init__.py ├── get_actions.py ├── get_financials.py ├── get_historical_data.py ├── get_holders.py ├── get_news.py ├── get_option_chain.py ├── get_options.py ├── get_recommendations.py ├── get_shares_count.py └── get_stock_info.py └── utils ├── __init__.py ├── agent_runner.py ├── chain_setup.py └── tool_registry.py /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/Readme.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/app.py -------------------------------------------------------------------------------- /documents/sec_filing_combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/documents/sec_filing_combined.txt -------------------------------------------------------------------------------- /documents/sec_filing_raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/documents/sec_filing_raw.html -------------------------------------------------------------------------------- /documents/sec_filing_tables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/documents/sec_filing_tables.txt -------------------------------------------------------------------------------- /notebooks/agent_scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/notebooks/agent_scratch.ipynb -------------------------------------------------------------------------------- /notebooks/chat_with_documents.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/notebooks/chat_with_documents.ipynb -------------------------------------------------------------------------------- /notebooks/sankey_chart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/notebooks/sankey_chart.ipynb -------------------------------------------------------------------------------- /notebooks/y_finance_scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/notebooks/y_finance_scratch.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/__init__.py -------------------------------------------------------------------------------- /tools/get_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_actions.py -------------------------------------------------------------------------------- /tools/get_financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_financials.py -------------------------------------------------------------------------------- /tools/get_historical_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_historical_data.py -------------------------------------------------------------------------------- /tools/get_holders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_holders.py -------------------------------------------------------------------------------- /tools/get_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_news.py -------------------------------------------------------------------------------- /tools/get_option_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_option_chain.py -------------------------------------------------------------------------------- /tools/get_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_options.py -------------------------------------------------------------------------------- /tools/get_recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_recommendations.py -------------------------------------------------------------------------------- /tools/get_shares_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_shares_count.py -------------------------------------------------------------------------------- /tools/get_stock_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/tools/get_stock_info.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/utils/agent_runner.py -------------------------------------------------------------------------------- /utils/chain_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/utils/chain_setup.py -------------------------------------------------------------------------------- /utils/tool_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ojasskapre/yahoo-finance-llm-agent/HEAD/utils/tool_registry.py --------------------------------------------------------------------------------