Spaces:
Sleeping
Sleeping
Commit
·
e41414b
1
Parent(s):
de3b55f
Update app.py
Browse files
app.py
CHANGED
@@ -60,13 +60,15 @@ if 'show_dataset_description' not in st.session_state:
|
|
60 |
st.image("./A8title.png")
|
61 |
st.title('Discover the best model for your GenAI App')
|
62 |
|
63 |
-
|
|
|
64 |
|
65 |
if st.button("Next", key="next_to_dataset"):
|
66 |
st.session_state.show_dataset_description = True
|
67 |
|
68 |
if st.session_state.show_dataset_description:
|
69 |
-
|
|
|
70 |
if dataset_description:
|
71 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
72 |
recommended_model = recommend_ai_model_via_gpt(description, dataset_description)
|
|
|
60 |
st.image("./A8title.png")
|
61 |
st.title('Discover the best model for your GenAI App')
|
62 |
|
63 |
+
st.markdown("<h4 style='font-size:20px;'>Describe what will your application do:</h4>", unsafe_allow_html=True)
|
64 |
+
description = st.text_area("", key="app_description")
|
65 |
|
66 |
if st.button("Next", key="next_to_dataset"):
|
67 |
st.session_state.show_dataset_description = True
|
68 |
|
69 |
if st.session_state.show_dataset_description:
|
70 |
+
st.markdown("<h4 style='font-size:20px;'>Describe your dataset for fine-tuning your model:</h4>", unsafe_allow_html=True)
|
71 |
+
dataset_description = st.text_area("", key="dataset_description")
|
72 |
if dataset_description:
|
73 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
74 |
recommended_model = recommend_ai_model_via_gpt(description, dataset_description)
|