NexusInstruments commited on
Commit
15d3310
·
verified ·
1 Parent(s): 0923b61

Update app.py

Browse files

taipy integration

Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -9,7 +9,7 @@ st.set_page_config(page_title="Omniscient Dashboard", layout="wide")
9
 
10
  # ─── Title ──────────────────────────────────────────────────────
11
  st.title("🤖 Omniscient LLM Dashboard")
12
- st.write("Welcome! This Space is running **Streamlit multipage mode**.")
13
 
14
  # ─── Metrics Section ────────────────────────────────────────────
15
  col1, col2, col3 = st.columns(3)
@@ -49,3 +49,8 @@ We group modules conceptually:
49
  - 🖥️ SysMonitor → local system metrics from `/proc/`
50
  - 🧪 Example → placeholder demo
51
  """)
 
 
 
 
 
 
9
 
10
  # ─── Title ──────────────────────────────────────────────────────
11
  st.title("🤖 Omniscient LLM Dashboard")
12
+ st.write("Welcome! This Space is running **Streamlit multipage mode** with Taipy integration.")
13
 
14
  # ─── Metrics Section ────────────────────────────────────────────
15
  col1, col2, col3 = st.columns(3)
 
49
  - 🖥️ SysMonitor → local system metrics from `/proc/`
50
  - 🧪 Example → placeholder demo
51
  """)
52
+
53
+ # ─── Embed Taipy Realtime Dashboard ───────────────────────────
54
+ st.subheader("📊 Realtime System Dashboard (Taipy)")
55
+ st.write("Live CPU and Memory metrics via Taipy GUI:")
56
+ st.components.v1.iframe("http://localhost:8080", height=600)