├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ └── crew.cpython-312.pyc ├── app.py ├── crew.py ├── requirements.txt └── tools ├── __pycache__ ├── competitor_analysis_tool.cpython-312.pyc ├── risk_assessment_tool.cpython-312.pyc ├── sentiment_analysis_tool.cpython-312.pyc ├── yf_fundamental_analysis_tool.cpython-312.pyc └── yf_tech_analysis_tool.cpython-312.pyc ├── competitor_analysis_tool.py ├── risk_assessment_tool.py ├── sentiment_analysis_tool.py ├── yf_fundamental_analysis_tool.py └── yf_tech_analysis_tool.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /.venv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/crew.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/__pycache__/crew.cpython-312.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/app.py -------------------------------------------------------------------------------- /crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/crew.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/__pycache__/competitor_analysis_tool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/__pycache__/competitor_analysis_tool.cpython-312.pyc -------------------------------------------------------------------------------- /tools/__pycache__/risk_assessment_tool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/__pycache__/risk_assessment_tool.cpython-312.pyc -------------------------------------------------------------------------------- /tools/__pycache__/sentiment_analysis_tool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/__pycache__/sentiment_analysis_tool.cpython-312.pyc -------------------------------------------------------------------------------- /tools/__pycache__/yf_fundamental_analysis_tool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/__pycache__/yf_fundamental_analysis_tool.cpython-312.pyc -------------------------------------------------------------------------------- /tools/__pycache__/yf_tech_analysis_tool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/__pycache__/yf_tech_analysis_tool.cpython-312.pyc -------------------------------------------------------------------------------- /tools/competitor_analysis_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/competitor_analysis_tool.py -------------------------------------------------------------------------------- /tools/risk_assessment_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/risk_assessment_tool.py -------------------------------------------------------------------------------- /tools/sentiment_analysis_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/sentiment_analysis_tool.py -------------------------------------------------------------------------------- /tools/yf_fundamental_analysis_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/yf_fundamental_analysis_tool.py -------------------------------------------------------------------------------- /tools/yf_tech_analysis_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanoop7/Financial-Analysis--Multi-Agent-Open-Source-LLM/HEAD/tools/yf_tech_analysis_tool.py --------------------------------------------------------------------------------