From b16ce9a0b4edc244a6fd898ad27fdf1a2c9d1a33 Mon Sep 17 00:00:00 2001 From: RangerUFO Date: Tue, 18 Mar 2025 16:52:38 +0800 Subject: [PATCH] Fix the prompt wrapping of gemma3-1b --- gemma/common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemma/common.cc b/gemma/common.cc index 0d8977b..6d3a732 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 };