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

Interface HfModelCardProps

src/components/HfModelCard.tsx:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import { formatTimestamp } from '../lib/utils';
3
4interface HfModelCardProps {
5 model: HfModel;
6 onSelect: () => void;
7 isSelected: boolean;
8}
9
10export function HfModelCard({ model, onSelect, isSelected }: HfModelCardProps) {
11 const hasStrongQuant = model.tags.some((tag) => /q5|q6|q8|q4_k_m/i.test(tag));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected