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