> It is really good at grep and will make multiple grep calls in parallel.
How does that work? Multiple agents grepping simultaneously?
> It is really good at grep and will make multiple grep calls in parallel.
How does that work? Multiple agents grepping simultaneously?
When other models would grep, then read results, then use search, then read results, then read 100 lines from a file, then read results, Composer 1 is trained to grep AND search AND read in one round trip It may read 15 files, and then make small edits in all 15 files at once
Presumably if it knows it needs to perform multiple searches in order to gather information (e.g. searching for redundant implementations of an algorithm, plus calls to the codebase's canonical implementation) it should be able to run those searches in parallel grep calls.
I'm trying to figure that one out.
LLMs are inherently single-threaded in how they ingest and produce info. So, as far as I can gather from the description, either it spawns sub-agents, or it has a tool dedicated for the job.
Probably something closer to ripgrep, if not actually ripgrep.