Earlier quoted context omitted.
What are the differences wrt Recursive Language Models
Completely unrelated. Recursive Language Models are just "what if we replaced putting all the long text into the context window with a REPL which lets you read parts of the context through tool calls and launch partitioned subagents", ie divide-and-conquer applied to attention space.
HyperAgents: Self-referential self-improving agents
91–100 of 117 posts
Re: HyperAgents: Self-referential self-improving agents
#92Re: HyperAgents: Self-referential self-improving agents
#93Re: HyperAgents: Self-referential self-improving agents
#94Re: HyperAgents: Self-referential self-improving agents
#95Uses LiteLLM. Lovely.
Re: HyperAgents: Self-referential self-improving agents
#96Re: HyperAgents: Self-referential self-improving agents
#97The paper is here - https://arxiv.org/pdf/2603.19461 This, IMO is the biggest insight into where we're at and where we're going: > Because both evaluation and self-modification are coding tasks, gains in coding ability can translate into gains in self-improvement ability. There's a thing that I've noticed early into LLMs: once they unlock one capability, you can use that capability to compose stuff and improve on oth…
I disagree that evaluation is always a coding task. Evaluation is scrutiny for the person who wants the thing. It’s subjective . So, unless you’re evaluating something purely objective, such as an algorithm, I don’t see how a self contained, self “improving “ agent accomplishes the subjectivity constraint - as by design you are leaving out the subject.
Re: HyperAgents: Self-referential self-improving agents
#98Re: HyperAgents: Self-referential self-improving agents
#99Earlier quoted context omitted.
Agree. It's code all the way down. The key is to give agents a substrate where they can code up new capabilities and then compose them meaningfully and safely. Larger composition, though, starts to run into typical software design problems, like dependency graphs, shared state, how to upgrade, etc. I've been working on this front for over two years now too: https://github.com/smartcomputer-ai/agent-os/
> Larger composition, though, starts to run into typical software design problems I've been seeing the same thing. Where agents are great solving the immediate task, but as changes compound they run into software & architectural design problems. I created https://github.com/andonimichael/arxitect to help at least have coding agents self reflect on their software design. But I really like your approach to self-modific…
Re: HyperAgents: Self-referential self-improving agents
#100Earlier quoted context omitted.
Agree. It's code all the way down. The key is to give agents a substrate where they can code up new capabilities and then compose them meaningfully and safely. Larger composition, though, starts to run into typical software design problems, like dependency graphs, shared state, how to upgrade, etc. I've been working on this front for over two years now too: https://github.com/smartcomputer-ai/agent-os/
So what are software packages now a days other than precomputed subsets of capabilities. Like a mesh that data gets pushed through to produce what? What are the optimal subset of prebuilt programs to accomplish any task?