6 ms·
Skimmed the repo, this is basically the irreducible core of an agent: small loop, provider abstraction, tool dispatch, and chat gateways . The LOC reduction (99
by johaugum 7mo ago
Skimmed the repo, this is basically the irreducible core of an agent: small loop, provider abstraction, tool dispatch, and chat gateways . The LOC reduction (99%, from 400k to 4k) mostly comes from leaving out RAG pipelines, planners, multi-agent orchestration, UIs, and production ops.
- baby 7mo agoRAG seems odd when you can just have a coding agent manage memory by managing folders. Multi agent also feels weird when you have subagents.
- antirez 7mo agoTotally useless indeed.
- rando77 7mo agoI've been leaning towards multi agent because sub agent relies on the main agent having all the power and using it responsibly.
- andai 7mo agoWhat does that mean?
- rando77 7mo agoHave you come across the lethal trifecta [1]? I'm interested in decomposing tasks to avoid any agent doing all three and having limited data pipes between them. [1] https://simonwillison.net/2025/Jun/16/the-lethal-trifecta/ https://simonwillison.net/2025/Jun/16/the-lethal-trifecta/
- PlatoIsADisease 7mo agoInteresting. I guess RAG is faster? But I'm realizing I'm outdated now.
- lxgr 7mo agoNo, RAG is definitely preferable once your memory size grows above a few hundred lines of text (which you can just dump into the context for most current models), since you're no longer fighting context limits and needle-in-a-haystack LLM retrieval performance problems.
- Aurornis 7mo ago> once your memory size grows above a few hundred lines of text (which you can just dump into the context for most current models) A few hundred lines of text is nothing for current LLMs. You can dump the entire contents of The Great Gatsby into any of the frontier LLMs and it’s only around 70K tokens. This is less than 1/3 of common context window sizes. That’s even true for models I run locally on modest hardware now. The days of chunking everything into paragraphs or pages and building complex workflows to store embeddings, search, and rerank in a big complex pipeline are going away for many common use cases. Having LLMs use simpler tools like grep based on an array of similar search terms and then evaluating what comes up is faster in many cases and doesn’t require elaborate pipelines built around specific context lengths.
- deleted 7mo ago[deleted]
- lxgr 7mo agoYes, but how good will the recall performance be? Just because your prompt fits into context doesn't mean that the model won't be overwhelmed by it. When I last tried this with some Gemini models, they couldn't reliably identify specific scenes in a 50K word novel unless I trimmed down the context to a few thousands of words. > Having LLMs use simpler tools like grep based on an array of similar search terms and then evaluating what comes up is faster in many cases Sure, but then you're dependent on (you or the model) picking the right phrases to search for. With embeddings, you get much better search performance.
- Aurornis 7mo ago
- simonw 7mo agoYeah, vector embeddings based RAG has fallen out of fashion somewhat. It was great when LLMs had 4,000 or 8,000 token context windows and the biggest challenge was efficiently figuring out the most likely chunks of text to feed into that window to answer a question. These days LLMS all have 100,000+ context windows, which means you don't have to be nearly as selective. They're also exceptionally good at running search tools - give them grep or rg or even `select * from t where body like ...` and they'll almost certainly be able to find the information they need after a few loops. Vector embeddings give you fuzzy search, so "dog" also matches "puppy" - but a good LLM with a search tool will search for "dog" and then try a second search for "puppy" if the first one doesn't return the results it needs.
- y1n0 7mo agoContext rot is still a problem though, so maybe vector search will stick around in some form. Perhaps we will end up with a tool called `vector grep` or `vg` that handles the vectorized search independent of the agent.
- visarga 7mo agoThe fundamental problem wit RAG is that it extracts only surface level features, "31+24" won't embed close to "55", while "not happy" will be close to "happy". Another issue is that embedding similarity does not indicate logical dependency, you won't retrieve the callers of a function with RAG, you need a LLM or code for that. Third issue is chunking, to embed you need to chunk, but if you chunk you exclude information that might be essential. The best way to search I think is a coding agent with grep and file system access, and that is because the agent can adapt and explore instead of one shotting it. I am making my own search tool based on the principle of LoD (level of detail) - any large text input can be trimmed down to about 10KB size by doing clever trimming, for example you could trim the middle of a paragraph keeping the start and end, or you could trim the middle of a large file. Then an agent can zoom in and out of a large file. It skims structure first, then drills into the relevant sections. Using it for analyzing logs, repos, zip files, long PDFs, and coding agent sessions which can run into MB size. Depending on content type we can do different types of compression for code and tree structured data. There is also a "tall narrow cut" (like cut -c -50 on a file). The promise is - any size input fit into 10KB "glances" and the model can find things more efficiently this way without loading the whole thing.
- m00dy 7mo agoRAG is broken when you have too much data.
- thunky 7mo agoGemini with Google search is RAG using all public data, and it isn't broken.
- fhd2 7mo agoIt's not tool use with natural language search queries? That's what I'd expect.
- kaicianflone 7mo agoIt is tool use with natural language search queries but going down a layer they are searched on a vector DB, very similar to RAG. Essentially Google RankBrain is the very far ancestor to RAG before compute and scaling.
- thunky 7mo agoIt's RAG via tool use, where the storage and retreival method is an implementation detail. I'm not a huge fan of the term RAG though because if you squint almost all tool use could be considered RAG. But if you stick with RAG being a form of "knowledge search" then I think Google search easily fits.
- PlatoIsADisease 7mo agoCant you make thresholds higher? Hmm... I guess not, you might want all that data. Super interesting topic. Learning a lot.
- plingamp 7mo agoSpecifically when the document number reaches around 10k+, a phenomenon called "Semantic Collapse" occurs. https://dho.stanford.edu/wp-content/uploads/Legal_RAG_Hallucinations.pdf https://dho.stanford.edu/wp-content/uploads/Legal_RAG_Halluc...
- naasking 7mo agoUnless I'm misunderstanding what they are, planners seem kind of important.
- johaugum 7mo agoAs you mentioned, that depends on what you mean by planners. An LLM will implicitly decompose a prompt into tasks and then sequentially execute them, calling the appropriate tools. The architecture diagram helpfully visualizes this [0] Here though, planners means autonomous planners that exist as higher level infrastructure, that does external task decomposition, persistent state, tool scheduling, error recovery/replanning, and branching/search. Think a task like “Prompt: “Scan repo for auth bugs, run tests, open PR with fixes, notify Slack.” that just runs continuously 24/7, that would be beyond what nanobot could do. However, something like “find all the receipts in my emails for this year, then zip and email them to my accountant for my tax return” is something nanobot would do. [0] https://github.com/HKUDS/nanobot/blob/main/nanobot_arch.png https://github.com/HKUDS/nanobot/blob/main/nanobot_arch.png
- naasking 7mo agoSure, instruction tuned models implicitly plan, but they can easily lose the plot on long contexts. If you're going to have an agent running continuously and accumulating memory (parsing results from tool use, web fetches, previous history, etc.), then plan decomposition, persistence and error recovery seems like a good idea, so you can start subagents with fresh contexts for task items and they stay on task or can recover without starting everything over again. Also seems better for cost since input and output contexts are more bounded.
- skybrian 7mo agoI don’t know what these planners do, but I’ve had reasonably good luck asking a coding agent to write a design doc and then reviewing it a few times.