Spaces:
Sleeping
Sleeping
Commit ·
6f4650b
1
Parent(s): 7d303d2
Update app.py
Browse files
app.py
CHANGED
|
@@ -70,7 +70,7 @@ if 'show_dataset_description' in st.session_state and st.session_state.show_data
|
|
| 70 |
dataset_description = st.text_area("", key="dataset_description")
|
| 71 |
if dataset_description:
|
| 72 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
| 73 |
-
recommended_model = recommend_ai_model_via_gpt(description
|
| 74 |
st.subheader(f"Recommended: {recommended_model}")
|
| 75 |
explanation = explain_recommendation(recommended_model)
|
| 76 |
st.write("Explanation:", explanation)
|
|
|
|
| 70 |
dataset_description = st.text_area("", key="dataset_description")
|
| 71 |
if dataset_description:
|
| 72 |
if st.button("Recommend AI Model", key="recommend_model_button"):
|
| 73 |
+
recommended_model = recommend_ai_model_via_gpt(description)
|
| 74 |
st.subheader(f"Recommended: {recommended_model}")
|
| 75 |
explanation = explain_recommendation(recommended_model)
|
| 76 |
st.write("Explanation:", explanation)
|