Spaces:
Sleeping
Sleeping
Commit
·
2c32c16
1
Parent(s):
5989676
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,15 +63,16 @@ st.title('Discover the best model for your GenAI App')
|
|
| 63 |
# Inserting blank space
|
| 64 |
st.write("")
|
| 65 |
st.write("")
|
|
|
|
| 66 |
|
| 67 |
-
st.markdown("<h4 style='font-size:20px;'>
|
| 68 |
description = st.text_area("", key="app_description")
|
| 69 |
|
| 70 |
if st.button("Next", key="next_to_dataset"):
|
| 71 |
st.session_state.show_dataset_description = True
|
| 72 |
|
| 73 |
if st.session_state.show_dataset_description:
|
| 74 |
-
st.markdown("<h4 style='font-size:20px;'>
|
| 75 |
dataset_description = st.text_area("", key="dataset_description")
|
| 76 |
if dataset_description:
|
| 77 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
|
|
|
| 63 |
# Inserting blank space
|
| 64 |
st.write("")
|
| 65 |
st.write("")
|
| 66 |
+
st.write("")
|
| 67 |
|
| 68 |
+
st.markdown("<h4 style='font-size:20px;'>Detail Your Application's Functionality</h4>", unsafe_allow_html=True)
|
| 69 |
description = st.text_area("", key="app_description")
|
| 70 |
|
| 71 |
if st.button("Next", key="next_to_dataset"):
|
| 72 |
st.session_state.show_dataset_description = True
|
| 73 |
|
| 74 |
if st.session_state.show_dataset_description:
|
| 75 |
+
st.markdown("<h4 style='font-size:20px;'>Detail Your Model's Training Dataset</h4>", unsafe_allow_html=True)
|
| 76 |
dataset_description = st.text_area("", key="dataset_description")
|
| 77 |
if dataset_description:
|
| 78 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|