Spaces:
Sleeping
Sleeping
Wilame Lima
commited on
Commit
·
226bf18
1
Parent(s):
58d1f0a
Update app.py
Browse files
app.py
CHANGED
@@ -69,6 +69,7 @@ else:
|
|
69 |
# create a text field to input the text
|
70 |
text = ''
|
71 |
|
|
|
72 |
st.write('This assistant will help you get insights on the overall sentiment and the most common topics mentioned in patient feedbacks. To start, submit a text with patient feedbacks or a file containing the feedbacks.\nIf you are out of ideas, you can use the example text provided by clicking the button "Fill with an example".')
|
73 |
if 'use_example_text' in st.session_state and st.session_state['use_example_text'] == True:
|
74 |
text_field = st.text_area("Paste the text here", value=EXAMPLE_REVIEW)
|
|
|
69 |
# create a text field to input the text
|
70 |
text = ''
|
71 |
|
72 |
+
st.subheader("Patient feedback analysis")
|
73 |
st.write('This assistant will help you get insights on the overall sentiment and the most common topics mentioned in patient feedbacks. To start, submit a text with patient feedbacks or a file containing the feedbacks.\nIf you are out of ideas, you can use the example text provided by clicking the button "Fill with an example".')
|
74 |
if 'use_example_text' in st.session_state and st.session_state['use_example_text'] == True:
|
75 |
text_field = st.text_area("Paste the text here", value=EXAMPLE_REVIEW)
|