├── .devcontainer └── devcontainer.json ├── .gitignore ├── FinancialAssistant ├── .gitignore ├── .idea │ ├── .gitignore │ ├── FinancialAssistant.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── .vscode │ └── launch.json ├── Pipfile ├── Pipfile.lock ├── README.MD ├── docs │ ├── changes │ │ ├── Thinking-out-loud.txt │ │ ├── config-loader │ │ │ ├── config_loader_plan.md │ │ │ └── config_loader_progress.md │ │ ├── cross-thread-memory │ │ │ ├── cross-thread-memory-plan.md │ │ │ └── cross-thread-memory-progress.md │ │ └── pytest_migration.md │ ├── flow-explanation.md │ ├── prd.md │ └── rules │ │ └── python.md ├── financial_asstant_graph.png ├── langgraph.json ├── notebook │ ├── langgraph_financial_assistant.ipynb │ └── langgraph_financial_assistant.py ├── pyproject.toml ├── streamlit_app │ ├── .gitignore │ ├── .streamlit │ │ └── config.toml │ ├── __init__.py │ ├── app.py │ ├── chains │ │ ├── __init__.py │ │ ├── chat_chain.py │ │ ├── extraction_chain.py │ │ ├── route_chain.py │ │ └── summarization_chain.py │ ├── classes │ │ ├── __init__.py │ │ ├── company_financials.py │ │ ├── config.py │ │ ├── income_statement.py │ │ └── stock_price.py │ ├── consts │ │ ├── __init__.py │ │ └── consts.py │ ├── financial_asstant_graph.png │ ├── graph │ │ ├── __init__.py │ │ ├── nodes │ │ │ ├── __init__.py │ │ │ ├── chat_node.py │ │ │ ├── extraction_node.py │ │ │ ├── financial_data_nodes.py │ │ │ ├── report_node.py │ │ │ ├── router_node.py │ │ │ ├── summarization_node.py │ │ │ └── utility_nodes.py │ │ ├── state │ │ │ ├── __init__.py │ │ │ ├── graph_state.py │ │ │ └── internal_state.py │ │ └── work_flow.py │ ├── methods │ │ ├── __init__.py │ │ ├── generate_methods.py │ │ ├── memory_manager.py │ │ └── util.py │ ├── requirements.txt │ ├── streamlit_test.py │ ├── test_imports.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_memory_manager.py │ │ ├── test_summarization_chain.py │ │ ├── test_summarization_node.py │ │ ├── test_updated_nodes.py │ │ └── test_workflow_integration.py │ └── utils │ │ └── config_loader.py └── uv.lock ├── FinancialChatbot ├── Instructions.MD └── Pipfile ├── FinancialReport ├── .vscode │ └── launch.json ├── Pipfile ├── Pipfile.lock ├── README.MD ├── financial_data_report_graph.png ├── notebook │ └── langgraph.ipynb └── streamlit_app │ ├── app.py │ ├── chain │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── extraction_chain.cpython-311.pyc │ └── extraction_chain.py │ ├── classes │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── company_financials.cpython-311.pyc │ │ ├── config.cpython-311.pyc │ │ ├── income_statement.cpython-311.pyc │ │ └── stock_price.cpython-311.pyc │ ├── company_financials.py │ ├── config.py │ ├── income_statement.py │ └── stock_price.py │ ├── graph │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── graph_state.cpython-311.pyc │ │ ├── nodes.cpython-311.pyc │ │ └── work_flow.cpython-311.pyc │ ├── graph_state.py │ ├── nodes.py │ └── work_flow.py │ ├── instructions │ └── instructions.md │ ├── methods │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── consts.cpython-311.pyc │ │ ├── generate_report.cpython-311.pyc │ │ └── util.cpython-311.pyc │ ├── consts.py │ ├── generate_report.py │ └── util.py │ ├── requirements.txt │ ├── streamlit_test.py │ └── test_imports.py ├── README.md ├── pyproject.toml └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | TestLangraphCli/ 2 | -------------------------------------------------------------------------------- /FinancialAssistant/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | documentation/ 3 | **/__pycache__/ 4 | .langgraph_api/ -------------------------------------------------------------------------------- /FinancialAssistant/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /FinancialAssistant/.idea/FinancialAssistant.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/FinancialAssistant.iml -------------------------------------------------------------------------------- /FinancialAssistant/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /FinancialAssistant/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /FinancialAssistant/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/misc.xml -------------------------------------------------------------------------------- /FinancialAssistant/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/modules.xml -------------------------------------------------------------------------------- /FinancialAssistant/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.idea/vcs.xml -------------------------------------------------------------------------------- /FinancialAssistant/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/.vscode/launch.json -------------------------------------------------------------------------------- /FinancialAssistant/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/Pipfile -------------------------------------------------------------------------------- /FinancialAssistant/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/Pipfile.lock -------------------------------------------------------------------------------- /FinancialAssistant/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/README.MD -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/Thinking-out-loud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/Thinking-out-loud.txt -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/config-loader/config_loader_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/config-loader/config_loader_plan.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/config-loader/config_loader_progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/config-loader/config_loader_progress.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/cross-thread-memory/cross-thread-memory-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/cross-thread-memory/cross-thread-memory-plan.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/cross-thread-memory/cross-thread-memory-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/cross-thread-memory/cross-thread-memory-progress.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/changes/pytest_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/changes/pytest_migration.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/flow-explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/flow-explanation.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/prd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/prd.md -------------------------------------------------------------------------------- /FinancialAssistant/docs/rules/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/docs/rules/python.md -------------------------------------------------------------------------------- /FinancialAssistant/financial_asstant_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/financial_asstant_graph.png -------------------------------------------------------------------------------- /FinancialAssistant/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/langgraph.json -------------------------------------------------------------------------------- /FinancialAssistant/notebook/langgraph_financial_assistant.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/notebook/langgraph_financial_assistant.ipynb -------------------------------------------------------------------------------- /FinancialAssistant/notebook/langgraph_financial_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/notebook/langgraph_financial_assistant.py -------------------------------------------------------------------------------- /FinancialAssistant/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/pyproject.toml -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | **/__pycache__/ 3 | .langgraph_api/ -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/.streamlit/config.toml -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/app.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/chains/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/chains/chat_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/chains/chat_chain.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/chains/extraction_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/chains/extraction_chain.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/chains/route_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/chains/route_chain.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/chains/summarization_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/chains/summarization_chain.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/classes/company_financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/classes/company_financials.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/classes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/classes/config.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/classes/income_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/classes/income_statement.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/classes/stock_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/classes/stock_price.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/consts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/consts/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/consts/consts.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/financial_asstant_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/financial_asstant_graph.png -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/__init__.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/chat_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/chat_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/extraction_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/extraction_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/financial_data_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/financial_data_nodes.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/report_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/report_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/router_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/router_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/summarization_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/summarization_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/nodes/utility_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/nodes/utility_nodes.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/state/graph_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/state/graph_state.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/state/internal_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/state/internal_state.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/graph/work_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/graph/work_flow.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/methods/generate_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/methods/generate_methods.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/methods/memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/methods/memory_manager.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/methods/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/methods/util.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/requirements.txt -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/streamlit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/streamlit_test.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/test_imports.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/test_memory_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/tests/test_memory_manager.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/test_summarization_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/tests/test_summarization_chain.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/test_summarization_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/tests/test_summarization_node.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/test_updated_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/tests/test_updated_nodes.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/tests/test_workflow_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/tests/test_workflow_integration.py -------------------------------------------------------------------------------- /FinancialAssistant/streamlit_app/utils/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/streamlit_app/utils/config_loader.py -------------------------------------------------------------------------------- /FinancialAssistant/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialAssistant/uv.lock -------------------------------------------------------------------------------- /FinancialChatbot/Instructions.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialChatbot/Instructions.MD -------------------------------------------------------------------------------- /FinancialChatbot/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialChatbot/Pipfile -------------------------------------------------------------------------------- /FinancialReport/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/.vscode/launch.json -------------------------------------------------------------------------------- /FinancialReport/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/Pipfile -------------------------------------------------------------------------------- /FinancialReport/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/Pipfile.lock -------------------------------------------------------------------------------- /FinancialReport/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/README.MD -------------------------------------------------------------------------------- /FinancialReport/financial_data_report_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/financial_data_report_graph.png -------------------------------------------------------------------------------- /FinancialReport/notebook/langgraph.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/notebook/langgraph.ipynb -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/app.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/chain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/chain/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/chain/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/chain/__pycache__/extraction_chain.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/chain/__pycache__/extraction_chain.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/chain/extraction_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/chain/extraction_chain.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__pycache__/company_financials.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/__pycache__/company_financials.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__pycache__/config.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/__pycache__/config.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__pycache__/income_statement.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/__pycache__/income_statement.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/__pycache__/stock_price.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/__pycache__/stock_price.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/company_financials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/company_financials.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/config.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/income_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/income_statement.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/classes/stock_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/classes/stock_price.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/__pycache__/graph_state.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/__pycache__/graph_state.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/__pycache__/nodes.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/__pycache__/nodes.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/__pycache__/work_flow.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/__pycache__/work_flow.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/graph_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/graph_state.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/nodes.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/graph/work_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/graph/work_flow.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/instructions/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/instructions/instructions.md -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/__pycache__/consts.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/__pycache__/consts.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/__pycache__/generate_report.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/__pycache__/generate_report.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/__pycache__/util.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/__pycache__/util.cpython-311.pyc -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/consts.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/generate_report.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/methods/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/methods/util.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/requirements.txt -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/streamlit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/streamlit_test.py -------------------------------------------------------------------------------- /FinancialReport/streamlit_app/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/FinancialReport/streamlit_app/test_imports.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agdev/Langgraph/HEAD/requirements.txt --------------------------------------------------------------------------------