Youtube: https://www.youtube.com/watch?v=v3aB5pym91A
Meddy is an app designed to bridge the communication gap between patients and doctors. It primarily caters to:
- Non-English speakers
- Patients who are less technologically savvy
- Patients who do not have someone to talk about their medical issues with
These patients face the following challenges:
- Difficulty understanding medical jargon or English
- Trouble following treatment instructions
- Remembering the correct dosage and time for medication
- Getting answers for medical questions
- Hesitation in disclosing personal matters due to weak doctor-patient relationships
- Infrequent/limited access to doctors
-
Extremely Easy to Use: Given the target demographic, Meddy was made to extremely user friendly. Everything can be done via voice controls
-
Medical Q&A: Powered by Large Language Models (LLMs) trained on medical data, and with access to patient data via Gemini's large context window rather than RAG, Meddy can answer patients' medical questions,.
-
Health Insights + Recommendations: Utilizes Gemini's large context window to display meaningful correlations based on patient data, providing personalized health insights and actionable recommendations.
-
Real-time Translation: Offers speech-to-speech translation to facilitate communication between non-English speaking patients and their doctors during appointments.
-
Appointment Summary: Remembers and summarizes appointment accessed via context caching, helping patients recall important information.
-
Treatment Plan Reminders: Assists patients in following their treatment plans and medication schedules.
-
Emotional Support: Acts as a friendly companion, addressing the emotional aspects of dealing with medical issues. This is crucial, as loneliness and negative emotions can potentially worsen a patient's condition.
Meddy functions as an all-around friendly medical assistant AI, striving to help users with any health or medical concerns they may have. By accessing patients' medical records and chat history, Meddy provides personalized assistance and support.
The app's primary goal is to improve patient care by enhancing communication, providing reliable information, and offering emotional support throughout the medical journey.
ssh [email protected]
cd /home/meddy/web-frontend && git pull && npm i && npm run build
- Navigate to the frontend directory:
cd web-frontend
- Install the dependencies:
npm i
- Start the development server:
npm run dev
-
Use openssh set up your ssh credentials, get your public key.
-
Give Za (khromem) your ssh public key, so he can give you access to the VM.
-
SSH into the VM
ssh [email protected]
TIP: add an alias for this -
Copy credentials from the server to your local copy. Run these:
scp [email protected]:/home/meddy/backend/firebase/meddyai-firebase-adminsdk-sp4v9-c77c115e48.json ~/Desktop/meddy/backend/firebase
scp [email protected]:/home/meddy/backend/extra/meddyai-fedbddffaf83.json ~/Desktop/meddy/backend/extra
scp [email protected]:/home/meddy/backend/.env ~/Desktop/meddy/backend
-
Install postgres if you dont have it.
-
Install the vector extension on postgres.
-
Follow the instructions and run the SQL commands in
meddy/backend/db/schema.sql
-
cd so youre in
backend/
then runnpm install && npm run test
-
If tests are failing and you can't figure out why, contact Za (khromem)
-
Have local dev server running
-
Open index.html in /audio-test-website (DO NOT use live server for this)
-
To visualize logs run
node ./extra/logging/visualizeLogs.mjs
, then openbackend/extra/log_visualization/index.html
- android studio (for emus)
- flutter sdk
- flutter extension on vscode
- android/ios emu extension for vscode
- xcode (optional for ios)
- hardware acceleration on
- hot reload on (optional)
- sha1 key for firebase auth tests
-
to debug w/ google auth for flutter, need to add sha1 key to firebase meddymobile console
-
do this by: cd mobile, cd android, ./gradlew signingReport (gives sha1 key u can use to debug)
-
add to firebase console, then download google-services.json and add to ~/mobile/android/app/
-
Navigate to the mobile directory
cd mobile
-
Install dependencies
flutter packages get
-
Open emulated device via vscode extension / android studio gui
-
Navigate to lib
cd lib
-
Use vscode debugger gui to run app, ctrl + s in main.dart will activate hot reload
-
If hot reload doesn't work for you, navigate back to mobile dir and run flutter
cd ..
flutter run