-
Setup, on a clean GCP project
-
cd examples/decision_lineage_demo
-./setup.sh
+
+
Q4 — Subpoena reproducibility
+
Art 12
Art 13
+
MATCH (step:AgentStep)-[:DecidedAt]->(dp:PlanningDecision)
+ -[:WeighedOption]->(opt:DecisionOption)
+WHERE dp.session_id='<S>'
+ AND LOWER(dp.decision_type) LIKE '%creative%'
+ AND step.event_type='LLM_RESPONSE'
+RETURN dp.span_id, opt.status, opt.name, opt.score,
+ opt.rejection_rationale;
-
-
-
-| Phase |
-Wall time |
-
-
-
-
-| Tooling + APIs + venv |
-~30s |
-
-
-| Live agent (6 sessions) |
-3-7 min |
-
-
-AI.GENERATE extraction |
-30-90s |
-
-
-| Rich-graph projection |
-~10s |
-
-
-| Render BQ Studio queries |
-<1s |
-
-
-
+
3 rows. All point to one evidence_span_id → that span lives in agent_events with full content + timestamp + latency.
-
-
Cost per setup run
-
-- 6 live
gemini-2.5-pro invocations
-- 2
AI.GENERATE extraction queries
-- A few hundred BQ rows + one property graph
-
-
Order-of-cents for the verified demo run. Queries against the prebuilt graph are lightweight.
-
From zero to leadership demo
-
Under 10 minutes, fully reproducible, on any GCP project.
+
+
Q5 — Systemic pattern
+
Art 17
Art 60
+
MATCH (dp:PlanningDecision)-[:WeighedOption]->(opt:DecisionOption)
+WHERE opt.status='DROPPED'
+RETURN dp.decision_type,
+ COUNT(opt) AS rejections,
+ AVG(opt.score) AS avg_dropped_score
+GROUP BY dp.decision_type
+ORDER BY rejections DESC;
+
+
Audience Selection rejects with the lowest avg confidence (0.66) — the category most worth a fairness loop-back to Q2.
@@ -9051,6 +10141,41 @@ From zero to leadership demo
.accent-green { color: #188038; }
.accent-yellow { color: #b06000; }
.accent-red { color: #d93025; }
+section.dense {
+ font-size: 22px;
+ padding: 44px 54px;
+}
+section.dense h1 {
+ font-size: 34px;
+ margin-bottom: 8px;
+}
+section.dense h2 {
+ font-size: 22px;
+}
+section.dense h3 {
+ font-size: 18px;
+}
+section.dense table {
+ font-size: 17px;
+ margin: 8px 0;
+}
+section.dense th,
+section.dense td {
+ padding: 5px 8px;
+}
+section.dense pre {
+ font-size: 12px;
+ padding: 12px 14px;
+}
+section.dense .small {
+ font-size: 16px;
+}
+section.dense .compact {
+ font-size: 18px;
+}
+section.dense footer {
+ display: none;
+}
footer {
color: #5f6368;
font-size: 14px;
@@ -9058,7 +10183,7 @@ From zero to leadership demo
section.hero footer {
color: rgba(255,255,255,0.70);
}
-" lang="en-US" class="section-divider" data-marpit-pagination="18" style="--paginate:true;--background-color:#ffffff;--color:#202124;--footer:Decision Lineage with BigQuery Context Graphs · examples/decision_lineage_demo;--class:section-divider;--theme:gaia;--style:/* Google-style typography, presentation rhythm, and executive-ready components. */
+" lang="C" class="section-divider" data-marpit-pagination="18" style="--paginate:true;--background-color:#ffffff;--color:#202124;--footer:Decision Lineage with BigQuery Context Graphs · examples/decision_lineage_demo;--class:section-divider;--theme:gaia;--style:/* Google-style typography, presentation rhythm, and executive-ready components. */
section {
font-family: "Google Sans", "Roboto", -apple-system, "Segoe UI", sans-serif;
font-size: 27px;
@@ -9298,6 +10423,41 @@ From zero to leadership demo
.accent-green { color: #188038; }
.accent-yellow { color: #b06000; }
.accent-red { color: #d93025; }
+section.dense {
+ font-size: 22px;
+ padding: 44px 54px;
+}
+section.dense h1 {
+ font-size: 34px;
+ margin-bottom: 8px;
+}
+section.dense h2 {
+ font-size: 22px;
+}
+section.dense h3 {
+ font-size: 18px;
+}
+section.dense table {
+ font-size: 17px;
+ margin: 8px 0;
+}
+section.dense th,
+section.dense td {
+ padding: 5px 8px;
+}
+section.dense pre {
+ font-size: 12px;
+ padding: 12px 14px;
+}
+section.dense .small {
+ font-size: 16px;
+}
+section.dense .compact {
+ font-size: 18px;
+}
+section.dense footer {
+ display: none;
+}
footer {
color: #5f6368;
font-size: 14px;
@@ -9305,8 +10465,8 @@ From zero to leadership demo
section.hero footer {
color: rgba(255,255,255,0.70);
}
-;color:#202124;background-color:#ffffff;background-image:none;" data-marpit-pagination-total="21" data-size="16:9">Section 4 of 4
-Where to go next
+;color:#202124;background-color:#ffffff;background-image:none;" data-marpit-pagination-total="33" data-size="16:9">Part 5 · Technical architecture
+How the evidence is built — every step concrete