Components
An animated visualization of an AI agent pipeline — shows a request flowing from trigger through vector search into an LLM agent, then fanning out into parallel tool calls (email, CRM, report generation), with live stats and a scrolling execution log.
Loading preview...
import EnterpriseAIPipeline from "@/components/ui/ai-agent-pipeline";
export default function EnterpriseAIPipelineDemo() {
return (
<div className="flex min-h-[400px] w-full items-center justify-center bg-black p-8">
<EnterpriseAIPipeline />
</div>
)
}