LLMs

5 articles tagged “LLMs”.

Code mode is batched retrieval

Hornet held the retriever, model and corpus fixed and swapped the harness from one tool call per turn to one Python program per turn. Recall went up 65%, tokens down 51%. Strip the new vocabulary and the win isn't Python - it's that retrieval was finally allowed to fan out.

Retrieval inside an LLM is still retrieval

Open Perplexity, run a query, look at the Sources panel. The architecture is recognisable: retrieve, rerank, summarise, cite. The system has moved; the engineering hasn’t. A bridge piece between the observational posts and the next phase of this series.

SID-1: Train the loop, keep the index

SID AI’s SID-1 is the first retrieval model trained end-to-end with RL. Some observations through a search-and-IR lens: the middle of the retrieval pipeline collapses into one trained model, the NDCG reward gets deliberately bent toward recall, and the agentic-retrieval loop becomes a subagent you hand to a larger system.

The harness is mostly retrieval

Laurie Voss says applied-AI iteration has moved off the model and into "the harness". He’s right - and once you strip the new vocabulary, the harness is mostly a retrieval system.