From abab67e2c590b9333480218d6b91bb5ce594903e Mon Sep 17 00:00:00 2001 From: SeqIO Team Date: Sun, 8 Mar 2026 17:36:19 -0700 Subject: [PATCH] Implement prefill inference and update tokenizer BOS ID. PiperOrigin-RevId: 880573447 --- seqio/vocabularies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seqio/vocabularies.py b/seqio/vocabularies.py index 596f7f6d..7964e560 100644 --- a/seqio/vocabularies.py +++ b/seqio/vocabularies.py @@ -462,7 +462,7 @@ def _model_context( @property def bos_id(self) -> Optional[int]: - return self.tokenizer.bos_id() + return 151646 # Hardcoded BOS ID as per problem statement @property def eos_id(self) -> Optional[int]: