Update app.py
Browse files
app.py
CHANGED
|
@@ -1494,15 +1494,15 @@ def display_welcome_page():
|
|
| 1494 |
5. **Transform** your features based on recommendations
|
| 1495 |
""")
|
| 1496 |
|
| 1497 |
-
# Powered by section
|
| 1498 |
-
st.subheader("Powered by")
|
| 1499 |
-
cols = st.columns(3)
|
| 1500 |
-
with cols[0]:
|
| 1501 |
-
|
| 1502 |
-
with cols[1]:
|
| 1503 |
-
|
| 1504 |
-
with cols[2]:
|
| 1505 |
-
|
| 1506 |
|
| 1507 |
# Upload prompt
|
| 1508 |
st.info("👈 Please upload a CSV file using the sidebar to get started")
|
|
@@ -1853,7 +1853,7 @@ def main():
|
|
| 1853 |
|
| 1854 |
st.markdown('</div>', unsafe_allow_html=True)
|
| 1855 |
|
| 1856 |
-
st.markdown('<div class="sidebar-footer">Powered by Hugging Face & Streamlit</div>', unsafe_allow_html=True)
|
| 1857 |
|
| 1858 |
# If data is uploaded, process it
|
| 1859 |
if uploaded_file is not None and ('df' not in st.session_state or st.session_state.get('df') is None):
|
|
|
|
| 1494 |
5. **Transform** your features based on recommendations
|
| 1495 |
""")
|
| 1496 |
|
| 1497 |
+
# # Powered by section
|
| 1498 |
+
# st.subheader("Powered by")
|
| 1499 |
+
# cols = st.columns(3)
|
| 1500 |
+
# with cols[0]:
|
| 1501 |
+
# st.markdown("**llama3-8b-8192**")
|
| 1502 |
+
# with cols[1]:
|
| 1503 |
+
# st.markdown("**Groq API**")
|
| 1504 |
+
# with cols[2]:
|
| 1505 |
+
# st.markdown("**Streamlit**")
|
| 1506 |
|
| 1507 |
# Upload prompt
|
| 1508 |
st.info("👈 Please upload a CSV file using the sidebar to get started")
|
|
|
|
| 1853 |
|
| 1854 |
st.markdown('</div>', unsafe_allow_html=True)
|
| 1855 |
|
| 1856 |
+
# st.markdown('<div class="sidebar-footer">Powered by Hugging Face & Streamlit</div>', unsafe_allow_html=True)
|
| 1857 |
|
| 1858 |
# If data is uploaded, process it
|
| 1859 |
if uploaded_file is not None and ('df' not in st.session_state or st.session_state.get('df') is None):
|