import streamlit as st def show_raw_data(df): st.subheader("📥 Raw Data from Salesforce") st.dataframe(df) def show_predictions(df): st.subheader("📊 Hugging Face AI Predictions") st.dataframe(df) def show_status(msg="✅ Predictions completed"): st.success(msg)