Esvanth commited on
Commit
5544861
Β·
1 Parent(s): f149318

Fix importlib import, remove subtitle

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -4,7 +4,7 @@ Runs the actual task scripts and displays their real outputs.
4
  NCI MSCAI | Fundamentals of AI TABA 2026
5
  """
6
 
7
- import sys, io, os, math, heapq, time
8
  from contextlib import redirect_stdout
9
  from collections import deque
10
 
@@ -98,10 +98,7 @@ with st.sidebar:
98
  st.caption("All outputs in Tasks 2–5 are generated by running the actual task Python scripts.")
99
 
100
  # ── header ────────────────────────────────────────────────────────────────────
101
- st.markdown("<h2 style='margin:0 0 4px;color:#1e293b'>EcoCart AI System</h2>",
102
- unsafe_allow_html=True)
103
- st.markdown("<p style='color:#64748b;font-size:.85rem;margin:0 0 16px'>"
104
- "An AI-powered logistics solution β€” NCI MSCAI Fundamentals of AI 2026</p>",
105
  unsafe_allow_html=True)
106
 
107
  T1, T2, T3, T4, T5, T6 = st.tabs([
 
4
  NCI MSCAI | Fundamentals of AI TABA 2026
5
  """
6
 
7
+ import sys, io, os, math, heapq, time, importlib.util
8
  from contextlib import redirect_stdout
9
  from collections import deque
10
 
 
98
  st.caption("All outputs in Tasks 2–5 are generated by running the actual task Python scripts.")
99
 
100
  # ── header ────────────────────────────────────────────────────────────────────
101
+ st.markdown("<h2 style='margin:0 0 16px;color:#1e293b'>EcoCart AI System</h2>",
 
 
 
102
  unsafe_allow_html=True)
103
 
104
  T1, T2, T3, T4, T5, T6 = st.tabs([