fix parameter count

This commit is contained in:
Michael Yang 2025-04-23 16:07:11 -07:00 committed by Michael Yang
parent a0dba0f8ae
commit ced7d0e53d

View File

@ -33,7 +33,7 @@ func (kv KV) Kind() string {
}
func (kv KV) ParameterCount() uint64 {
return keyValue[uint64](kv, "general.parameter_count")
return keyValue(kv, "general.parameter_count", uint64(0))
}
func (kv KV) FileType() fileType {