Spaces:
Sleeping
Sleeping
File size: 291 Bytes
23eefc7 299d199 23eefc7 299d199 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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)
|