Is there a way to use or *harness* multiple LLM models to conference on a prompt you make and have them discuss it out till they reach some kind of result?
from cheese_greater@lemmy.world to nostupidquestions@lemmy.ca on 22 Mar 17:29
https://lemmy.world/post/44597944
from cheese_greater@lemmy.world to nostupidquestions@lemmy.ca on 22 Mar 17:29
https://lemmy.world/post/44597944
It would be interesting to watch for sure but I wonder if they might correct each other or collaborate in some way that could be lightly supervized to produce an ouput
#nostupidquestions
threaded - newest
From what I’ve read, the multiple AIs generally do have a result, just not a good one.
medium.com/…/two-ais-talk-to-each-other-the-resul…
tomsguide.com/…/what-is-gibberlink-why-its-freaki…
www.sciencedaily.com/releases/…/240318142438.htm
But perhaps someone has a link to positive outcomes.
what you’re proposing requires them to reason and understand each other. LLMs don’t do that, they take text input and construct an output based on words (tokens) that they have mapped to be close to the ones you entered into your prompt.
it’s a clever way to produce a plausible response, but it’s not thinking or reasoning.
A conversation/collaboration… not really.
You can create a ‘swarm’ of agents with differing roles, define different roles and phases, to have it iterate on a problem.
Groups of agents of the same role, operating in parallel, should ideally be using different models (or have context that gives them differing goals - eg focused on maintainable abstractions, security, scalability, test case identification, etc).
The implementation can do a similar thing - a code generator followed by reviewers, proposals for action, and then apply improvements… and you can iterate on testing or benchmarking too, all before hand-over.
This can improve results (at a non-trivial cost sometimes, so budgets are important) and it will still miss sometimes. You can help it of course with hints, directions or even implementations or stubs of implementations of abstractions you expect.