``` const tokenizer = new GPT3Tokenizer({ type: 'gpt3' }); tokenizer.encode('toString') ``` will fail. This is because `tokenizer.bpe('toString')` returns the javascript function `toString()` instead of an actual string representing the token.