From d1615b56b2549835a27929f04ca6e48c22267a13 Mon Sep 17 00:00:00 2001 From: RangerUFO Date: Wed, 26 Mar 2025 18:27:09 +0800 Subject: [PATCH] Fix the prompt wrapping of gemma3-1b again It seems that the previous fix was changed back due to a merge error. --- gemma/common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemma/common.cc b/gemma/common.cc index dec9781..2128159 100644 --- a/gemma/common.cc +++ b/gemma/common.cc @@ -80,7 +80,7 @@ constexpr PromptWrapping kPromptWrapping[] = { PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 3B 224/448 PromptWrapping::PALIGEMMA, PromptWrapping::PALIGEMMA, // PG2 10B 224/448 PromptWrapping::GEMMA_VLM, // Gemma3 4B - PromptWrapping::GEMMA_PT, // Gemma3 1B + PromptWrapping::GEMMA_IT, // Gemma3 1B PromptWrapping::GEMMA_VLM, // Gemma3 12B PromptWrapping::GEMMA_VLM, // Gemma3 27B };