UnarineLeo commited on
Commit
0f5eea3
1 Parent(s): 0ce811e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -48,6 +48,11 @@ with col1:
48
  "Enter sentences with <mask> token(one sentence per line):",
49
  value=st.session_state['text_input']
50
  )
 
 
 
 
 
51
 
52
  input_sentences = text_input.split("\n")
53
 
 
48
  "Enter sentences with <mask> token(one sentence per line):",
49
  value=st.session_state['text_input']
50
  )
51
+
52
+ option = st.selectbox(
53
+ "How would you like to be contacted?",
54
+ ("Email", "Home phone", "Mobile phone"),
55
+ )
56
 
57
  input_sentences = text_input.split("\n")
58