import { AlertCircle, Settings } from "lucide-react"; import Link from "next/link"; import { Alert, AlertDescription, AlertTitle } from "@/src/components/ui/alert"; interface NoModelConfiguredAlertProps { projectId: string; } export function NoModelConfiguredAlert({ projectId, }: NoModelConfiguredAlertProps) { return (
No Model Configured To use the playground, you need to configure a model first. Go to{" "} LLM Connection Settings {" "} to add an LLM API key and configure your models.
); }