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)