alanakbik commited on
Commit
5937336
1 Parent(s): 3fc071b

Better example text

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -24,7 +24,8 @@ selected_model_id = st.selectbox("This is a check box",
24
  # Block 2: Users can input text
25
  st.subheader("Input your text here")
26
  input_text = st.text_area('Write or Paste Text Below',
27
- value="George was born in Washington.",
 
28
  height=128,
29
  max_chars=None,
30
  label_visibility="collapsed")
 
24
  # Block 2: Users can input text
25
  st.subheader("Input your text here")
26
  input_text = st.text_area('Write or Paste Text Below',
27
+ value='May visited the Eiffel Tower in Paris last May.\n\n'
28
+ 'There she saw a sign in German that read: "Dirk mag den Eiffelturm"',
29
  height=128,
30
  max_chars=None,
31
  label_visibility="collapsed")