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