Sanjayraju30 commited on
Commit
23eefc7
·
verified ·
1 Parent(s): 0c6fc36

Create modules/data_view.py

Browse files
Files changed (1) hide show
  1. modules/data_view.py +12 -0
modules/data_view.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def show_raw_data(df):
4
+ st.subheader("📥 Raw Data from Salesforce")
5
+ st.dataframe(df)
6
+
7
+ def show_predictions(df):
8
+ st.subheader("📊 Hugging Face AI Predictions")
9
+ st.dataframe(df)
10
+
11
+ def show_status(msg="✅ Done"):
12
+ st.success(msg)