Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -267,9 +267,10 @@ california_entities = [
|
|
267 |
"Berkeley", "Fresno", "Glendale", "Laguna Beach", "Pasadena",
|
268 |
"Santa Cruz", "Ojai", "Malibu"
|
269 |
]
|
270 |
-
|
271 |
-
st.info(f"Please include one of the following entities in your review: {', '.join(california_entities)}")
|
272 |
user_input_review = st.text_area("Or type your own review here","")
|
|
|
|
|
273 |
|
274 |
review_to_process = user_input_review if user_input_review.strip() else selected_review
|
275 |
st.write("Selected Review: ", review_to_process)
|
|
|
267 |
"Berkeley", "Fresno", "Glendale", "Laguna Beach", "Pasadena",
|
268 |
"Santa Cruz", "Ojai", "Malibu"
|
269 |
]
|
270 |
+
|
|
|
271 |
user_input_review = st.text_area("Or type your own review here","")
|
272 |
+
# Display a message box
|
273 |
+
st.info(f"Please include one of the following entities in your review:\n {', '.join(california_entities)}")
|
274 |
|
275 |
review_to_process = user_input_review if user_input_review.strip() else selected_review
|
276 |
st.write("Selected Review: ", review_to_process)
|