Update lab/app4.py
Browse files- lab/app4.py +2 -2
lab/app4.py
CHANGED
@@ -166,12 +166,12 @@ with tab1:
|
|
166 |
|
167 |
# 📊 Tab 2: Workflow Visualization
|
168 |
with tab2:
|
169 |
-
st.subheader("📊 Multi-Agent Workflow
|
170 |
|
171 |
try:
|
172 |
graph_path = "/tmp/graph.png"
|
173 |
if os.path.exists(graph_path):
|
174 |
-
st.image(graph_path, caption="Multi-Agent Workflow", use_container_width=True)
|
175 |
else:
|
176 |
st.warning("⚠️ Workflow graph not found. Please run `graph.py` to regenerate `graph.png`.")
|
177 |
|
|
|
166 |
|
167 |
# 📊 Tab 2: Workflow Visualization
|
168 |
with tab2:
|
169 |
+
#st.subheader("📊 Multi-Agent Essay Writer Workflow Viz")
|
170 |
|
171 |
try:
|
172 |
graph_path = "/tmp/graph.png"
|
173 |
if os.path.exists(graph_path):
|
174 |
+
st.image(graph_path, caption="Multi-Agent Essay Writer Workflow Viz", use_container_width=True)
|
175 |
else:
|
176 |
st.warning("⚠️ Workflow graph not found. Please run `graph.py` to regenerate `graph.png`.")
|
177 |
|