Update app.py
Browse files
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 |
|