in Sources/Tokenizers/Decoder.swift [226:234]
func decode(tokens: [String]) -> [String] {
var replaced = tokens.map { token in
token.replacingOccurrences(of: replacement, with: " ")
}
if addPrefixSpace, replaced.first?.starts(with: " ") ?? false {
replaced[0].removeFirst()
}
return replaced
}