Fix importlib import, remove subtitle
Browse files
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
|
| 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([
|