Added a way to take the default special token list

This commit is contained in:
Christian Risi 2025-10-04 19:43:02 +02:00
parent 8f5e2f2f0d
commit 3b274ad807

View File

@ -0,0 +1,4 @@
from ..Enums import SpecialToken
def default_special_tokens() -> list[str]:
return [token.value for token in SpecialToken]