import { Card, CardContent, CardHeader, CardTitle, } from "@/src/components/ui/card"; import { AlertCircle } from "lucide-react"; type NoMatchDisplayProps = { modelName: string; }; export type { NoMatchDisplayProps }; export function NoMatchDisplay({ modelName }: NoMatchDisplayProps) { return ( No Match Found

No model configuration matches "{modelName}" in this project.

Suggestions:

  • Check your model name spelling
  • View existing models and their match patterns
  • Create a new model definition
); }