Nobody downloads the whole internet. This is how a frontier lab turns the open web into a small, clean pile of text a model can actually learn from — one step at a time, with the trade-offs you can play with.
You can't crawl the whole web on a fixed budget — so before fetching anything, a lab ranks domains by authority and keeps only the top slice.
A crawled page looks big, but almost none of it is prose a model can learn from. This is one real 104.6 KB page, every rectangle sized by its bytes.
Node 2 showed how little of a page is text. This is the machine that extracts that text and turns it into something a GPU can train on — fast.
.bin that streams straight from disk (NVMe) into GPU memory (VRAM), with no re-parsing.Scraping public pages is broadly legal in the US, but sites still control AI crawlers with one file — robots.txt. It's a gate keyed on the crawler's name.
GPTBot, ClaudeBot, OAI-SearchBot. The gate matches it against the rules.A trained model's weights are frozen. Retraining for the news would cost weeks and millions — so fresh facts get in a completely different way: retrieval.
Attackers hide instructions inside a page — white-on-white text, HTML comments, invisible characters. You don't see them; the model does.
The uncurated web stream is flowing — but web text is thin on reasoning. Next, domain-specific source selection: mixing in code, papers, books and Q&A, and the specialised extraction each one needs.