Spaces:
Build error
Build error
added examples
Browse files
app.py
CHANGED
@@ -56,7 +56,7 @@ if 'button_sent' not in st.session_state:
|
|
56 |
|
57 |
maxl, minl = st.columns(2)
|
58 |
|
59 |
-
context_option =
|
60 |
'Feel free to choose one of our premade contexts',
|
61 |
('Select one','Elon Musk', 'Fashion designer', 'Young entrepreneur')
|
62 |
)
|
@@ -71,7 +71,7 @@ elif context_option == 'Young entrepreneur':
|
|
71 |
context_example = examples[2]
|
72 |
|
73 |
|
74 |
-
option =
|
75 |
'Please select a model.',
|
76 |
('Base model', 'Lengthed model', 'Reverse model'))
|
77 |
|
|
|
56 |
|
57 |
maxl, minl = st.columns(2)
|
58 |
|
59 |
+
context_option = minl.selectbox(
|
60 |
'Feel free to choose one of our premade contexts',
|
61 |
('Select one','Elon Musk', 'Fashion designer', 'Young entrepreneur')
|
62 |
)
|
|
|
71 |
context_example = examples[2]
|
72 |
|
73 |
|
74 |
+
option = maxl.selectbox(
|
75 |
'Please select a model.',
|
76 |
('Base model', 'Lengthed model', 'Reverse model'))
|
77 |
|