import { useDashboard } from "@/lib/dashboard" import { Badge } from "@/components/ui/badge" export function TopBar() { const { params, result, running } = useDashboard() return (

Tiny Trigger

{running ? ( <> running ) : ( "idle" )}

Open-vocabulary video automations · detect → validate rules → dispatch

{params.modelName} webhooks {params.enableWebhooks ? "live" : "off"} {result && ( {result.status === "fired" ? `${result.stats.actions} fired` : "no match"} )}
) }