Spaces:
Running
Running
File size: 13,511 Bytes
a36db1b | 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 | "use client";
import { useState, useCallback, useRef, useEffect } from "react";
import { motion, AnimatePresence } from "framer-motion";
import { ShieldAlert, Eye, Sparkles, RotateCcw, Play, Square } from "lucide-react";
import { trustColor } from "../lib/theme";
import type { AutoPolicy, StepResult, TaskType, Observation, EventItem } from "../lib/types";
type JudgePhase = 0 | 1 | 2 | 3;
interface PhaseResult {
score: number;
detections: number;
poisonings: number;
steps: number;
finalTrust: Record<string, number>;
events: EventItem[];
}
const STEPS = [
{
icon: ShieldAlert,
num: "Step 1 of 3",
title: "Show the Failure",
desc: "The orchestrator delegates blindly using a random policy. No trust model. No verification. Watch as adversarial agents poison the mission unchecked.",
btnLabel: "Run Random Policy",
color: "var(--red)",
},
{
icon: Eye,
num: "Step 2 of 3",
title: "Show the Recovery",
desc: "Now the orchestrator uses behavioral trust. It routes to trusted specialists, triggers verification when stakes are high, and catches adversarial attempts before they cascade.",
btnLabel: "Run Heuristic Policy",
color: "var(--green)",
},
{
icon: Sparkles,
num: "Step 3 of 3",
title: "Prove Generalization",
desc: "Hidden profiles are reshuffled. The adversarial agent moves to a different slot. The orchestrator re-learns trust from scratch β proving this is a skill, not memorized identity.",
btnLabel: "Swap Profiles & Replay",
color: "var(--accent)",
},
];
export default function JudgeWizard({
autoRun,
resetEpisode,
swapProfiles,
observation,
events,
info,
running: globalRunning,
}: {
autoRun: (policy: AutoPolicy) => Promise<void>;
resetEpisode: (task?: TaskType, seed?: number) => Promise<StepResult | null>;
swapProfiles: () => Promise<void>;
observation: Observation | null;
events: EventItem[];
info: StepResult["info"] | undefined;
running: boolean;
}) {
const [phase, setPhase] = useState<JudgePhase>(0);
const [running, setRunning] = useState(false);
const [results, setResults] = useState<(PhaseResult | null)[]>([null, null, null]);
const eventsRef = useRef(events);
const infoRef = useRef(info);
const obsRef = useRef(observation);
useEffect(() => { eventsRef.current = events; }, [events]);
useEffect(() => { infoRef.current = info; }, [info]);
useEffect(() => { obsRef.current = observation; }, [observation]);
const captureResult = useCallback((): PhaseResult => ({
score: infoRef.current?.score ?? 0,
detections: infoRef.current?.adversarial_detections ?? 0,
poisonings: infoRef.current?.adversarial_poisonings ?? 0,
steps: infoRef.current?.step_count ?? 0,
finalTrust: obsRef.current?.trust_snapshot ?? {},
events: [...eventsRef.current],
}), []);
const runPhase = useCallback(async () => {
setRunning(true);
try {
if (phase === 0) {
await resetEpisode();
await autoRun("random");
const r = captureResult();
setResults((p) => { const n = [...p]; n[0] = r; return n; });
setPhase(1);
} else if (phase === 1) {
await resetEpisode();
await autoRun("heuristic");
const r = captureResult();
setResults((p) => { const n = [...p]; n[1] = r; return n; });
setPhase(2);
} else if (phase === 2) {
await swapProfiles();
await autoRun("trained");
const r = captureResult();
setResults((p) => { const n = [...p]; n[2] = r; return n; });
setPhase(3);
}
} finally {
setRunning(false);
}
}, [phase, autoRun, resetEpisode, swapProfiles, captureResult]);
const restart = () => {
setPhase(0);
setResults([null, null, null]);
};
const currentStep = Math.min(phase, 2);
const step = STEPS[currentStep];
const Icon = step.icon;
const isRunning = running || globalRunning;
// Live trust data during run
const trustEntries = observation
? Object.entries(observation.trust_snapshot).sort(([a], [b]) => a.localeCompare(b))
: [];
return (
<div className="jw">
{/* progress dots */}
<div className="jw-progress">
{[0, 1, 2].map((i) => (
<div key={i} style={{ display: "flex", alignItems: "center", gap: 8 }}>
<div className={`jw-dot ${phase > i ? "done" : phase === i ? "active" : ""}`} />
{i < 2 && <div className={`jw-bar ${phase > i ? "done" : ""}`} />}
</div>
))}
</div>
{/* main stage */}
<AnimatePresence mode="wait">
<motion.div
key={phase}
className="panel jw-stage"
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: -20 }}
transition={{ duration: 0.3 }}
>
{phase < 3 ? (
<>
<div className="jw-step-num">{step.num}</div>
<h2>
<Icon size={28} style={{ verticalAlign: "middle", marginRight: 10, color: step.color }} />
{step.title}
</h2>
<p>{step.desc}</p>
<button
className="btn btn-primary btn-lg btn-glow"
disabled={isRunning}
onClick={runPhase}
>
{isRunning ? (
<><Square size={16} /> Runningβ¦</>
) : (
<><Play size={16} /> {step.btnLabel}</>
)}
</button>
{/* Show PREVIOUS result if we have one (comparison view) */}
{phase === 1 && results[0] && (
<div style={{ marginTop: 28 }}>
<div style={{ fontSize: 11, color: "var(--ink3)", textTransform: "uppercase", letterSpacing: ".1em", fontWeight: 700, marginBottom: 12, fontFamily: "var(--mono)" }}>
Previous: Random Policy Result
</div>
<PhaseResultCard result={results[0]} variant="bad" />
</div>
)}
{phase === 2 && results[0] && results[1] && (
<div style={{ marginTop: 28 }}>
<div style={{ fontSize: 11, color: "var(--ink3)", textTransform: "uppercase", letterSpacing: ".1em", fontWeight: 700, marginBottom: 12, fontFamily: "var(--mono)" }}>
Before vs After Comparison
</div>
<div className="jw-compare">
<div className="panel jw-compare-card bad">
<h4>Random (Blind)</h4>
<div className="big">{results[0].score.toFixed(3)}</div>
<div style={{ marginTop: 8, fontSize: 12, color: "var(--ink3)" }}>
{results[0].poisonings} poisonings Β· {results[0].detections} detections
</div>
</div>
<div className="panel jw-compare-card good">
<h4>Heuristic (Trust)</h4>
<div className="big">{results[1].score.toFixed(3)}</div>
<div style={{ marginTop: 8, fontSize: 12, color: "var(--ink3)" }}>
{results[1].poisonings} poisonings Β· {results[1].detections} detections
</div>
</div>
</div>
</div>
)}
</>
) : (
/* completion screen */
<>
<div className="jw-step-num">Demo Complete</div>
<h2>
<Sparkles size={28} style={{ verticalAlign: "middle", marginRight: 10, color: "var(--green)" }} />
Trust Calibration Works
</h2>
<p>
Across all three runs, the orchestrator learned to identify and route around adversarial agents β even when specialist identities were reshuffled.
</p>
{/* three-way comparison */}
<div className="jw-results" style={{ maxWidth: 600, gridTemplateColumns: "repeat(3,1fr)" }}>
{["Random", "Heuristic", "After Swap"].map((label, i) => {
const r = results[i];
return (
<div className="jw-stat" key={label}>
<div className="lbl">{label}</div>
<div className="val" style={{
color: i === 0 ? "var(--red)" : "var(--green)",
textShadow: i === 0 ? "0 0 20px var(--glow-red)" : "0 0 20px var(--glow-green)",
}}>
{r ? r.score.toFixed(3) : "β"}
</div>
</div>
);
})}
</div>
{/* Final trust comparison */}
{results[1] && results[2] && (
<div className="jw-inline">
<div className="panel" style={{ textAlign: "left" }}>
<div className="panel-eyebrow">Heuristic Final Trust</div>
<TrustBars trust={results[1].finalTrust} />
</div>
<div className="panel" style={{ textAlign: "left" }}>
<div className="panel-eyebrow">After Swap Final Trust</div>
<TrustBars trust={results[2].finalTrust} />
</div>
</div>
)}
<div className="jw-nav">
<button className="btn btn-lg btn-glow" onClick={restart}>
<RotateCcw size={16} /> Run Again
</button>
</div>
</>
)}
</motion.div>
</AnimatePresence>
{/* Live data panel - shows during runs */}
{isRunning && observation && (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
className="jw-inline"
>
<div className="panel" style={{ textAlign: "left" }}>
<div className="panel-eyebrow">Live Trust Scores</div>
<TrustBars trust={observation.trust_snapshot} />
</div>
<div className="panel" style={{ textAlign: "left" }}>
<div className="panel-eyebrow">Live Events</div>
<div style={{ display: "grid", gap: 4, maxHeight: 200, overflow: "auto", fontSize: 12 }}>
{events.slice(-8).reverse().map((ev, i) => (
<div key={i} style={{
padding: "6px 8px", borderRadius: 6,
background: "rgba(0,0,0,.2)", color: "var(--ink2)",
display: "flex", justifyContent: "space-between", alignItems: "center",
}}>
<span>
<span style={{ color: "var(--ink3)", fontFamily: "var(--mono)" }}>#{ev.step}</span>{" "}
{ev.action}{ev.specialist ? `:${ev.specialist}` : ""}
</span>
<span style={{
fontFamily: "var(--mono)", fontWeight: 700,
color: ev.reward >= 0.5 ? "var(--green)" : "var(--red)",
}}>
{ev.outcome === "reset" ? "β" : ev.reward.toFixed(2)}
</span>
</div>
))}
</div>
</div>
</motion.div>
)}
</div>
);
}
/* ββ helper components βββββββββββββββββββββββββββββββ */
function TrustBars({ trust }: { trust: Record<string, number> }) {
const entries = Object.entries(trust).sort(([a], [b]) => a.localeCompare(b));
return (
<div style={{ display: "grid", gap: 8, marginTop: 8 }}>
{entries.map(([id, val]) => (
<div key={id} style={{ display: "grid", gridTemplateColumns: "32px 1fr 48px", gap: 8, alignItems: "center" }}>
<span style={{ fontWeight: 700, fontSize: 13, fontFamily: "var(--display)" }}>{id}</span>
<div style={{ height: 6, borderRadius: 99, background: "rgba(255,255,255,.04)", overflow: "hidden" }}>
<motion.div
style={{ height: "100%", borderRadius: 99, background: trustColor(val) }}
animate={{ width: `${Math.max(2, val * 100)}%` }}
transition={{ type: "spring", stiffness: 200, damping: 20 }}
/>
</div>
<span style={{ fontFamily: "var(--mono)", fontSize: 12, fontWeight: 600, textAlign: "right", color: trustColor(val) }}>
{val.toFixed(2)}
</span>
</div>
))}
</div>
);
}
function PhaseResultCard({ result, variant }: { result: PhaseResult; variant: "bad" | "good" }) {
return (
<div className="jw-results">
<div className="jw-stat">
<div className="lbl">Score</div>
<div className="val" style={{ color: variant === "bad" ? "var(--red)" : "var(--green)" }}>
{result.score.toFixed(3)}
</div>
</div>
<div className="jw-stat">
<div className="lbl">Poisonings</div>
<div className="val" style={{ color: result.poisonings > 0 ? "var(--red)" : "var(--ink)" }}>
{result.poisonings}
</div>
</div>
<div className="jw-stat">
<div className="lbl">Detections</div>
<div className="val" style={{ color: result.detections > 0 ? "var(--green)" : "var(--ink3)" }}>
{result.detections}
</div>
</div>
</div>
);
}
|