Spaces:
Sleeping
Sleeping
Commit
·
90dab6e
1
Parent(s):
37967c6
Upload 2 files
Browse files- app.py +59 -0
- requirements.txt +5 -0
app.py
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from streamlit_chat import message
|
3 |
+
import requests
|
4 |
+
st.set_page_config(layout="wide")
|
5 |
+
|
6 |
+
API_URL = "https://virtual-medical-api.greensea-b20be511.northeurope.azurecontainerapps.io/api"
|
7 |
+
headers = {"Content-Type": "application/json"}
|
8 |
+
|
9 |
+
def query(payload):
|
10 |
+
response = requests.post(API_URL, headers=headers, json=payload)
|
11 |
+
return response.json()
|
12 |
+
|
13 |
+
def generate_response(user,prompt):
|
14 |
+
|
15 |
+
output = query({"id":user, "messages":[{"role":user, "content": prompt}]})
|
16 |
+
return output
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
#Creating the chatbot interface
|
21 |
+
st.title("AI Clinical Expert")
|
22 |
+
st.caption("AI Clinical Expert that asks questions and makes clinical diagnoses is a powerful tool that combines natural language understanding, medical knowledge, and machine learning to assist healthcare professionals in providing accurate and efficient diagnoses and treatment recommendations for patients. It streamlines the diagnostic process, enhances clinical decision-making, and improves patient outcomes while maintaining a strong emphasis on data privacy and collaboration with human experts.")
|
23 |
+
col1, col2 = st.columns(2)
|
24 |
+
# Storing the chat
|
25 |
+
|
26 |
+
|
27 |
+
if 'generated' not in st.session_state:
|
28 |
+
st.session_state['generated'] = []
|
29 |
+
|
30 |
+
if 'past' not in st.session_state:
|
31 |
+
st.session_state['past'] = []
|
32 |
+
|
33 |
+
with col1:
|
34 |
+
with st.form(key='my_form'):
|
35 |
+
|
36 |
+
User = st.text_input("What's your name?","", key="user")
|
37 |
+
input_text = st.text_input("Tell us how you're feeling","", key="input")
|
38 |
+
submit_button = st.form_submit_button(label='Submit')
|
39 |
+
|
40 |
+
|
41 |
+
|
42 |
+
if submit_button:
|
43 |
+
output = generate_response(User,input_text)
|
44 |
+
# store the output
|
45 |
+
st.session_state.past.append(input_text)
|
46 |
+
st.session_state.generated.append(output['res'])
|
47 |
+
# Layout the columns
|
48 |
+
|
49 |
+
button = st.button("Completed", key=None, help="Use this button when you have finished describing your symptoms", on_click=None, args=None)
|
50 |
+
|
51 |
+
|
52 |
+
if st.session_state['generated']:
|
53 |
+
|
54 |
+
for i in range(len(st.session_state['generated'])-1, -1, -1):
|
55 |
+
with col2:
|
56 |
+
|
57 |
+
message(st.session_state["generated"][i], key=str(i),avatar_style="identicon",seed="Socks")
|
58 |
+
message(st.session_state['past'][i], is_user=True, key=str(i) + '_user',avatar_style="identicon",seed="Mittens")
|
59 |
+
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
requests
|
2 |
+
streamlit-chat
|
3 |
+
streamlit
|
4 |
+
pandas
|
5 |
+
plotly
|