Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
|
|
2 |
from transformers import pipeline
|
3 |
|
4 |
# Load the model
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
# Install PatientSeek from GitHub (only needed once)
|
4 |
+
os.system("pip install git+https://github.com/whyhow-ai/PatientSeek.git")
|
5 |
+
|
6 |
import streamlit as st
|
7 |
+
import pandas as pd
|
8 |
from transformers import pipeline
|
9 |
|
10 |
# Load the model
|