carisackc commited on
Commit
f2ef1d4
·
1 Parent(s): 93b90c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -4
app.py CHANGED
@@ -106,19 +106,28 @@ with col1:
106
  # st.button('Admission')
107
  st.button("🏥 Admission")
108
  #nav_page('Admission')
109
- runtext =st.text_area('Input Admission note here:', str(original_text2), height=300)
110
  with col2:
111
  if st.button('📆Daily Narrative'):
112
  #nav_page('Daily Narrative')
113
- runtext =st.text_area('Input Daily Narrative here:', str(original_text2), height=300)
114
  with col3:
115
  if st.button('Discharge Plan'):
116
  #nav_page('Discharge Plan')
117
- runtext =st.text_area('Input Discharge Plan here:', str(original_text2), height=300)
118
  with col4:
119
  if st.button('📝Social Notes'):
120
  #nav_page('Social Notes')
121
- runtext =st.text_area('Input Social Note here:', str(original_text2), height=300)
 
 
 
 
 
 
 
 
 
122
 
123
  def run_model(input_text):
124
 
 
106
  # st.button('Admission')
107
  st.button("🏥 Admission")
108
  #nav_page('Admission')
109
+
110
  with col2:
111
  if st.button('📆Daily Narrative'):
112
  #nav_page('Daily Narrative')
113
+
114
  with col3:
115
  if st.button('Discharge Plan'):
116
  #nav_page('Discharge Plan')
117
+
118
  with col4:
119
  if st.button('📝Social Notes'):
120
  #nav_page('Social Notes')
121
+
122
+
123
+ if st.button("🏥 Admission"):
124
+ runtext =st.text_area('Input Admission note here:', str(original_text2), height=300)
125
+ if st.button("📆Daily Narrative"):
126
+ runtext =st.text_area('Input Daily Narrative here:', str(original_text2), height=300)
127
+ if st.button("Discharge Plan"):
128
+ runtext =st.text_area('Input Discharge Plan here:', str(original_text2), height=300)
129
+ if st.button("📝Social Notes"):
130
+ runtext =st.text_area('Input Social Note here:', str(original_text2), height=300)
131
 
132
  def run_model(input_text):
133