Fix the quantized mistral example. (#1478)

This commit is contained in:
Laurent Mazare
2023-12-25 09:31:24 +01:00
committed by GitHub
parent 88589d8815
commit 7135791dd5
2 changed files with 14 additions and 4 deletions

View File

@ -41,7 +41,7 @@ impl VersionedMagic {
(Magic::Gguf, 1) => Self::GgufV1,
(Magic::Gguf, 2) => Self::GgufV2,
(Magic::Gguf, 3) => Self::GgufV3,
_ => crate::bail!("ggml: unsupported magic/version {magic:?}/{version}"),
_ => crate::bail!("gguf: unsupported magic/version {magic:?}/{version}"),
};
Ok(versioned_magic)
}