Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -454,12 +454,9 @@ if fetch_data:
|
|
454 |
# --- Suggested Metadata Enhancements Section ---
|
455 |
st.subheader("Suggested Metadata Enhancements")
|
456 |
|
457 |
-
# Create a row with checkbox for AI suggestions
|
458 |
-
|
459 |
-
|
460 |
-
use_ai = st.checkbox("", value=True)
|
461 |
-
with col2:
|
462 |
-
st.markdown("🤖 Use AI Suggestions (Hugging Face)")
|
463 |
|
464 |
# Check if records exist
|
465 |
incomplete_with_desc = metadata_df[
|
|
|
454 |
# --- Suggested Metadata Enhancements Section ---
|
455 |
st.subheader("Suggested Metadata Enhancements")
|
456 |
|
457 |
+
# Create a row with checkbox for AI suggestions - with proper label
|
458 |
+
use_ai = st.checkbox("Use AI Suggestions", value=True, label_visibility="hidden")
|
459 |
+
st.markdown("🤖 Use AI Suggestions (Hugging Face)")
|
|
|
|
|
|
|
460 |
|
461 |
# Check if records exist
|
462 |
incomplete_with_desc = metadata_df[
|