import type { ModelInfo } from "@/lib/api"; type Props = { models: ModelInfo[]; activeId: string | null; loading: boolean; onPick: (id: string) => void; }; export default function ModelPicker({ models, activeId, loading, onPick }: Props) { return (
model
); }