This repository contains an AI-driven agent system designed to automate wellness checks, video recommendations, class enrollments, and document inquiries. The Wellness Check Agent conducts surveys, identifies red flags, and alerts human CNAs when necessary. The Video Agent helps users filter and play relevant video content, while the Classes Agent facilitates activity recommendations, enrollments, and calendar updates. The Document Inquiry Agent retrieves information from a vector database using retrieval-augmented generation (RAG) for context-aware responses. The Master Agent processes user interactions, routes requests to the appropriate agents, retrieves necessary data, and sends responses back through /agent_endpoint. Data sources include a vector database for enhanced document retrieval, MongoDB for storing health and application data, and an agent memory for session context. Future enhancements involve implementing additional agents for resource booking and order processing, integrating more data sources, and improving AI-driven recommendations.
Agent Architecture
Follow these steps to set up and start the project:
- Node.js (v14 or higher)
- Docker
-
Clone the repository:
git clone https://github.com/ikram98ai/health_agent.git cd health_agent
-
Install dependencies:
npm install
-
Create the
.env
file:cp .env.example .env
-
Install and run Qdrant using Docker:
docker pull qdrant/qdrant docker run -p 6333:6333 qdrant/qdrant
-
Start the project:
npm run start
You should now have the project running locally.