import ast from pathlib import Path def _load_remove_special_tokens(): # Extract remove_special_tokens without importing unsloth (importing unsloth # needs unsloth_zoo / a GPU). The function is pure Python and uses no imports, # so it execs cleanly in an empty namespace. source = Path(__file__).parents[2] / "unsloth" / "chat_templates.py" tree = ast.parse(source.read_text(encoding = "utf-8")) funcs = [ node for node in tree.body if isinstance(node, ast.FunctionDef) and node.name == "remove_special_tokens" ] namespace = {} module = ast.Module(body = funcs, type_ignores = []) ast.fix_missing_locations(module) exec(compile(module, str(source), "exec"), namespace) return namespace["remove_special_tokens"] class _StubTokenizer: def __init__(self, bos_token): self.bos_token = bos_token def test_no_bos_tokenizer_does_not_crash(): # Tokenizers such as Qwen2 / Qwen2.5, GPT-2, Falcon and GPT-NeoX have no BOS # token, so tokenizer.bos_token is None. remove_special_tokens must leave the # prompt untouched instead of raising # "TypeError: startswith first arg must be str or a tuple of str, not NoneType". remove_special_tokens = _load_remove_special_tokens() assert remove_special_tokens(_StubTokenizer(None), "Hello world") == "Hello world" def test_double_bos_is_stripped(): # A tokenizer with a BOS token still has a single leading BOS removed. remove_special_tokens = _load_remove_special_tokens() assert remove_special_tokens(_StubTokenizer(""), "Hello world") == "Hello world" def test_prompt_without_leading_bos_unchanged(): # A BOS-bearing tokenizer leaves a prompt that does not start with BOS alone. remove_special_tokens = _load_remove_special_tokens() assert remove_special_tokens(_StubTokenizer(""), "Hello world") == "Hello world"