import { Card, CardContent, CardHeader, CardTitle, } from "@/src/components/ui/card"; import { Badge } from "@/src/components/ui/badge"; type MatchedModelCardProps = { projectId: string; model: { id: string; modelName: string; matchPattern: string; projectId: string | null; }; pricingTierId: string; }; export type { MatchedModelCardProps }; export function MatchedModelCard({ model }: MatchedModelCardProps) { const isLangfuseModel = !model.projectId; return ( Matched Model
{model.modelName} {isLangfuseModel && ( Langfuse )}
Pattern:
{model.matchPattern}
); }