The tokenizer and greedy output produce integer IDs. Those IDs are the exact discrete spine inside the captured run.
Tokens are still exact
The prompt becomes token IDs [7454, 2402, 257, 640]. These are integer tokenizer outputs, not rounded magnitudes.
[7454,2402,257,640]
Greedy output IDs
The greedy run appends IDs 11, 612, and 373. The resulting text is the captured string shown in the panel.
append 11,612,373
Summary
This is the same discrete-token spine as the tokenization book, now from a real tokenizer and real greedy run. The integer IDs remain bit-exact.
token IDs are exact integers