| ▲ | shaolinspirit 3 hours ago | |
I do not understand the value of multi agent approach? Isn't a single agent with a good harness better than any multi agent env? | ||
| ▲ | BenoitP 2 hours ago | parent | next [-] | |
It helps you spend more token, is more expensive, and thus is obviously more AI. Also novelty and more complexity means less scrutiny of the approach. These are necessary and perfectly sufficient for an investment firm thesis I believe. | ||
| ▲ | jasode an hour ago | parent | prev | next [-] | |
>Isn't a single agent with a good harness better than any multi agent env? Multiple agents can each have their own isolated LLM context that is focused on their respective narrow scoped tasks. That way, the accumulated "memories", "instructions", etc do not stomp on each other. E.g. the agent loop that is gathering "signals" from the market has a context memory full of instructions related to scraping websites and using REST APIs and it doesn't interfere with the other agent loop that does sentiment analysis that has context memory dedicated to text of news transcripts correlated with historical price signals. You can have a single agent acting as a top-level "orchestrator" to manage other agents. However, you can't have a single agent that does "everything" for long complicated workflows with high quality. The drawback is the more agents you spawn to take advantage of isolating contexts to improve task completion quality, the more you multiply the tokens consumption and costs. Another other driver for multi-agents is scaling out cpu usage, especially across different machine boundaries. | ||
| ▲ | podocarp 2 hours ago | parent | prev | next [-] | |
If it's a single agent then people will just call it a chatgpt wrapper, can't have that can we | ||
| ▲ | elzbardico 44 minutes ago | parent | prev [-] | |
Modularity maybe. Remember, agents are basically workflows that call LLMs in certain nodes. | ||