Spaces:
Sleeping
Sleeping
Commit
Β·
40b09d0
1
Parent(s):
5fe7251
Update pages/Marketing_Campaign_Creator.py
Browse files
pages/Marketing_Campaign_Creator.py
CHANGED
@@ -143,11 +143,11 @@ st.header("β€οΈ Hey, How can I help you?")
|
|
143 |
st.sidebar.image('./marketing1.png', width=300, use_column_width=True)
|
144 |
form_input = st.text_area('Enter text π', height=100)
|
145 |
|
146 |
-
tasktype_option = st.
|
147 |
'Please select the action to be performed?',
|
148 |
-
('Write a
|
149 |
|
150 |
-
age_option= st.
|
151 |
'For which age group?',
|
152 |
('Kid', 'Adult', 'Senior Citizen'),key=2)
|
153 |
|
|
|
143 |
st.sidebar.image('./marketing1.png', width=300, use_column_width=True)
|
144 |
form_input = st.text_area('Enter text π', height=100)
|
145 |
|
146 |
+
tasktype_option = st.radio(
|
147 |
'Please select the action to be performed?',
|
148 |
+
('Write a tweet', 'Write a sales copy', 'Write a product description'),key=1)
|
149 |
|
150 |
+
age_option= st.selectbox(
|
151 |
'For which age group?',
|
152 |
('Kid', 'Adult', 'Senior Citizen'),key=2)
|
153 |
|