nlpblogs commited on
Commit
7299919
·
verified ·
1 Parent(s): 55212b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -73,7 +73,7 @@ st.divider()
73
  def clear_text():
74
  st.session_state["text"] = ""
75
 
76
- text = st.text_input("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
 
 
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