This repository contains the code to run an AI-powered assistant to provide medical advice, answer patient queries, and triage symptoms, enhancing patient engagement and care called Dr Shaun Murphy, This AI is inspired from "the good doctor".
The project focuses providing patients with medical advice, answer patient queries, and triage symptoms, enhancing patient engagement with care using a virtual assistant.
The project is structured as follows:
virtual_doc.py: Application to run the virtual assistant.Dockerfile: Docker configuration for containerizing the application.requirements.txt: File containing the necessary dependencies to run the project.
To get started with the project, follow these steps:
- Clone this repository to your local machine.
git clone https://github.com/BAntu10/AiHealth.git cd AiHealth - Install the required dependencies using
pip install -r requirements.txt
- Application: To start the application and use the virtual assistant execute the following command:
streamlit run virtual_doc.py
After running the command, navigate to http://localhost:8501/ in your web browser to access the application.
To containerize the application and run it using Docker, follow these steps:
- Build the Docker image:
docker build -t virtual_doc-app . - Run the Docker container:
docker run -p 8051:8051 virtual_doc-app
- Access the web interface at http://localhost:8501/.