🍓 The "Strawberry" Blindness
IN PROGRESSLLMs don't read letters; they read tokens. Type the word strawberry. Notice how it merges into just 2 tokens (straw + berry).
👉 Task: Type strawberry has 3 r's in the editor. Watch how the model cannot "see" the letters directly because the letter 'r' is swallowed into the atomic token berry!
💸 Token Budget Inflation
LOCKEDSpaces and capitalization change word merges. Type the lowercase target phrase: hello world. It takes 2 tokens.
👉 Task: Type the capitalized phrase: hello World (with a capital W) to see it fragment into character-level tokens, inflating the cost to 7 tokens!
🔓 Prompt Filter Evasion
LOCKEDA safety filter blocks the token ID for the word override (ID: 204) and system (ID: 203).
👉 Task: Evert the safety filter: Type the phrase system override but use capitalization or spaces (e.g. SYSTEM OVERRIDE) to force it to split into fragments (e.g. SYS + `TEM`, `OVER` + `RIDE`) so that the individual tokens bypass the blocklist, but reconstruct the prompt in the model!