fix parameter count

This commit is contained in:
Michael Yang 2025-04-23 16:07:11 -07:00 committed by Ryan Schumacher
parent 49f807737a
commit 8a86190fd4
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

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 {