Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ st.write("# Inicio")
|
|
50 |
user_input = st.text_input('Pega tu texto:', '', key="user_input")
|
51 |
|
52 |
# Create a button to submit the input
|
53 |
-
if st.button("
|
54 |
processed_output = process_text(user_input)
|
55 |
st.write('Texto procesado:', processed_output)
|
56 |
clear_input() # Clear the input field after processing
|
|
|
50 |
user_input = st.text_input('Pega tu texto:', '', key="user_input")
|
51 |
|
52 |
# Create a button to submit the input
|
53 |
+
if st.button("Enviar"):
|
54 |
processed_output = process_text(user_input)
|
55 |
st.write('Texto procesado:', processed_output)
|
56 |
clear_input() # Clear the input field after processing
|