Spaces:
Running
Running
Update apps/intro.py
Browse files- 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 |
-
|
16 |
-
|
|
|
|
|
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 |
|