"use client"; import { motion } from 'framer-motion'; import { Plus, Search, GripVertical, Settings2, Trash2 } from 'lucide-react'; const mockTargets = [ { id: 1, term: 'ThinkPad T14 Gen 3', maxPrice: 600, weight: 1.5, status: 'active' }, { id: 2, term: 'RTX 3080', maxPrice: 350, weight: 2.0, status: 'active' }, { id: 3, term: 'iPhone 12 Pro Unlocked', maxPrice: 200, weight: 1.0, status: 'paused' }, ]; export default function KeywordsPage() { return (

TARGET_VECTORS

Define what the AI agents should hunt for.

ORDER
SEARCH_TERM
MAX_PRICE
PRIORITY
ACTIONS
{mockTargets.map((target, i) => (
{target.term}
${target.maxPrice}
{target.weight}x
))}

AI_FILTERING_TEMPLATE

You can define a natural language description for the LLM to verify against. e.g. "Item must not be broken. Must include power cable. Ignore 'box only' listings."

// Enter custom instructions for the Analyst Agent here...
); }