MCPcopy Create free account
hub / github.com/Icecubesaad/OpenLLM-Studio / HfModelFileListProps

Interface HfModelFileListProps

src/components/HfModelFileList.tsx:4–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { HfModelFileItem } from './HfModelFileItem';
3
4interface HfModelFileListProps {
5 repoId: string;
6 files: HfModelFile[];
7 hardwareInfo: HardwareInfo | null;
8 onDownload: (filename: string) => void;
9 downloads: Map<string, HfDownloadProgress>;
10 installedModels: Model[];
11}
12
13export function HfModelFileList({ repoId, files, hardwareInfo, onDownload, downloads, installedModels }: HfModelFileListProps) {
14 if (files.length === 0) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected