Files
drc-ners-nlp/src/ners/web/pages/2_📋_Data_Overview.py
T
2025-10-05 18:14:15 +02:00

13 lines
442 B
Python

import streamlit as st
from ners.web.interfaces.data_overview import DataOverview
st.set_page_config(page_title="Data Overview", page_icon="📋", layout="wide")
if "config" in st.session_state:
data_overview = DataOverview(st.session_state.config)
data_overview.index()
else:
st.error("Please run the main app first to initialize the configuration.")
st.markdown("Go back to the [main page](/) to start the application.")