← Back to context

Comment by applicative

6 days ago

What you are saying, if I follow, is that LLMs basically worthless: it turns out that coding is so simple that verifiable rewards can tune weights surprisingly well for that one peculiar task. ('agentic' is fancy word for letting them run what they write - not to put too fine a point on it.)

You've made the most damning remark against Planet LLM I've read.

Most of what's impressed me in working with LLMs is just how much "intelligence" you can get out of the agent iteratively refining something it looks back at with each turn, without its ever actually exhibiting human-level intelligence. I've always been an embodied-cognition guy, and it really seems to me like "agent harnesses" are basically task-specific pseudo-embodiments for LLMs.

LLMs are essentially a text prediction engine. This can be used for basic reasoning tasks, however the LLM doesn't have much in the way of actual knowledge. However, it can use knowledge that exists to predict text better. For instance, if you plug a bunch of scientific articles into it, it will be really good at answering questions about the subject of those articles.

The problem is that context windows are very short. 200k-1M tokens or so. This means that the model needs to focus down on very specific information if possible. This is what makes tool using, reasoning, and agentic AI very powerful. The model can find the most relevant information it needs within its limited context and generate relevant answers to questions. The LLM pulls from web searches, documentation, long term memories in graph databases, and database queries to answer the questions using real information.