Spaces:
Sleeping
Sleeping
File size: 273 Bytes
23eefc7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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="β
Done"):
st.success(msg)
|