Spaces:
Runtime error
Runtime error
File size: 28,881 Bytes
cd8bd0a | 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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 | "use client";
import { useCallback, useEffect, useMemo, useState } from "react";
import { useTranslations } from "next-intl";
import Badge from "@/shared/components/Badge";
import Card from "@/shared/components/Card";
import { Skeleton } from "@/shared/components/Loading";
import { cn } from "@/shared/utils/cn";
import { useProviderNodeMap, resolveProviderName } from "@/lib/display/useProviderNodeMap";
type CallLogOption = {
id: string;
timestamp: string | null;
status: number;
model: string | null;
requestedModel: string | null;
provider: string | null;
comboName: string | null;
duration: number;
};
type AnalyticsTranslator = ((key: string, values?: Record<string, unknown>) => string) & {
has?: (key: string) => boolean;
};
function analyticsText(t: AnalyticsTranslator, key: string, fallback: string) {
return typeof t.has === "function" && t.has(key) ? t(key) : fallback;
}
type ExplanationFactor = {
name: string;
value: string;
status: "positive" | "warning" | "negative" | "neutral";
weight: number;
contribution: number;
details: string;
};
type ExplainTarget = {
id: string;
timestamp: string | null;
status: number;
provider: string | null;
model: string | null;
comboStepId: string | null;
comboExecutionKey: string | null;
durationMs: number;
outcome: "selected" | "related";
reason: string;
};
type ReplayFactor = {
key: string;
value: number;
weight: number;
contribution: number;
source: string;
note?: string;
};
type ReplayCandidate = {
executionKey: string;
stepId: string | null;
provider: string;
model: string;
connectionId: string | null;
label: string | null;
rank: number;
score: number;
isRuntimeSelected: boolean;
wouldSelectNow: boolean;
factors: ReplayFactor[];
signals: {
quotaRemainingPct: number | null;
projectedQuotaRemainingPct: number | null;
successRate: number | null;
avgLatencyMs: number | null;
forecastRisk: string | null;
autopilotIssueCount: number;
};
};
type DecisionReplay = {
runtime: {
source: "call_logs";
exact: true;
selectedCallLogId: string;
comboName: string | null;
comboStepId: string | null;
comboExecutionKey: string | null;
provider: string | null;
model: string | null;
connectionId: string | null;
status: number;
timestamp: string | null;
durationMs: number;
};
recompute: null | {
source: "comboScoringInspector";
method: "read_only_recompute";
exactRuntimeReplay: false;
asOf: string;
timeRange: "24h";
horizon: "7d";
comboId: string;
comboName: string;
strategy: string;
taskType: "default";
recomputedSelectedExecutionKey: string | null;
runtimeSelectedRank: number | null;
runtimeSelectedScore: number | null;
alignment:
| "matches_recomputed_top_target"
| "differs_from_recomputed_top_target"
| "runtime_target_missing_from_recompute"
| "not_combo_routed";
candidates: ReplayCandidate[];
warnings: string[];
};
warnings: string[];
};
type RouteExplainabilityResponse = {
requestId: string;
routeType: "combo" | "direct";
confidence: "high" | "medium" | "low";
summary: string;
comboUsed: string | null;
providerSelected: string | null;
modelUsed: string | null;
score: number;
latencyActual: number;
decision: {
status: number;
factors: ExplanationFactor[];
fallbacksTriggered: ExplainTarget[];
};
request: {
timestamp: string | null;
requestedModel: string | null;
requestType: string | null;
sourceFormat: string | null;
targetFormat: string | null;
cacheSource: string | null;
apiKeyName: string | null;
};
selectedTarget: {
provider: string | null;
model: string | null;
account: string | null;
connectionId: string | null;
comboStepId: string | null;
comboExecutionKey: string | null;
durationMs: number;
status: number;
tokensIn: number;
tokensOut: number;
};
targetStats: {
sampleSize: number;
successRate: number;
avgLatencyMs: number;
lastStatus: "ok" | "error" | null;
lastUsedAt: string | null;
};
relatedTargets: ExplainTarget[];
evidence: Array<{ label: string; value: string; tone: ExplanationFactor["status"] }>;
recommendations: string[];
limitations: string[];
decisionReplay?: DecisionReplay;
};
function formatDate(value: string | null) {
if (!value) return "n/a";
const date = new Date(value);
if (Number.isNaN(date.getTime())) return value;
return new Intl.DateTimeFormat(undefined, {
month: "short",
day: "numeric",
hour: "2-digit",
minute: "2-digit",
}).format(date);
}
function formatDuration(value: number) {
if (!Number.isFinite(value) || value <= 0) return "n/a";
if (value >= 1000) return `${(value / 1000).toFixed(1)}s`;
return `${Math.round(value)}ms`;
}
function getToneVariant(tone: ExplanationFactor["status"]) {
if (tone === "positive") return "success" as const;
if (tone === "warning") return "warning" as const;
if (tone === "negative") return "error" as const;
return "default" as const;
}
function getStatusVariant(status: number) {
if (status >= 200 && status < 400) return "success" as const;
if (status >= 400) return "error" as const;
return "default" as const;
}
function RouteMetric({ icon, label, value }: { icon: string; label: string; value: string }) {
return (
<div className="rounded-lg border border-black/5 bg-black/2 p-4 dark:border-white/5 dark:bg-white/2">
<div className="flex items-center gap-2 text-xs font-semibold uppercase tracking-wider text-text-muted">
<span className="material-symbols-outlined text-[16px]">{icon}</span>
{label}
</div>
<div className="mt-2 text-xl font-semibold text-text-main">{value}</div>
</div>
);
}
function ExplainabilitySkeleton() {
return (
<div className="grid gap-4 lg:grid-cols-[0.8fr_1.2fr]">
<Skeleton className="h-72 rounded-lg" />
<Skeleton className="h-72 rounded-lg" />
</div>
);
}
function FactorCard({ factor }: { factor: ExplanationFactor }) {
const contributionPct = Math.round(factor.contribution * 100);
const weightPct = Math.round(factor.weight * 100);
return (
<div className="rounded-lg border border-black/5 bg-black/2 p-4 dark:border-white/5 dark:bg-white/2">
<div className="flex flex-wrap items-start justify-between gap-3">
<div className="min-w-0">
<div className="text-sm font-semibold text-text-main">{factor.name}</div>
<div className="mt-1 truncate text-xs text-text-muted">{factor.value}</div>
</div>
<Badge variant={getToneVariant(factor.status)} size="sm">
{contributionPct}%
</Badge>
</div>
<div className="mt-3 h-2 overflow-hidden rounded-full bg-black/5 dark:bg-white/5">
<div className="h-full rounded-full bg-primary" style={{ width: `${contributionPct}%` }} />
</div>
<div className="mt-2 text-xs text-text-muted">
Weight {weightPct}% 路 {factor.details}
</div>
</div>
);
}
function TargetTimeline({ targets }: { targets: ExplainTarget[] }) {
const nodeMap = useProviderNodeMap();
if (targets.length === 0) {
return <div className="text-sm text-text-muted">No related target evidence persisted yet.</div>;
}
return (
<div className="flex flex-col gap-3">
{targets.map((target) => (
<div
key={`${target.id}-${target.comboExecutionKey || target.comboStepId || target.provider}`}
className={cn(
"rounded-lg border p-4",
target.outcome === "selected"
? "border-primary/30 bg-primary/5"
: "border-black/5 bg-black/2 dark:border-white/5 dark:bg-white/2"
)}
>
<div className="flex flex-wrap items-start justify-between gap-3">
<div className="min-w-0">
<div className="flex flex-wrap items-center gap-2">
<span className="truncate text-sm font-medium text-text-main">
{resolveProviderName(target.provider, nodeMap)} / {target.model || "unknown"}
</span>
{target.outcome === "selected" ? (
<Badge variant="primary" size="sm">
Selected
</Badge>
) : null}
</div>
<div className="mt-1 text-xs text-text-muted">
{formatDate(target.timestamp)} 路 {target.comboStepId || "no step id"}
</div>
<div className="mt-1 text-xs text-text-muted">{target.reason}</div>
</div>
<div className="flex items-center gap-2">
<Badge variant={getStatusVariant(target.status)} size="sm">
HTTP {target.status || "n/a"}
</Badge>
<Badge size="sm">{formatDuration(target.durationMs)}</Badge>
</div>
</div>
</div>
))}
</div>
);
}
function replayAlignmentLabel(alignment: NonNullable<DecisionReplay["recompute"]>["alignment"]) {
if (alignment === "matches_recomputed_top_target") return "Matches current top target";
if (alignment === "differs_from_recomputed_top_target") return "Differs from current top";
if (alignment === "runtime_target_missing_from_recompute") return "Target missing now";
return "Not combo routed";
}
function replayAlignmentVariant(alignment: NonNullable<DecisionReplay["recompute"]>["alignment"]) {
if (alignment === "matches_recomputed_top_target") return "success" as const;
if (alignment === "differs_from_recomputed_top_target") return "warning" as const;
if (alignment === "runtime_target_missing_from_recompute") return "error" as const;
return "default" as const;
}
function WhyThisTargetCard({ replay }: { replay: DecisionReplay | undefined }) {
const nodeMap = useProviderNodeMap();
if (!replay) return null;
const recompute = replay.recompute;
const candidates = recompute?.candidates ?? [];
return (
<Card
title="Why this target?"
subtitle="Exact runtime metadata plus read-only scoring replay"
icon="psychology"
>
<div className="flex flex-col gap-4">
<div className="rounded-lg border border-primary/20 bg-primary/5 p-4">
<div className="flex flex-wrap items-start justify-between gap-3">
<div className="min-w-0">
<div className="text-sm font-semibold text-text-main">Exact runtime log</div>
<div className="mt-1 truncate text-xs text-text-muted">
{resolveProviderName(replay.runtime.provider, nodeMap)} /{" "}
{replay.runtime.model || "unknown"}
</div>
<div className="mt-1 text-xs text-text-muted">
{formatDate(replay.runtime.timestamp)} 路 {replay.runtime.comboStepId || "no step"}
</div>
</div>
<div className="flex flex-wrap items-center gap-2">
<Badge variant={getStatusVariant(replay.runtime.status)} size="sm">
HTTP {replay.runtime.status || "n/a"}
</Badge>
<Badge variant="success" size="sm">
call_logs exact
</Badge>
</div>
</div>
</div>
{recompute ? (
<div className="rounded-lg border border-black/5 bg-black/2 p-4 dark:border-white/5 dark:bg-white/2">
<div className="flex flex-wrap items-center justify-between gap-3">
<div>
<div className="text-sm font-semibold text-text-main">Read-only recompute</div>
<div className="mt-1 text-xs text-text-muted">
{recompute.comboName} 路 {recompute.strategy} 路 {recompute.timeRange} /{" "}
{recompute.horizon}
</div>
</div>
<Badge variant={replayAlignmentVariant(recompute.alignment)} size="sm">
{replayAlignmentLabel(recompute.alignment)}
</Badge>
</div>
<div className="mt-3 grid gap-3 sm:grid-cols-3">
<RouteMetric
icon="leaderboard"
label="Runtime rank now"
value={recompute.runtimeSelectedRank ? `#${recompute.runtimeSelectedRank}` : "n/a"}
/>
<RouteMetric
icon="score"
label="Runtime score now"
value={
recompute.runtimeSelectedScore !== null
? `${Math.round(recompute.runtimeSelectedScore * 100)}%`
: "n/a"
}
/>
<RouteMetric
icon="looks_one"
label="Would select now"
value={recompute.recomputedSelectedExecutionKey || "n/a"}
/>
</div>
</div>
) : (
<div className="rounded-lg border border-warning/20 bg-warning/10 p-4 text-sm text-text-muted">
No combo candidate ranking can be recomputed for this request.
</div>
)}
{candidates.length > 0 ? (
<div className="flex flex-col gap-2">
{candidates.slice(0, 5).map((candidate) => (
<div
key={candidate.executionKey}
className={cn(
"rounded-lg border p-3",
candidate.isRuntimeSelected
? "border-primary/30 bg-primary/5"
: "border-black/5 bg-bg dark:border-white/5"
)}
>
<div className="flex flex-wrap items-start justify-between gap-3">
<div className="min-w-0">
<div className="flex flex-wrap items-center gap-2 text-sm font-medium text-text-main">
<span>#{candidate.rank}</span>
<span className="truncate">
{resolveProviderName(candidate.provider, nodeMap)} / {candidate.model}
</span>
{candidate.isRuntimeSelected ? (
<Badge variant="primary" size="sm">
Runtime
</Badge>
) : null}
{candidate.wouldSelectNow ? (
<Badge variant="success" size="sm">
Top now
</Badge>
) : null}
</div>
<div className="mt-1 text-xs text-text-muted">
{candidate.label || candidate.stepId || candidate.executionKey}
</div>
</div>
<Badge size="sm">{Math.round(candidate.score * 100)}%</Badge>
</div>
</div>
))}
</div>
) : null}
{replay.warnings.length > 0 ? (
<ul className="flex flex-col gap-2 text-xs text-text-muted">
{replay.warnings.map((warning) => (
<li key={warning} className="flex items-start gap-2">
<span className="material-symbols-outlined mt-0.5 text-[15px] text-warning">
info
</span>
<span>{warning}</span>
</li>
))}
</ul>
) : null}
</div>
</Card>
);
}
export default function RouteExplainabilityTab({
initialRequestId = "",
}: {
initialRequestId?: string;
}) {
const t = useTranslations("analytics") as AnalyticsTranslator;
const nodeMap = useProviderNodeMap();
const [logs, setLogs] = useState<CallLogOption[]>([]);
const [selectedId, setSelectedId] = useState(initialRequestId);
const [explanation, setExplanation] = useState<RouteExplainabilityResponse | null>(null);
const [logsLoading, setLogsLoading] = useState(true);
const [explanationLoading, setExplanationLoading] = useState(false);
const [error, setError] = useState<string | null>(null);
const fetchLogs = useCallback(
async (signal?: AbortSignal) => {
setLogsLoading(true);
try {
const response = await fetch("/api/usage/call-logs?limit=75", {
signal,
cache: "no-store",
});
if (!response.ok) throw new Error("Failed to fetch request logs");
const data = (await response.json()) as CallLogOption[];
setLogs(data);
setSelectedId((current) => {
const preferredId = current || initialRequestId;
if (preferredId && data.some((log) => log.id === preferredId)) {
return preferredId;
}
return data[0]?.id || "";
});
setError(null);
} catch (fetchError) {
if ((fetchError as Error).name === "AbortError") return;
setError(fetchError instanceof Error ? fetchError.message : "Failed to fetch request logs");
setLogs([]);
} finally {
if (!signal?.aborted) setLogsLoading(false);
}
},
[initialRequestId]
);
const fetchExplanation = useCallback(async (requestId: string, signal?: AbortSignal) => {
if (!requestId) return;
setExplanationLoading(true);
try {
const response = await fetch(`/api/usage/route-explain/${encodeURIComponent(requestId)}`, {
signal,
cache: "no-store",
});
if (!response.ok) throw new Error("Failed to explain route");
const data = (await response.json()) as RouteExplainabilityResponse;
setExplanation(data);
setError(null);
} catch (fetchError) {
if ((fetchError as Error).name === "AbortError") return;
setError(fetchError instanceof Error ? fetchError.message : "Failed to explain route");
setExplanation(null);
} finally {
if (!signal?.aborted) setExplanationLoading(false);
}
}, []);
useEffect(() => {
const controller = new AbortController();
fetchLogs(controller.signal);
return () => controller.abort();
}, [fetchLogs]);
useEffect(() => {
if (!selectedId) return;
const controller = new AbortController();
fetchExplanation(selectedId, controller.signal);
return () => controller.abort();
}, [fetchExplanation, selectedId]);
useEffect(() => {
if (!selectedId || typeof window === "undefined") return;
const url = new URL(window.location.href);
if (
url.searchParams.get("tab") === "route-trace" ||
url.searchParams.get("tab") === "route-explain"
) {
url.searchParams.set("tab", "route-trace");
url.searchParams.set("id", selectedId);
window.history.replaceState(null, "", url.toString());
}
}, [selectedId]);
const selectedLog = useMemo(
() => logs.find((log) => log.id === selectedId) || null,
[logs, selectedId]
);
return (
<div className="flex flex-col gap-6">
<div className="flex flex-col gap-4 rounded-xl border border-black/5 bg-surface p-5 shadow-sm dark:border-white/5 lg:flex-row lg:items-center lg:justify-between">
<div>
<h2 className="text-lg font-semibold text-text-main">
{analyticsText(t, "routeTraceTitle", "Route Trace View")}
</h2>
<p className="mt-1 max-w-3xl text-sm text-text-muted">
{analyticsText(
t,
"routeTraceDescription",
"Inspect the persisted request trace: selected target, routing factors, fallback evidence, current scoring replay, latency, tokens and target health."
)}
</p>
</div>
<div className="flex min-w-0 flex-col gap-2 sm:min-w-90">
<label className="text-xs font-semibold uppercase tracking-wider text-text-muted">
{analyticsText(t, "routeTraceRequestLog", "Request log")}
</label>
<select
value={selectedId}
onChange={(event) => setSelectedId(event.target.value)}
disabled={logsLoading || logs.length === 0}
className="focus-ring rounded-lg border border-border bg-bg px-3 py-2 text-sm text-text-main disabled:cursor-not-allowed disabled:opacity-60"
>
{logs.map((log) => (
<option key={log.id} value={log.id}>
{formatDate(log.timestamp)} 路 HTTP {log.status} 路{" "}
{log.comboName || resolveProviderName(log.provider, nodeMap) || "direct"} 路{" "}
{log.model || log.requestedModel || log.id}
</option>
))}
</select>
</div>
</div>
{logsLoading || explanationLoading ? <ExplainabilitySkeleton /> : null}
{!logsLoading && !explanationLoading && error ? (
<Card className="p-8">
<div className="flex flex-col items-center justify-center gap-3 text-center">
<span className="material-symbols-outlined text-[40px] text-error">route_off</span>
<div className="font-medium text-text-main">Unable to load route explanation</div>
<div className="text-sm text-text-muted">{error}</div>
<button
type="button"
onClick={() => fetchLogs()}
className="inline-flex items-center gap-2 rounded-lg bg-primary px-4 py-2 text-sm font-medium text-white hover:bg-primary-hover"
>
<span className="material-symbols-outlined text-[18px]">refresh</span>
Retry
</button>
</div>
</Card>
) : null}
{!logsLoading && !explanationLoading && !error && logs.length === 0 ? (
<Card className="p-10">
<div className="flex flex-col items-center justify-center gap-4 text-center">
<span className="material-symbols-outlined text-[40px] text-text-muted/70">route</span>
<div className="text-base font-medium text-text-main">No request logs available</div>
<div className="max-w-md text-sm text-text-muted">
Send traffic through OmniRoute first. Route explanations are generated from persisted
structured call logs.
</div>
</div>
</Card>
) : null}
{!logsLoading && !explanationLoading && explanation ? (
<div className="grid gap-6 xl:grid-cols-[0.85fr_1.15fr]">
<div className="flex flex-col gap-6">
<Card
title="Decision summary"
subtitle={selectedLog?.id || explanation.requestId}
icon="alt_route"
>
<div className="flex flex-col gap-4">
<div className="flex flex-wrap items-center gap-2">
<Badge variant={explanation.routeType === "combo" ? "primary" : "default"}>
{explanation.routeType}
</Badge>
<Badge variant={getStatusVariant(explanation.selectedTarget.status)}>
HTTP {explanation.selectedTarget.status}
</Badge>
<Badge
variant={
explanation.confidence === "high"
? "success"
: explanation.confidence === "medium"
? "warning"
: "default"
}
>
{explanation.confidence} confidence
</Badge>
</div>
<p className="text-sm text-text-muted">{explanation.summary}</p>
<div className="grid gap-3 sm:grid-cols-2">
<RouteMetric
icon="analytics"
label="Route score"
value={`${Math.round(explanation.score * 100)}%`}
/>
<RouteMetric
icon="timer"
label="Latency"
value={formatDuration(explanation.latencyActual)}
/>
<RouteMetric
icon="task_alt"
label="Recent success"
value={`${explanation.targetStats.successRate}%`}
/>
<RouteMetric
icon="bolt"
label="Avg target latency"
value={formatDuration(explanation.targetStats.avgLatencyMs)}
/>
</div>
</div>
</Card>
<Card title="Selected target" icon="my_location">
<div className="grid gap-3 text-sm">
{[
["Provider", resolveProviderName(explanation.selectedTarget.provider, nodeMap)],
["Model", explanation.selectedTarget.model || "n/a"],
["Account", explanation.selectedTarget.account || "n/a"],
["Connection", explanation.selectedTarget.connectionId || "n/a"],
["Combo", explanation.comboUsed || "Direct"],
["Step", explanation.selectedTarget.comboStepId || "n/a"],
[
"Tokens",
`${explanation.selectedTarget.tokensIn.toLocaleString()} in 路 ${explanation.selectedTarget.tokensOut.toLocaleString()} out`,
],
].map(([label, value]) => (
<div
key={label}
className="flex items-start justify-between gap-4 border-b border-black/5 pb-2 last:border-b-0 last:pb-0 dark:border-white/5"
>
<span className="text-text-muted">{label}</span>
<span className="max-w-[65%] truncate text-right font-medium text-text-main">
{value}
</span>
</div>
))}
</div>
</Card>
<WhyThisTargetCard replay={explanation.decisionReplay} />
<Card title="Evidence" icon="fact_check">
<div className="flex flex-col gap-2">
{explanation.evidence.map((item) => (
<div
key={item.label}
className="flex items-center justify-between gap-3 rounded-lg bg-black/2 px-3 py-2 text-sm dark:bg-white/2"
>
<span className="text-text-muted">{item.label}</span>
<Badge variant={getToneVariant(item.tone)} size="sm">
{item.value}
</Badge>
</div>
))}
</div>
</Card>
</div>
<div className="flex flex-col gap-6">
<Card
title="Routing factors"
subtitle="Weighted signals used for this explanation"
icon="schema"
>
<div className="grid gap-3 lg:grid-cols-2">
{explanation.decision.factors.map((factor) => (
<FactorCard key={factor.name} factor={factor} />
))}
</div>
</Card>
<Card
title="Fallback and target timeline"
subtitle="Inferred from persisted call logs around this request"
icon="timeline"
>
<TargetTimeline targets={explanation.relatedTargets} />
</Card>
<div className="grid gap-6 lg:grid-cols-2">
<Card title="Recommendations" icon="tips_and_updates">
<ul className="flex flex-col gap-2 text-sm text-text-muted">
{explanation.recommendations.map((item) => (
<li key={item} className="flex items-start gap-2">
<span className="material-symbols-outlined mt-0.5 text-[16px] text-primary">
check_circle
</span>
<span>{item}</span>
</li>
))}
</ul>
</Card>
<Card title="Limitations" icon="info">
{explanation.limitations.length > 0 ? (
<ul className="flex flex-col gap-2 text-sm text-text-muted">
{explanation.limitations.map((item) => (
<li key={item} className="flex items-start gap-2">
<span className="material-symbols-outlined mt-0.5 text-[16px] text-warning">
info
</span>
<span>{item}</span>
</li>
))}
</ul>
) : (
<div className="text-sm text-text-muted">
No known limitations for this explanation.
</div>
)}
</Card>
</div>
</div>
</div>
) : null}
</div>
);
}
|