From 4a0f90ec383941e2f87a344617cbe9fb3f9c18c1 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Wed, 17 Dec 2025 15:29:55 -0800 Subject: [PATCH] Apply suggestion from @ParthSareen Co-authored-by: Parth Sareen --- convert/tokenizer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert/tokenizer.go b/convert/tokenizer.go index ccacbda85..c89f9e315 100644 --- a/convert/tokenizer.go +++ b/convert/tokenizer.go @@ -249,7 +249,7 @@ func parseVocabularyFromTokenizer(fsys fs.FS) (*Vocabulary, error) { } model := "gpt2" - if t.Decoder.Type == "SentencePiece" { + if t.Decoder.Type == "Sequence" { model = "llama" }