Show HN: Microagents: Agents capable of self-editing their prompts / Python code
41–50 of 82 posts
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#42Earlier quoted context omitted.
That's not a fitting analogy because there is no equivalent to the laws of thermodynamics that says a system can't be self improving. You're dismissing a technological possibility without much reason. We are extremely similar genetically to our ancestors of 100k years ago. The big difference is cultural inheritance. We come up with ideas and objects and pass them down. Humans have improved the capabilities of humans.…
It’s not that straightforward. Quoting Yann LeCun from a LinkedIn post [1]: > I have claimed that Auto-Regressive LLMs are exponentially diverging diffusion processes. Here is the argument: Let e be the probability that any generated token exits the tree of "correct" answers. Then the probability that an answer of length n is correct is (1-e)^n. > Errors accumulate. The probability of correctness decreases exponentia…
That was their point. See here:
> We are extremely similar genetically to our ancestors of 100k years ago. The big difference is cultural inheritance. We come up with ideas and objects and pass them down.
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#43I built a few multi agent systems and went down a rabbit hole where I reached an important conclusion - From the perspective of the LLM, the prompt/context is the only thing that ever matters. Everything about how your agent will behave ultimately boils down to this. I had a bunch of fancy stuff like agents collaborating by passing messages and interpreting them with their own prompts and function calls. Then I reali…
Feel free to e-mail me at joshcho@stanford.edu
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#44Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#45Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#46Of course, once you rephrase this as a learning problem, a lot of new questions pop up on what it means to do it right :)
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#47We do something similar with Magic Loops[0], but within the context of generating a single "loop" (automation). We've found that LLMs are pretty bad at prompting other LLMs, unless the problem at hand is very limited in scope. It's too easy to get incorrect/expensive behavior otherwise (e.g. starts building a framework against an imaginary API, instead of using an existing tool). Our approach looks more like a state…
If you swap “API” for “business need” you’ve got a basic software developer. Most of the time those imaginary business needs are a waste of time, but every once in a while the solution is pure genius to a problem no one realised they had. Mostly the first though.
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#48Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#49I built a few multi agent systems and went down a rabbit hole where I reached an important conclusion - From the perspective of the LLM, the prompt/context is the only thing that ever matters. Everything about how your agent will behave ultimately boils down to this. I had a bunch of fancy stuff like agents collaborating by passing messages and interpreting them with their own prompts and function calls. Then I reali…
Re: Show HN: Microagents: Agents capable of self-editing their prompts / Python code
#50Earlier quoted context omitted.
It’s not that straightforward. Quoting Yann LeCun from a LinkedIn post [1]: > I have claimed that Auto-Regressive LLMs are exponentially diverging diffusion processes. Here is the argument: Let e be the probability that any generated token exits the tree of "correct" answers. Then the probability that an answer of length n is correct is (1-e)^n. > Errors accumulate. The probability of correctness decreases exponentia…
> There’s no evidence that today’s human is cognitively more capable than their human ancestors. It’s a conflation of technology and transference of knowledge with intelligence. That was their point. See here: > We are extremely similar genetically to our ancestors of 100k years ago. The big difference is cultural inheritance. We come up with ideas and objects and pass them down.