Spaces:
Sleeping
Sleeping
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) | |