Multi-agent loan processing system built with CrewAI and Google Gemini.
From the project root directory:
Windows (PowerShell)
python -m venv venvmacOS / Linux
python3 -m venv venvWindows (PowerShell)
.\venv\Scripts\activatemacOS / Linux
source venv/bin/activateYou should now see (venv) at the start of your terminal prompt.
⚠️ Always usepython -m pipto avoid path issues
python -m pip install --upgrade pip
python -m pip install -r requirements.txtCreate a .env file in the project root:
GOOGLE_API_KEY=your_google_gemini_api_key_here
⚠️ Never commit.envfiles to version control
python main.pyType your loan queries when prompted. Type exit, quit, or bye to end the conversation.
loan-agent-system/
├── .env
├── requirements.txt
├── agents/
│ └── sales_agent.py
├── tools/
└── main.py