Spaces:
Sleeping
Sleeping
Commit
·
22b2ce7
1
Parent(s):
173a28f
Update app.py
Browse files
app.py
CHANGED
@@ -60,13 +60,13 @@ if 'show_dataset_description' not in st.session_state:
|
|
60 |
st.image("./A8title.png")
|
61 |
st.title('Explore the best stack for your GenAI App')
|
62 |
|
63 |
-
description = st.text_area("Describe your application:")
|
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 |
-
dataset_description = st.text_area("Describe your dataset:")
|
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('Explore the best stack for your GenAI App')
|
62 |
|
63 |
+
description = st.text_area("Describe what will your application do:")
|
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 |
+
dataset_description = st.text_area("Describe your dataset for fine-tuning your model:")
|
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)
|