Adding parallel processing #1140
Replies: 2 comments
-
+1 for Async Execution of Agents, not just Tasks While Tasks can be executed asynchronously, calling the same Agent more than once is highly beneficial Imagine a team of three Researcher Agents, each performing work in parallel before Research Manager evaluates the response from each |
Beta Was this translation helpful? Give feedback.
-
I've got this use case where I'd like to take this list of github projects, then to find out the last commit date for each project and return me a list of all project sorted by last activity date. Ideally the tasks are parallelized, where each agent only gets the url to scrape and returns the date the repo was last updated. This saves immense amounts of context, and also makes sure the LLM doesn't run out of context halfway the url list. Would be nice to use an AI for this instead of writing any code myself |
Beta Was this translation helpful? Give feedback.
-
Let's expand the processes!
Beta Was this translation helpful? Give feedback.
All reactions