import { CHAT_MODELS } from "@/lib/config/types"; import { ModelList } from "./ModelList"; import { ChatModelsProps } from "../types"; export const ChatModels = ({ config }: ChatModelsProps) => { if (!config) return null; return ( ); }