Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -259,6 +259,7 @@ user_selection = st.selectbox("Select an example review", options=dropdown_optio
|
|
259 |
selected_key = user_selection.split(" (")[0] # Remove the label part
|
260 |
selected_review = example_reviews[selected_key]
|
261 |
lower_case_review = selected_review.lower()
|
|
|
262 |
|
263 |
# Process the text when the button is clicked
|
264 |
if st.button("Process Review"):
|
|
|
259 |
selected_key = user_selection.split(" (")[0] # Remove the label part
|
260 |
selected_review = example_reviews[selected_key]
|
261 |
lower_case_review = selected_review.lower()
|
262 |
+
st.write("Lower case:", lower_case_review)
|
263 |
|
264 |
# Process the text when the button is clicked
|
265 |
if st.button("Process Review"):
|