Adhere is an AI-powered medication adherence assistant that uses computer vision to help patients stay on schedule and personalize their healthcare journey.
Poor medication adherence leads to over $500 billion in healthcare costs in the United States alone. Currently, there's no effective way for real-time monitoring and intervention to improve adherence rates.
Adhere is an AI assistant application that leverages computer vision technology to:
- Help patients stay on their medication schedule
- Personalize patient journeys
- Provide real-time monitoring and intervention
- Computer vision-based medication recognition
- Personalized medication reminders
- Real-time adherence tracking
- AI-powered intervention suggestions
- User-friendly mobile application interface
This project was developed during the AI + Global Health Hack event in September 2024. It is currently in prototype stage.
- Node.js (v14 or later)
- Python (v3.8 or later)
- pip
- npm or yarn
-
Clone the repository:
git clone https://github.com/your-username/adhere.git cd adhere/backend
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Start the FastAPI server:
uvicorn main:app --reload
The backend should now be running on http://localhost:8000
.
-
Navigate to the frontend directory:
cd ../frontend
-
Install dependencies:
npm install # or, if using yarn: # yarn install
-
Start the React development server:
npm start # or, if using yarn: # yarn start
The frontend should now be running on http://localhost:3000
.