Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -35,8 +35,12 @@ if 'warnings' not in st.session_state:
|
|
35 |
with col1:
|
36 |
with st.container(border=True):
|
37 |
st.markdown("Input :clipboard:")
|
|
|
|
|
38 |
sample_sentence = "Vhana vhane vha kha ḓi bva u bebwa vha kha khombo ya u <mask> nga Listeriosis."
|
39 |
-
|
|
|
|
|
40 |
text_input = st.text_area(
|
41 |
"Enter sentences with <mask> token:",
|
42 |
value=st.session_state['text_input']
|
|
|
35 |
with col1:
|
36 |
with st.container(border=True):
|
37 |
st.markdown("Input :clipboard:")
|
38 |
+
|
39 |
+
select_options = ['Choose option', 'Enter text input', 'Upload a file(csv/txt)']
|
40 |
sample_sentence = "Vhana vhane vha kha ḓi bva u bebwa vha kha khombo ya u <mask> nga Listeriosis."
|
41 |
+
|
42 |
+
option_selected = st.selectbox(f"Select an input option:", select_options, index=0)
|
43 |
+
|
44 |
text_input = st.text_area(
|
45 |
"Enter sentences with <mask> token:",
|
46 |
value=st.session_state['text_input']
|