Skip to content

Files

ai_finance_agent_team

💲 AI Finance Agent Team with Web Access

This script demonstrates how to build a team of AI agents that work together as a financial analyst using GPT-4o in just 20 lines of Python code. The system combines web search capabilities with financial data analysis tools to provide comprehensive financial insights.

Features

  • Multi-agent system with specialized roles:
    • Web Agent for general internet research
    • Finance Agent for detailed financial analysis
    • Team Agent for coordinating between agents
  • Real-time financial data access through YFinance
  • Web search capabilities using DuckDuckGo
  • Persistent storage of agent interactions using SQLite

How to get Started?

  1. Clone the GitHub repository
git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git
cd awesome-llm-apps/ai_agent_tutorials/ai_finance_agent_team
  1. Install the required dependencies:
pip install -r requirements.txt
  1. Get your OpenAI API Key
  • Sign up for an OpenAI account (or the LLM provider of your choice) and obtain your API key.
  • Set your OpenAI API key as an environment variable:
export OPENAI_API_KEY='your-api-key-here'
  1. Run the team of AI Agents
python3 finance_agent_team.py
  1. Open your web browser and navigate to the URL provided in the console output to interact with the team of AI agents through the playground interface.