peter2000 commited on
Commit
15e720d
1 Parent(s): 919b58f

Update apps/intro.py

Browse files
Files changed (1) hide show
  1. apps/intro.py +4 -2
apps/intro.py CHANGED
@@ -12,8 +12,10 @@ def app():
12
  cat_list = st.session_state['cat_list']
13
 
14
  with st.container():
15
- word_to_embed= st.text_input("Please enter your text here and we will embed it for you.",
16
- value="Woman",)
 
 
17
  cat= st.selectbox('Categorie', ('1', '2', '3', '4', '5'))
18
 
19
 
 
12
  cat_list = st.session_state['cat_list']
13
 
14
  with st.container():
15
+ col1, col2 = st.columns(2)
16
+ with col1:
17
+ word_to_embed= st.text_input("Please enter your text here and we will embed it for you.", value="Woman",)
18
+ with col2:
19
  cat= st.selectbox('Categorie', ('1', '2', '3', '4', '5'))
20
 
21