UnarineLeo commited on
Commit
06f19b7
·
verified ·
1 Parent(s): a0f9cd0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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']