Sanjayraju30's picture
Update modules/data_view.py
299d199 verified
raw
history blame
291 Bytes
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)