import { LlmItem, useSelectLlmList } from '@/hooks/llm-hooks'; import { ModelProviderCard } from './modal-card'; export const UsedModel = ({ handleAddModel, handleEditModel, }: { handleAddModel: (factory: string) => void; handleEditModel: (model: any, factory: LlmItem) => void; }) => { const { factoryList, myLlmList: llmList, loading } = useSelectLlmList(); return (
Added models
{llmList.map((llm) => { return ( ); })}
); };