Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,7 @@ st.divider()
|
|
73 |
def clear_text():
|
74 |
st.session_state["text"] = ""
|
75 |
|
76 |
-
text = st.
|
77 |
st.button("Clear text", on_click=clear_text)
|
78 |
st.write(text)
|
79 |
|
|
|
73 |
def clear_text():
|
74 |
st.session_state["text"] = ""
|
75 |
|
76 |
+
text = st.text_area("Paste your text here and then press **enter**. The length of your text should not exceed 2000 words.", key="text")
|
77 |
st.button("Clear text", on_click=clear_text)
|
78 |
st.write(text)
|
79 |
|