├── .env.template ├── .gitignore ├── .local └── share │ └── virtualenv │ └── py_info │ └── 1 │ ├── 2b4d5ee5827671bb5966e5e08dbffcc3f477216af44c5685fc0cb6dafc43c62d.json │ └── 2b4d5ee5827671bb5966e5e08dbffcc3f477216af44c5685fc0cb6dafc43c62d.lock ├── .replit ├── CODE_OF_CONDUCT.md ├── License.md ├── README.md ├── Reports └── amd_nvda.md ├── comparison_crew.py ├── images ├── stock-ai-explainer-diagram.png └── stock-explainer ├── logs └── log-0226-13-03-2024 ├── main.py ├── poetry.lock ├── pyproject.toml ├── replit.nix ├── sec_fillings ├── AMD.pdf └── nvdia.pdf └── tools ├── __init__.py ├── gmail_tools.py ├── openbb_tools.py ├── sec_tools.py └── templates ├── flowise ├── AMD Chatflow.json ├── If Chatflow.json └── nvda chat Chatflow.json └── n8n └── Nvdia_10K.json /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/.gitignore -------------------------------------------------------------------------------- /.local/share/virtualenv/py_info/1/2b4d5ee5827671bb5966e5e08dbffcc3f477216af44c5685fc0cb6dafc43c62d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/.local/share/virtualenv/py_info/1/2b4d5ee5827671bb5966e5e08dbffcc3f477216af44c5685fc0cb6dafc43c62d.json -------------------------------------------------------------------------------- /.local/share/virtualenv/py_info/1/2b4d5ee5827671bb5966e5e08dbffcc3f477216af44c5685fc0cb6dafc43c62d.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/.replit -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/README.md -------------------------------------------------------------------------------- /Reports/amd_nvda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/Reports/amd_nvda.md -------------------------------------------------------------------------------- /comparison_crew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/comparison_crew.py -------------------------------------------------------------------------------- /images/stock-ai-explainer-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/images/stock-ai-explainer-diagram.png -------------------------------------------------------------------------------- /images/stock-explainer: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /logs/log-0226-13-03-2024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/logs/log-0226-13-03-2024 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/pyproject.toml -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/replit.nix -------------------------------------------------------------------------------- /sec_fillings/AMD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/sec_fillings/AMD.pdf -------------------------------------------------------------------------------- /sec_fillings/nvdia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/sec_fillings/nvdia.pdf -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gmail_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/gmail_tools.py -------------------------------------------------------------------------------- /tools/openbb_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/openbb_tools.py -------------------------------------------------------------------------------- /tools/sec_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/sec_tools.py -------------------------------------------------------------------------------- /tools/templates/flowise/AMD Chatflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/templates/flowise/AMD Chatflow.json -------------------------------------------------------------------------------- /tools/templates/flowise/If Chatflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/templates/flowise/If Chatflow.json -------------------------------------------------------------------------------- /tools/templates/flowise/nvda chat Chatflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/templates/flowise/nvda chat Chatflow.json -------------------------------------------------------------------------------- /tools/templates/n8n/Nvdia_10K.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekcheungsa/ai-automation-finance/HEAD/tools/templates/n8n/Nvdia_10K.json --------------------------------------------------------------------------------