#ifndef __SD_TOKENIZERS_BPE_TOKENIZE_UTIL_H__ #define __SD_TOKENIZERS_BPE_TOKENIZE_UTIL_H__ #include #include std::vector token_split(const std::string& text); std::vector split_with_special_tokens(const std::string& text, const std::vector& special_tokens); #endif // __SD_TOKENIZERS_BPE_TOKENIZE_UTIL_H__