import { Bot } from "lucide-react" export default function AgentWindow({ title, children }: { title: string; children: React.ReactNode }) { return (
Tool called: {title}
{children}
) }