const STEPS = [ { n: "01", title: "Generate", body: "The agent turns a brand brief into three ad-copy variants: a headline hook, body copy, and a CTA.", }, { n: "02", title: "Judge", body: "A separate LLM-as-judge scores each variant 1-5 on four dimensions: hook strength, brand alignment, clarity, and conversion intent.", }, { n: "03", title: "Remember", body: "Outputs scoring >= 4.0 are promoted into a golden dataset and a vector memory; weak ones (< 2.5) get flagged for review.", }, { n: "04", title: "Improve & guard", body: "Future runs retrieve those winners as few-shot examples, so quality compounds, and a regression gate blocks any prompt change that drops golden scores.", }, ]; export function HowItWorks() { return (

How it works

{STEPS.map((s) => (
{s.n} {s.title}

{s.body}

))}
); }