Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ st.divider()
|
|
60 |
def clear_text():
|
61 |
st.session_state["text"] = ""
|
62 |
|
63 |
-
text = st.text_area("Paste your text here and then press **Ctrl +
|
64 |
st.button("Clear text", on_click=clear_text)
|
65 |
st.write(text)
|
66 |
|
|
|
60 |
def clear_text():
|
61 |
st.session_state["text"] = ""
|
62 |
|
63 |
+
text = st.text_area("Paste your text here and then press **Ctrl + Enter**. The length of your text should not exceed 1000 words.", key="text")
|
64 |
st.button("Clear text", on_click=clear_text)
|
65 |
st.write(text)
|
66 |
|