import { FileText, Database, Tag } from "lucide-react"; export function ProblemCards() { return (
{/* Card 1 */}

System prompt overflow

Stuffing history into the system prompt works for a demo. In production, token limits are hit in week 2.

{/* Card 2 */}

Vector search alone

Standard RAG gives you text chunks with no time order and no structural relationships between entities.

{/* Card 3 */}

Metadata tags

Relying on hardcoded JSON metadata tags breaks down as your application scales and relationships become complex.

); }