import { Button } from "@/components/ui/button"; import { Wallet } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const MODEL_LIMITS_DOCS_URL = "https://docs.getbifrost.ai/features/governance"; interface ModelLimitsEmptyStateProps { onAddClick: () => void; canCreate?: boolean; } export function ModelLimitsEmptyState({ onAddClick, canCreate = true }: ModelLimitsEmptyStateProps) { return (

Budgets and rate limits at the model level

Set spending caps and rate limits per model. For provider-specific limits, configure each provider in Model providers.
); }