├── .DS_Store ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── llama_workflow_and_agents.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md └── financial_agents ├── .DS_Store ├── .idea └── .gitignore ├── OpenText-Reports-Q1-F-2024-Results.md ├── OpenText-Reports-Q1-F-2024-Results.pkl ├── OpenText-Reports-Q2-F-2024-Results.md ├── OpenText-Reports-Q2-F-2024-Results.pkl ├── OpenText-Reports-Q3-F-2024-Results.md ├── OpenText-Reports-Q3-F-2024-Results.pkl ├── OpenText-Reports-Q4-F-2024-Results.md ├── OpenText-Reports-Q4-F-2024-Results.pkl ├── annual_summary.md ├── data ├── OpenText-Reports-Q1-F-2024-Results.pdf ├── OpenText-Reports-Q2-F-2024-Results.pdf ├── OpenText-Reports-Q3-F-2024-Results.pdf └── OpenText-Reports-Q4-F-2024-Results.pdf ├── driver.py ├── requirements.txt └── workflows ├── .DS_Store ├── Q1_financial_analyser_agent.py ├── Q2_financial_analyser_agent.py ├── Q3_financial_analyser_agent.py ├── Q4_financial_analyser_agent.py ├── __init__.py ├── annual_financial_analyser_agent.py ├── core ├── __init__.py └── financial_analyser_core.py └── workflow_events.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/llama_workflow_and_agents.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/llama_workflow_and_agents.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/README.md -------------------------------------------------------------------------------- /financial_agents/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/.DS_Store -------------------------------------------------------------------------------- /financial_agents/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/.idea/.gitignore -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q1-F-2024-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/OpenText-Reports-Q1-F-2024-Results.md -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q1-F-2024-Results.pkl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q2-F-2024-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/OpenText-Reports-Q2-F-2024-Results.md -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q2-F-2024-Results.pkl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q3-F-2024-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/OpenText-Reports-Q3-F-2024-Results.md -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q3-F-2024-Results.pkl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q4-F-2024-Results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/OpenText-Reports-Q4-F-2024-Results.md -------------------------------------------------------------------------------- /financial_agents/OpenText-Reports-Q4-F-2024-Results.pkl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/annual_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/annual_summary.md -------------------------------------------------------------------------------- /financial_agents/data/OpenText-Reports-Q1-F-2024-Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/data/OpenText-Reports-Q1-F-2024-Results.pdf -------------------------------------------------------------------------------- /financial_agents/data/OpenText-Reports-Q2-F-2024-Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/data/OpenText-Reports-Q2-F-2024-Results.pdf -------------------------------------------------------------------------------- /financial_agents/data/OpenText-Reports-Q3-F-2024-Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/data/OpenText-Reports-Q3-F-2024-Results.pdf -------------------------------------------------------------------------------- /financial_agents/data/OpenText-Reports-Q4-F-2024-Results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/data/OpenText-Reports-Q4-F-2024-Results.pdf -------------------------------------------------------------------------------- /financial_agents/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/driver.py -------------------------------------------------------------------------------- /financial_agents/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/requirements.txt -------------------------------------------------------------------------------- /financial_agents/workflows/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/.DS_Store -------------------------------------------------------------------------------- /financial_agents/workflows/Q1_financial_analyser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/Q1_financial_analyser_agent.py -------------------------------------------------------------------------------- /financial_agents/workflows/Q2_financial_analyser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/Q2_financial_analyser_agent.py -------------------------------------------------------------------------------- /financial_agents/workflows/Q3_financial_analyser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/Q3_financial_analyser_agent.py -------------------------------------------------------------------------------- /financial_agents/workflows/Q4_financial_analyser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/Q4_financial_analyser_agent.py -------------------------------------------------------------------------------- /financial_agents/workflows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/workflows/annual_financial_analyser_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/annual_financial_analyser_agent.py -------------------------------------------------------------------------------- /financial_agents/workflows/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /financial_agents/workflows/core/financial_analyser_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/core/financial_analyser_core.py -------------------------------------------------------------------------------- /financial_agents/workflows/workflow_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavanjava/llama_workflow_and_agents/HEAD/financial_agents/workflows/workflow_events.py --------------------------------------------------------------------------------