// import { // ArrowRight, // Clock, // Database, // Info, // Link, // Settings, // Sliders, // Trash2, // } from "lucide-react"; // import { Badge } from "../ui/badge"; // import { Button } from "../ui/button"; // import { // Card, // CardContent, // CardDescription, // CardFooter, // CardHeader, // CardTitle, // } from "../ui/card"; // interface ModelCardProps { // model: { // id: string; // name: string; // type: string; // // hyperparameters: { // // [key: string]: string; // // }; // // dataSource: string; // status: string; // // lastUpdated: string; // // isSystem: boolean; // }; // } // export function ModelCard({ model }: ModelCardProps) { // return ( // // //
// {model.name} // // {model.status === "active" ? "Active" : "Inactive"} // //
// {model.type} Model //
// //
//
//
// // Data Source: //
// {model.isSystem ? ( //
// // System Base Model // // // // //
// ) : ( // {model.dataSource} // )} //
//
//
// // Hyperparameters: //
//
// {Object.entries(model.hyperparameters).map(([key, value]) => ( //
// {key}: // {value} //
// ))} //
//
//
// // Last updated: // {model.lastUpdated} //
//
//
// // //
// // {!model.isSystem && ( // // )} // //
//
//
// ); // }