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.
Porblem statement domain: Healthcare
Subdomain: HEL-4
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/RiteshYennuwar/Virtual_HealthCare_Assistant.git cd Virtual_HealthCare_Assistant
- 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/.