'use client'; import { Reveal } from '@/components/ui/Reveal'; import { SectionHeader } from '@/components/ui/SectionHeader'; import { Card } from '@/components/ui/Card'; const METRICS = [ { label: 'Word Error Rate', value: '27.3%', note: 'Whisper transcription benchmark', }, { label: 'Diarization Error Rate', value: '0.0%', note: 'Speaker segmentation accuracy', }, { label: 'Role Classification', value: '100%', note: 'Agent vs customer labeling', }, { label: 'Lead Scoring Accuracy', value: '66.7%', note: 'XGBoost conversion model', }, { label: 'Sentiment Label Accuracy', value: '100%', note: 'Dominant sentiment classification', }, ]; const RUNTIME = [ { label: 'Benchmark runtime', value: '9.7s' }, { label: 'Peak memory', value: '536 MB' }, { label: 'Source', value: 'sprint5_benchmark_report.json' }, ]; export function PerformanceSection() { return (
{METRICS.map((metric, index) => (

{metric.label}

{metric.value}

{metric.note}

))}

Benchmark execution

{RUNTIME.map((item) => (
{item.label}
{item.value}
))}
); }