Currently, we have to do ```python ids = [tokenizer.token_to_id(token) for token in tokens] ``` Would be nice if this was all in Rust, and we can just do ```python ids = tokenizer.tokens_to_ids(tokens) ``` Even better if we just have a `tokens_to_texts` API.