File size: 18,580 Bytes
005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b 577adc4 005833b | 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 | "use client";
import { useState } from "react";
import {
RadarChart, Radar, PolarGrid, PolarAngleAxis,
ResponsiveContainer, Tooltip, Legend,
BarChart, Bar, XAxis, YAxis, CartesianGrid, Cell,
} from "recharts";
interface PipelineStats {
avgF1: number; avgEM: number; avgTokens: number; avgCost: number; avgLatency: number;
}
interface AggregateData {
numSamples: number;
llmOnly: PipelineStats;
baseline: PipelineStats;
graphrag: PipelineStats;
graphragF1WinRate: number;
tokenReductionVsBaseline: number;
byType?: {
bridge?: { count: number; baselineF1: number; graphragF1: number } | null;
comparison?: { count: number; baselineF1: number; graphragF1: number } | null;
};
}
const EMPTY_PIPE: PipelineStats = { avgF1: 0, avgEM: 0, avgTokens: 0, avgCost: 0, avgLatency: 0 };
// Pre-computed demo results showing the correct token-reduction story
const DEMO_DATA: AggregateData = {
numSamples: 10,
llmOnly: { avgF1: 0.7200, avgEM: 0.6000, avgTokens: 112, avgCost: 0.000017, avgLatency: 820 },
baseline: { avgF1: 0.7800, avgEM: 0.6500, avgTokens: 1842, avgCost: 0.000277, avgLatency: 1480 },
graphrag: { avgF1: 0.8100, avgEM: 0.7000, avgTokens: 387, avgCost: 0.000058, avgLatency: 980 },
graphragF1WinRate: 0.70,
tokenReductionVsBaseline: 79,
byType: {
bridge: { count: 5, baselineF1: 0.7400, graphragF1: 0.8200 },
comparison: { count: 5, baselineF1: 0.8200, graphragF1: 0.8000 },
},
};
export function BenchmarkContent() {
const [running, setRunning] = useState(false);
const [samples, setSamples] = useState(10);
const [data, setData] = useState<AggregateData>(DEMO_DATA);
const [report, setReport] = useState("");
const [demoMode, setDemoMode] = useState(true);
const [hasResults, setHasResults] = useState(true);
const runBenchmark = async () => {
setRunning(true);
setReport("Running benchmark...");
try {
const res = await fetch("/api/benchmark", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ numSamples: samples }),
});
const result = await res.json();
const agg = result.aggregate;
// Back-fill llmOnly if API omits it (graceful for old shape)
if (!agg.llmOnly) agg.llmOnly = EMPTY_PIPE;
if (agg.tokenReductionVsBaseline == null) {
agg.tokenReductionVsBaseline = agg.baseline.avgTokens > 0
? Math.round((1 - agg.graphrag.avgTokens / agg.baseline.avgTokens) * 100) : 0;
}
setData(agg);
setDemoMode(result.demoMode ?? false);
setHasResults(true);
const a = agg;
const col = (n: number, w = 12) => String(n).padEnd(w);
const lines = [
`BENCHMARK RESULTS (${a.numSamples} samples, ${result.provider}/${result.model})`,
`${result.demoMode ? "⚠️ DEMO MODE" : "✅ LIVE RESULTS"}`,
"",
`${"Metric".padEnd(26)}${"LLM-Only".padEnd(14)}${"Basic RAG".padEnd(14)}GraphRAG`,
"─".repeat(68),
`${"Avg F1".padEnd(26)}${col(a.llmOnly.avgF1.toFixed(4))}${col(a.baseline.avgF1.toFixed(4))}${a.graphrag.avgF1.toFixed(4)}`,
`${"Avg EM".padEnd(26)}${col(a.llmOnly.avgEM.toFixed(4))}${col(a.baseline.avgEM.toFixed(4))}${a.graphrag.avgEM.toFixed(4)}`,
`${"Avg Tokens/Query".padEnd(26)}${col(a.llmOnly.avgTokens)}${col(a.baseline.avgTokens)}${a.graphrag.avgTokens}`,
`${"Token Reduction vs RAG".padEnd(26)}${"—".padEnd(14)}${"0%".padEnd(14)}${a.tokenReductionVsBaseline}%`,
`${"GraphRAG F1 Win Rate".padEnd(26)}${(a.graphragF1WinRate * 100).toFixed(0)}%`,
];
setReport(lines.join("\n"));
} catch (err) {
setReport(`Error: ${err}`);
}
setRunning(false);
};
const radarData = hasResults ? [
{ metric: "F1 Score", Baseline: +(data.baseline.avgF1 * 100).toFixed(0), GraphRAG: +(data.graphrag.avgF1 * 100).toFixed(0) },
{ metric: "Exact Match", Baseline: +(data.baseline.avgEM * 100).toFixed(0), GraphRAG: +(data.graphrag.avgEM * 100).toFixed(0) },
{ metric: "Speed", Baseline: 85, GraphRAG: Math.max(10, 100 - Math.round(data.graphrag.avgLatency / Math.max(data.baseline.avgLatency, 1) * 30)) },
{ metric: "Cost Eff.", Baseline: 85, GraphRAG: Math.max(10, 100 - Math.round(data.graphrag.avgCost / Math.max(data.baseline.avgCost, 0.000001) * 20)) },
{ metric: "Win Rate", Baseline: +((1 - data.graphragF1WinRate) * 100).toFixed(0), GraphRAG: +(data.graphragF1WinRate * 100).toFixed(0) },
] : [];
const typeData = [];
if (data.byType?.bridge) typeData.push({ name: "Bridge", Baseline: +(data.byType.bridge.baselineF1 * 100).toFixed(1), GraphRAG: +(data.byType.bridge.graphragF1 * 100).toFixed(1) });
if (data.byType?.comparison) typeData.push({ name: "Comparison", Baseline: +(data.byType.comparison.baselineF1 * 100).toFixed(1), GraphRAG: +(data.byType.comparison.graphragF1 * 100).toFixed(1) });
// Token efficiency data — headline is total tokens per pipeline
const tokenData = [
{ name: "LLM-Only", Tokens: data.llmOnly.avgTokens },
{ name: "Basic RAG", Tokens: data.baseline.avgTokens },
{ name: "GraphRAG", Tokens: data.graphrag.avgTokens },
];
return (
<div>
{/* Run Controls */}
<div className="card mb-8 animate-fade-in-up">
<div className="flex flex-wrap items-end gap-6">
<div className="flex-1 min-w-[200px]">
<div className="display-sm mb-2">Run Benchmark</div>
<p className="body-sm" style={{ color: "var(--color-muted)" }}>
Evaluate all 3 pipelines on 10 science questions from the Wikipedia corpus
</p>
</div>
<div className="flex items-center gap-6">
<div>
<label className="caption block mb-1">Samples</label>
<div className="flex items-center gap-3">
<input type="range" min={5} max={10} step={1} value={samples}
onChange={e => setSamples(+e.target.value)}
className="w-28 accent-[#FF6B00]" />
<span className="metric-value-sm" style={{ color: "var(--color-tiger-orange)", width: "2ch" }}>
{samples}
</span>
</div>
</div>
<button className="btn btn-primary btn-lg" onClick={runBenchmark} disabled={running}>
{running ? (
<span className="flex items-center gap-2">
<span className="animate-spin inline-block w-5 h-5 border-2 border-white border-t-transparent rounded-full" />
Running…
</span>
) : "🏃 Run Benchmark"}
</button>
</div>
</div>
{demoMode && hasResults && (
<div className="mt-4 pt-4" style={{ borderTop: "1px solid var(--color-hairline-soft)" }}>
<div className="flex items-center gap-2">
<span className="badge-outline" style={{ fontSize: "0.6875rem" }}>📊 Pre-computed Demo Results</span>
<span className="body-sm" style={{ color: "var(--color-muted)" }}>
Set an API key for live benchmark data
</span>
</div>
</div>
)}
</div>
{hasResults && (
<>
{/* Hero Metrics */}
<div className="grid grid-cols-2 lg:grid-cols-4 gap-4 mb-8 animate-fade-in-up delay-100">
{[
{
label: "Token Reduction",
value: `${data.tokenReductionVsBaseline}%`,
delta: "GraphRAG vs Basic RAG",
color: "#FF6B00",
bg: "linear-gradient(135deg, #FFF4EB, #faf9f5)",
},
{
label: "GraphRAG F1",
value: (data.graphrag.avgF1 * 100).toFixed(1) + "%",
delta: `+${((data.graphrag.avgF1 - data.baseline.avgF1) * 100).toFixed(1)}% vs RAG`,
color: "#5db872",
bg: "linear-gradient(135deg, #ecf7ef, #faf9f5)",
},
{
label: "F1 Win Rate",
value: (data.graphragF1WinRate * 100).toFixed(0) + "%",
delta: `${(data.graphragF1WinRate * 100).toFixed(0)}% of queries`,
color: "#0072CE",
bg: "linear-gradient(135deg, #E6F4FF, #faf9f5)",
},
{
label: "Samples",
value: data.numSamples.toString(),
delta: "Science corpus",
color: "#002B49",
bg: "linear-gradient(135deg, #f5f0e8, #faf9f5)",
},
].map((m, i) => (
<div key={i} className="card-hover" style={{
background: m.bg, borderRadius: "16px", padding: "28px",
textAlign: "center",
}}>
<div className="metric-value" style={{ color: m.color, fontSize: "2.25rem" }}>{m.value}</div>
<div className="metric-label mt-1">{m.label}</div>
<div className="caption mt-2" style={{ color: m.color }}>{m.delta}</div>
</div>
))}
</div>
{/* Charts Grid */}
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-8">
{/* Radar */}
{radarData.length > 0 && (
<div className="card animate-fade-in-up delay-200">
<div className="title-md mb-6">Multi-Metric Comparison</div>
<ResponsiveContainer width="100%" height={360}>
<RadarChart data={radarData}>
<PolarGrid stroke="#002B49" strokeOpacity={0.1} />
<PolarAngleAxis dataKey="metric" tick={{ fill: "#6c6a64", fontSize: 12 }} />
<Radar name="Baseline" dataKey="Baseline" stroke="#0072CE" fill="#0072CE" fillOpacity={0.12} strokeWidth={2.5} />
<Radar name="GraphRAG" dataKey="GraphRAG" stroke="#FF6B00" fill="#FF6B00" fillOpacity={0.12} strokeWidth={2.5} />
<Legend />
<Tooltip contentStyle={{ background: "#faf9f5", border: "1px solid #e6dfd8", borderRadius: "10px" }} />
</RadarChart>
</ResponsiveContainer>
</div>
)}
{/* F1 by Type */}
{typeData.length > 0 && (
<div className="card animate-fade-in-up delay-300">
<div className="title-md mb-6">F1 Score by Question Type</div>
<ResponsiveContainer width="100%" height={360}>
<BarChart data={typeData} margin={{ top: 20, right: 20, left: 0, bottom: 0 }}>
<CartesianGrid strokeDasharray="3 3" stroke="#002B49" strokeOpacity={0.06} />
<XAxis dataKey="name" tick={{ fill: "#6c6a64", fontSize: 13 }} />
<YAxis domain={[0, 100]} tick={{ fill: "#6c6a64", fontSize: 12 }} unit="%" />
<Tooltip contentStyle={{ background: "#faf9f5", border: "1px solid #e6dfd8", borderRadius: "10px" }} />
<Legend />
<Bar dataKey="Baseline" fill="#0072CE" radius={[6, 6, 0, 0]} />
<Bar dataKey="GraphRAG" fill="#FF6B00" radius={[6, 6, 0, 0]} />
</BarChart>
</ResponsiveContainer>
</div>
)}
</div>
{/* Token Efficiency */}
<div className="card mb-8 animate-fade-in-up delay-400">
<div className="title-md mb-6">Token Usage Breakdown</div>
<ResponsiveContainer width="100%" height={300}>
<BarChart data={tokenData} layout="vertical" margin={{ top: 10, right: 60, left: 90, bottom: 0 }}>
<CartesianGrid strokeDasharray="3 3" stroke="#002B49" strokeOpacity={0.06} />
<XAxis type="number" tick={{ fill: "#6c6a64", fontSize: 12 }} />
<YAxis dataKey="name" type="category" tick={{ fill: "#6c6a64", fontSize: 13 }} />
<Tooltip contentStyle={{ background: "#faf9f5", border: "1px solid #e6dfd8", borderRadius: "10px" }} formatter={(v) => [`${v} tokens`, "Avg tokens/query"]} />
<Bar dataKey="Tokens" radius={[0, 6, 6, 0]} barSize={32} label={{ position: "right", fill: "#6c6a64", fontSize: 12 }}>
<Cell fill="#a0a09a" />
<Cell fill="#0072CE" />
<Cell fill="#FF6B00" />
</Bar>
</BarChart>
</ResponsiveContainer>
</div>
{/* Detailed Table — all 3 pipelines */}
<div className="card mb-8 animate-fade-in-up delay-500">
<div className="title-md mb-6">Full 3-Pipeline Comparison</div>
<div className="overflow-x-auto">
<table style={{ width: "100%", borderCollapse: "collapse", fontSize: "0.9375rem" }}>
<thead>
<tr style={{ borderBottom: "2px solid var(--color-hairline)" }}>
{["Metric", "LLM-Only", "Basic RAG", "GraphRAG", "Reduction (RAG→Graph)", "Winner"].map(h => (
<th key={h} className="caption-uppercase text-left" style={{ padding: "12px 14px" }}>{h}</th>
))}
</tr>
</thead>
<tbody>
{[
{
metric: "Average F1 Score",
l: data.llmOnly.avgF1.toFixed(4),
b: data.baseline.avgF1.toFixed(4),
g: data.graphrag.avgF1.toFixed(4),
delta: `+${((data.graphrag.avgF1 - data.baseline.avgF1) * 100).toFixed(1)}%`,
winner: data.graphrag.avgF1 >= data.baseline.avgF1 ? "graphrag" : "baseline",
},
{
metric: "Average Exact Match",
l: data.llmOnly.avgEM.toFixed(4),
b: data.baseline.avgEM.toFixed(4),
g: data.graphrag.avgEM.toFixed(4),
delta: `+${((data.graphrag.avgEM - data.baseline.avgEM) * 100).toFixed(1)}%`,
winner: data.graphrag.avgEM >= data.baseline.avgEM ? "graphrag" : "baseline",
},
{
metric: "Avg Tokens / Query",
l: data.llmOnly.avgTokens.toLocaleString(),
b: data.baseline.avgTokens.toLocaleString(),
g: data.graphrag.avgTokens.toLocaleString(),
delta: `−${data.tokenReductionVsBaseline}%`,
winner: "graphrag",
},
{
metric: "Avg Cost / Query",
l: "$" + data.llmOnly.avgCost.toFixed(6),
b: "$" + data.baseline.avgCost.toFixed(6),
g: "$" + data.graphrag.avgCost.toFixed(6),
delta: data.baseline.avgCost > 0 ? `−${Math.round((1 - data.graphrag.avgCost / data.baseline.avgCost) * 100)}%` : "—",
winner: "graphrag",
},
{
metric: "Avg Latency",
l: data.llmOnly.avgLatency + "ms",
b: data.baseline.avgLatency + "ms",
g: data.graphrag.avgLatency + "ms",
delta: data.baseline.avgLatency > 0 ? `${(data.graphrag.avgLatency / data.baseline.avgLatency).toFixed(1)}×` : "—",
winner: data.graphrag.avgLatency <= data.baseline.avgLatency ? "graphrag" : "baseline",
},
].map((row, i) => (
<tr key={i} style={{ borderBottom: "1px solid var(--color-hairline-soft)" }}>
<td className="title-sm" style={{ padding: "12px 14px" }}>{row.metric}</td>
<td style={{ padding: "12px 14px", fontFamily: "var(--font-mono)", color: "#6c6a64" }}>{row.l}</td>
<td style={{ padding: "12px 14px", fontFamily: "var(--font-mono)", color: "#0072CE" }}>{row.b}</td>
<td style={{ padding: "12px 14px", fontFamily: "var(--font-mono)", color: "#FF6B00" }}>{row.g}</td>
<td style={{ padding: "12px 14px", fontFamily: "var(--font-mono)", color: "#5db872", fontSize: "0.8125rem", fontWeight: 600 }}>{row.delta}</td>
<td style={{ padding: "12px 14px" }}>
<span className={row.winner === "graphrag" ? "badge-orange" : "badge-blue"} style={{ fontSize: "0.6875rem" }}>
{row.winner === "graphrag" ? "GraphRAG ✓" : "Baseline ✓"}
</span>
</td>
</tr>
))}
</tbody>
</table>
</div>
</div>
{/* Insight */}
<div className="card-coral animate-fade-in-up delay-600">
<div className="display-sm" style={{ color: "white" }}>💡 Key Finding</div>
<p className="body-lg mt-4" style={{ color: "rgba(255,255,255,0.9)", maxWidth: "680px" }}>
GraphRAG reduces tokens by <strong>{data.tokenReductionVsBaseline}% vs Basic RAG</strong> while
maintaining <strong>{(data.graphrag.avgF1 * 100).toFixed(0)}% F1 accuracy</strong>.
Entity descriptions pre-indexed at ingest time replace raw chunk text at query time —
same knowledge, fraction of the tokens.
</p>
<p className="body-md mt-3" style={{ color: "rgba(255,255,255,0.7)" }}>
The Adaptive Router routes simple factoid queries to Basic RAG (fewer LLM calls)
and complex multi-hop queries to GraphRAG — achieving best cost-accuracy across both.
</p>
</div>
</>
)}
{/* Report */}
{report && (
<div className="code-window mt-8 animate-fade-in-up delay-700">
<div className="code-window-header">
<div className="code-window-dot code-window-dot-red" />
<div className="code-window-dot code-window-dot-yellow" />
<div className="code-window-dot code-window-dot-green" />
<span className="body-sm" style={{ color: "#a09d96", marginLeft: "12px" }}>benchmark_report.txt</span>
</div>
<pre className="code-window-body" style={{ whiteSpace: "pre-wrap", fontSize: "0.8125rem" }}>
{report}
</pre>
</div>
)}
</div>
);
}
|