mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Refactor(setting-model): Refactor the model management interface and optimize the component structure. #10703 ### Type of change - [x] Refactoring
28 lines
770 B
TypeScript
28 lines
770 B
TypeScript
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 (
|
|
<div className="flex flex-col w-full">
|
|
<div className="text-text-primary text-2xl mb-4 mt-4">Added models</div>
|
|
{llmList.map((llm) => {
|
|
return (
|
|
<ModelProviderCard
|
|
key={llm.name}
|
|
item={llm}
|
|
clickApiKey={handleAddModel}
|
|
handleEditModel={handleEditModel}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
};
|