convert: return name of unsupported architecture (#9862)

When a model's architecture cannot be converted return the name of the unsupported arch in the error message.
This commit is contained in:
Bruce MacDonald 2025-03-18 10:38:28 -07:00 committed by GitHub
parent 021dcf089d
commit 61a8825216
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,7 +201,7 @@ func ConvertModel(fsys fs.FS, ws io.WriteSeeker) error {
case "CohereForCausalLM":
conv = &commandrModel{}
default:
return errors.New("unsupported architecture")
return fmt.Errorf("unsupported architecture %q", p.Architectures[0])
}
if err := json.Unmarshal(bts, conv); err != nil {