File size: 20,358 Bytes
947b6dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | """dashboard/agent_graph.py β live SVG graph of the LangGraph agent topology.
Rendered inside _live_trace_fragment() in app.py while a brief is being generated.
The graph shows the Signals β Orchestrator β Synthesis flow on the left, with the
5 tools fanning out to the right β nodes illuminate as the agent uses them.
Live state is derived from the streaming trace list (already available in app.py):
β’ active tool β green (pending tool_call this round)
β’ used tools β pale green (already called this run)
β’ synthesis β green when in_progress, pale green when done
β’ signals β green when trace is empty (startup)
No new dependencies β pure SVG injected via st.markdown(..., unsafe_allow_html=True).
Tool names mirror agent/tools.py; update TOOL_DISPLAY here if tools change.
"""
from __future__ import annotations
import streamlit as st
from dashboard.theme import (
BG, BG_MUTED, BORDER, BORDER_STRONG,
TEXT, TEXT_MUTED, TEXT_FAINT,
BRAND_GREEN, BRAND_GREEN_DARK,
GREEN, BULL_BG, BULL_BORDER,
BLUE,
AI_BG, AI_COLOR,
)
# ββ Tool display metadata βββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Mirrors the 5 tools registered in agent/tools.py β update here if tools change.
TOOL_DISPLAY: dict[str, tuple[str, str]] = {
"get_financial_metrics": ("π", "Financials"),
"search_filing": ("π", "Filings"),
"search_transcript": ("π", "Transcript"),
"get_analyst_expectations": ("π", "Analysts"),
"search_news": ("π°", "News"),
}
_TOOL_NAMES = list(TOOL_DISPLAY.keys())
# Phase display metadata
_PHASE_META: dict[str, tuple[str, str]] = {
"signals": ("β‘", "Starting upβ¦"),
"thinking": ("π", "Thinkingβ¦"),
"tool": ("π§", "Using tools"),
"synthesis": ("βοΈ", "Synthesizing briefβ¦"),
"done": ("β
", "Brief ready"),
}
# ββ HTML escape helper ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _he(s: str) -> str:
"""Minimal HTML escape for user-derived text injected into markup."""
return (
s.replace("&", "&")
.replace("<", "<")
.replace(">", ">")
.replace('"', """)
)
# ββ State derivation (pure β no Streamlit dependency) βββββββββββββββββββββββββ
def derive_live_state(trace: list[dict]) -> dict:
"""Derive display state from the current trace snapshot.
Args:
trace: list of step dicts from dashboard/reasoning.py absorb_* helpers.
Returns dict with:
used_tools set[str] β tool names with status "done" this run
active_tools list[str] β tool names with status "pending" (current round)
phase str β "signals"|"thinking"|"tool"|"synthesis"|"done"
latest_thought str β last assistant_text, truncated to ~140 chars
latest_result dict|None β {name, line} of last tool_result, or None
active_args str β short first arg of active tool call (may be "")
"""
if not trace:
return {
"used_tools": set(),
"active_tools": [],
"phase": "signals",
"latest_thought": "",
"latest_result": None,
"active_args": "",
}
used_tools: set[str] = set()
active_tools: list[str] = []
active_args: str = ""
latest_thought: str = ""
latest_result: dict | None = None
phase: str = "thinking"
for step in trace:
kind = step["kind"]
if kind == "assistant_text":
text = step.get("text", "").strip().replace("\n", " ")
if text:
latest_thought = text[:140] + ("β¦" if len(text) > 140 else "")
elif kind == "tool_call":
name = step.get("name", "")
if step.get("status") == "done":
used_tools.add(name)
elif step.get("status") == "pending":
active_tools.append(name)
if not active_args:
args = step.get("args") or {}
for key in ("query", "ticker", "since", "period"):
val = args.get(key)
if val:
s = str(val).strip()
active_args = s[:50] + ("β¦" if len(s) > 50 else "")
break
elif kind == "tool_result":
snippet = step.get("snippet", "").strip().replace("\n", " ")
if snippet:
line = snippet[:110] + ("β¦" if len(snippet) > 110 else "")
latest_result = {"name": step.get("name", ""), "line": line}
elif kind == "synthesis":
status = step.get("status", "")
if status == "done":
phase = "done"
elif status == "in_progress" and phase != "done":
phase = "synthesis"
# Resolve phase from tool activity if not set by synthesis
if phase not in ("done", "synthesis"):
phase = "tool" if active_tools else "thinking"
return {
"used_tools": used_tools,
"active_tools": active_tools,
"phase": phase,
"latest_thought": latest_thought,
"latest_result": latest_result,
"active_args": active_args,
}
# ββ SVG layout constants ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_VW, _VH = 510, 265 # SVG viewBox dimensions
# Orchestrator node (center of composition)
_ORCH_CX, _ORCH_CY = 155, 132
_ORCH_W, _ORCH_H = 118, 44
# Signals / synthesis pill nodes (vertically aligned with orchestrator)
_SIG_CX, _SIG_CY = 155, 24
_SYN_CX, _SYN_CY = 155, 242
_PILL_W, _PILL_H = 90, 26
# Tool nodes β right column
_TOOL_X = 360 # left edge x
_TOOL_W = 138 # width
_TOOL_H = 28 # height
_TOOL_ICON_X = _TOOL_X + 16 # emoji center x
_TOOL_LABEL_X = _TOOL_X + 32 # text start x
def _tool_cy(i: int) -> int:
"""Vertical center of tool node i (0-indexed, 5 tools total)."""
top = 22
step = (_VH - top * 2) // 4 # evenly spread across height
return top + i * step # β 22, 77, 132, 187, 242
# ββ SVG primitive helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _rect(x: int, y: int, w: int, h: int, rx: int,
fill: str, stroke: str, stroke_w: float = 1.5) -> str:
return (
f'<rect x="{x}" y="{y}" width="{w}" height="{h}" rx="{rx}" '
f'fill="{fill}" stroke="{stroke}" stroke-width="{stroke_w}"/>'
)
def _label(cx: float, cy: float, text: str, fill: str,
size: float = 11.0, weight: int = 600, dy: float = 0.0) -> str:
return (
f'<text x="{cx}" y="{cy + dy}" text-anchor="middle" dominant-baseline="middle" '
f'font-family="Inter, ui-sans-serif, sans-serif" font-size="{size}" '
f'font-weight="{weight}" fill="{fill}">{_he(text)}</text>'
)
def _bezier_edge(x1: float, y1: float, x2: float, y2: float,
color: str, width: float, dashed: bool = False,
marker_id: str = "") -> str:
"""Cubic bezier: horizontal tangents at both ends (S-curve)."""
cx = (x1 + x2) / 2
d = f"M {x1} {y1} C {cx} {y1} {cx} {y2} {x2} {y2}"
dash = 'stroke-dasharray="5,4"' if dashed else ""
mend = f'marker-end="url(#pag_{marker_id})"' if marker_id else ""
return f'<path d="{d}" fill="none" stroke="{color}" stroke-width="{width}" {dash} {mend}/>'
def _vline(x: float, y1: float, y2: float,
color: str, width: float, marker_id: str = "") -> str:
mend = f'marker-end="url(#pag_{marker_id})"' if marker_id else ""
return f'<line x1="{x}" y1="{y1}" x2="{x}" y2="{y2}" stroke="{color}" stroke-width="{width}" {mend}/>'
# ββ SVG graph renderer ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _svg(state: dict) -> str:
used = state["used_tools"]
active = set(state["active_tools"])
phase = state["phase"]
is_signals_phase = phase == "signals"
is_synthesis_active = phase == "synthesis"
is_synthesis_done = phase == "done"
p: list[str] = []
# ββ Defs: arrowhead markers βββββββββββββββββββββββββββββββββββββββββββββββ
# IDs prefixed "pag_" to avoid collisions with other SVGs on the page.
p.append(
'<defs>'
# green (active)
f'<marker id="pag_ag" viewBox="0 0 10 10" refX="9" refY="5" '
f'markerWidth="5" markerHeight="5" orient="auto-start-reverse">'
f'<path d="M 0 0 L 10 5 L 0 10 z" fill="{BRAND_GREEN}"/></marker>'
# gray (inactive)
f'<marker id="pag_gr" viewBox="0 0 10 10" refX="9" refY="5" '
f'markerWidth="5" markerHeight="5" orient="auto-start-reverse">'
f'<path d="M 0 0 L 10 5 L 0 10 z" fill="{BORDER_STRONG}"/></marker>'
# pale green (used)
f'<marker id="pag_gp" viewBox="0 0 10 10" refX="9" refY="5" '
f'markerWidth="5" markerHeight="5" orient="auto-start-reverse">'
f'<path d="M 0 0 L 10 5 L 0 10 z" fill="{BULL_BORDER}"/></marker>'
'</defs>'
)
# ββ Orchestrator β tool edges (drawn first so nodes render on top) ββββββββ
orch_right = _ORCH_CX + _ORCH_W // 2 # 214
for i, name in enumerate(_TOOL_NAMES):
tcy = _tool_cy(i)
if name in active:
color, width, dashed, mid = BRAND_GREEN, 2.2, False, "ag"
elif name in used:
color, width, dashed, mid = BULL_BORDER, 1.5, False, "gp"
else:
color, width, dashed, mid = BORDER, 1.2, True, "gr"
p.append(_bezier_edge(orch_right, _ORCH_CY, _TOOL_X, tcy,
color, width, dashed, mid))
# ββ Signals β orchestrator (vertical) ββββββββββββββββββββββββββββββββββββ
sig_y1 = _SIG_CY + _PILL_H // 2 # bottom of signals pill
sig_y2 = _ORCH_CY - _ORCH_H // 2 # top of orchestrator rect
if is_signals_phase:
s_color, s_w, s_mid = BRAND_GREEN, 2.0, "ag"
else:
s_color, s_w, s_mid = BORDER_STRONG, 1.2, "gr"
p.append(_vline(_SIG_CX, sig_y1, sig_y2, s_color, s_w, s_mid))
# ββ Orchestrator β synthesis (vertical) ββββββββββββββββββββββββββββββββββ
syn_y1 = _ORCH_CY + _ORCH_H // 2 # bottom of orchestrator rect
syn_y2 = _SYN_CY - _PILL_H // 2 # top of synthesis pill
if is_synthesis_active or is_synthesis_done:
y_color, y_w, y_mid = BRAND_GREEN, 2.0, "ag"
else:
y_color, y_w, y_mid = BORDER_STRONG, 1.2, "gr"
p.append(_vline(_SYN_CX, syn_y1, syn_y2, y_color, y_w, y_mid))
# ββ Signals node βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if is_signals_phase:
sf, ss, st_ = BRAND_GREEN, BRAND_GREEN_DARK, "#ffffff"
else:
sf, ss, st_ = BG_MUTED, BORDER_STRONG, TEXT_MUTED
p.append(_rect(_SIG_CX - _PILL_W // 2, _SIG_CY - _PILL_H // 2,
_PILL_W, _PILL_H, rx=13, fill=sf, stroke=ss))
p.append(_label(_SIG_CX, _SIG_CY, "Signals", st_, size=10, weight=500))
# ββ Orchestrator node βββββββββββββββββββββββββββββββββββββββββββββββββββββ
ox = _ORCH_CX - _ORCH_W // 2
oy = _ORCH_CY - _ORCH_H // 2
orch_active = not is_signals_phase
if orch_active:
of_, os_, ot_, osw = AI_BG, AI_COLOR, AI_COLOR, 2.0
else:
of_, os_, ot_, osw = BG_MUTED, BORDER_STRONG, TEXT_MUTED, 1.5
p.append(_rect(ox, oy, _ORCH_W, _ORCH_H, rx=10, fill=of_, stroke=os_, stroke_w=osw))
p.append(_label(_ORCH_CX, _ORCH_CY, "Orchestrator", ot_, size=11, weight=700, dy=-7))
p.append(_label(_ORCH_CX, _ORCH_CY, "agent", ot_, size=9, weight=400, dy=9))
# ββ Synthesis node ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if is_synthesis_active:
yf, ys, yt_ = BRAND_GREEN, BRAND_GREEN_DARK, "#ffffff"
elif is_synthesis_done:
yf, ys, yt_ = BULL_BG, BULL_BORDER, GREEN
else:
yf, ys, yt_ = BG_MUTED, BORDER_STRONG, TEXT_MUTED
p.append(_rect(_SYN_CX - _PILL_W // 2, _SYN_CY - _PILL_H // 2,
_PILL_W, _PILL_H, rx=13, fill=yf, stroke=ys))
p.append(_label(_SYN_CX, _SYN_CY, "Synthesis", yt_, size=10, weight=500))
# ββ Tool nodes ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
for i, (name, (icon, disp_label)) in enumerate(TOOL_DISPLAY.items()):
tcy = _tool_cy(i)
ty = tcy - _TOOL_H // 2
if name in active:
tf, ts, tt_, tsw = BRAND_GREEN, BRAND_GREEN_DARK, "#ffffff", 2.0
fw = 700
elif name in used:
tf, ts, tt_, tsw = BULL_BG, BULL_BORDER, GREEN, 1.5
fw = 500
else:
tf, ts, tt_, tsw = BG_MUTED, BORDER, TEXT_FAINT, 1.2
fw = 500
p.append(_rect(_TOOL_X, ty, _TOOL_W, _TOOL_H, rx=7,
fill=tf, stroke=ts, stroke_w=tsw))
# Emoji icon
p.append(
f'<text x="{_TOOL_ICON_X}" y="{tcy}" '
f'text-anchor="middle" dominant-baseline="middle" '
f'font-family="\'Segoe UI Emoji\', \'Apple Color Emoji\', \'Noto Color Emoji\', sans-serif" '
f'font-size="13">{icon}</text>'
)
# Text label
p.append(
f'<text x="{_TOOL_LABEL_X}" y="{tcy}" '
f'text-anchor="start" dominant-baseline="middle" '
f'font-family="Inter, ui-sans-serif, sans-serif" '
f'font-size="10.5" font-weight="{fw}" fill="{tt_}">{disp_label}</text>'
)
# ββ Wrap in a card div ββββββββββββββββββββββββββββββββββββββββββββββββββββ
inner = "\n".join(p)
return (
f'<div style="background:{BG};border:1px solid {BORDER};border-radius:12px;'
f'padding:12px 14px;">'
f'<svg viewBox="0 0 {_VW} {_VH}" width="100%" '
f'xmlns="http://www.w3.org/2000/svg" style="display:block;">'
f'{inner}'
f'</svg>'
f'</div>'
)
# ββ Essential reasoning card ββββββββββββββββββββββββββββββββββββββββββββββββββ
def _essential_card(state: dict) -> str:
"""Build the compact reasoning summary card HTML."""
phase = state["phase"]
active = state["active_tools"]
used = state["used_tools"]
thought = state["latest_thought"]
result = state["latest_result"]
active_args = state["active_args"]
icon, phase_label = _PHASE_META.get(phase, ("π", "Runningβ¦"))
rows: list[str] = []
# ββ Phase header ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
rows.append(
f'<div style="display:flex;align-items:center;gap:6px;margin-bottom:11px;'
f'padding-bottom:9px;border-bottom:1px solid {BORDER};">'
f'<span style="font-size:0.95rem;">{icon}</span>'
f'<span style="font-size:0.82rem;font-weight:700;color:{TEXT};">'
f'{_he(phase_label)}</span>'
f'</div>'
)
# ββ Active tool βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if active:
name = active[0]
t_icon, t_label = TOOL_DISPLAY.get(name, ("π§", name))
arg_html = (
f'<div style="font-size:0.7rem;color:{TEXT_MUTED};margin-top:2px;'
f'overflow:hidden;text-overflow:ellipsis;white-space:nowrap;">'
f'{_he(active_args)}</div>'
) if active_args else ""
rows.append(
f'<div style="margin-bottom:9px;">'
f'<div style="font-size:0.65rem;font-weight:700;text-transform:uppercase;'
f'letter-spacing:0.08em;color:{BRAND_GREEN};margin-bottom:3px;">Active tool</div>'
f'<div style="font-size:0.8rem;color:{TEXT};font-weight:600;'
f'display:flex;align-items:center;gap:4px;">'
f'<span>{t_icon}</span><span>{_he(t_label)}</span></div>'
f'{arg_html}'
f'</div>'
)
# ββ Latest thought ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if thought:
rows.append(
f'<div style="margin-bottom:9px;">'
f'<div style="font-size:0.65rem;font-weight:700;text-transform:uppercase;'
f'letter-spacing:0.08em;color:{BLUE};margin-bottom:3px;">Thinking</div>'
f'<div style="font-size:0.74rem;color:{TEXT_MUTED};line-height:1.45;'
f'font-style:italic;">{_he(thought)}</div>'
f'</div>'
)
# ββ Latest tool output ββββββββββββββββββββββββββββββββββββββββββββββββββββ
if result:
t_label = TOOL_DISPLAY.get(result["name"], ("", result["name"]))[1]
rows.append(
f'<div style="margin-bottom:9px;">'
f'<div style="font-size:0.65rem;font-weight:700;text-transform:uppercase;'
f'letter-spacing:0.08em;color:{TEXT_MUTED};margin-bottom:3px;">Latest output</div>'
f'<div style="font-size:0.73rem;color:{TEXT_MUTED};line-height:1.4;">'
f'<span style="font-weight:600;color:{TEXT};">{_he(t_label)}</span>'
f' β {_he(result["line"])}'
f'</div>'
f'</div>'
)
# ββ Footer: call count ββββββββββββββββββββββββββββββββββββββββββββββββββββ
n = len(used)
if n > 0:
rows.append(
f'<div style="padding-top:8px;border-top:1px solid {BORDER};">'
f'<span style="font-size:0.68rem;color:{TEXT_FAINT};">'
f'{n} tool call{"s" if n != 1 else ""} completed</span>'
f'</div>'
)
body = "\n".join(rows)
return (
f'<div style="background:{BG};border:1px solid {BORDER};border-radius:12px;'
f'padding:14px 15px;min-height:220px;">'
f'{body}'
f'</div>'
)
# ββ Public API ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def render(trace: list[dict]) -> None:
"""Render the live agent graph (left) + essential reasoning card (right).
Call from _live_trace_fragment() in app.py on every 400ms poll tick.
"""
state = derive_live_state(trace)
col_graph, col_card = st.columns([3, 2])
with col_graph:
st.markdown(_svg(state), unsafe_allow_html=True)
with col_card:
st.markdown(_essential_card(state), unsafe_allow_html=True)
|