Plan Mode Is a Crutch
graphcoder.ai
Plan Mode Is a Crutch
1–8 of 8 posts
Re: Plan Mode Is a Crutch
#2Re: Plan Mode Is a Crutch
#3Re: Plan Mode Is a Crutch
#4Re: Plan Mode Is a Crutch
#5this sounds so expensive, is this latency win worth picking worse models to make it affordable?
Re: Plan Mode Is a Crutch
#6Re: Plan Mode Is a Crutch
#7Human bandwidth and context switching definitely seems to be a major bottleneck at the moment, but if scheduling several tasks concurrently to batch questions I imagine there is an upper limit on how many tasks can be run in parallel, especially if there are dependencies between them. I think we need to start charging employers per token of human attention if you optimise the mental throughput. I'm going to miss doom…
Re: Plan Mode Is a Crutch
#8There are some great ideas in this post, namely the focus on human attention as the limited resource and the recursive decomposition of tasks. There were also a few points which I found unclear. You describe recursive decomposition as a "tree of DAGs ...". What do you mean by this? Is each node in the tree a DAG? Secondly, I agree that the tree is exponentially faster than one agent scanning a flat list, but are you…
It would turn a slow search into a highly parallelised "MapReduce" problem. You trade a brief, massive burst of machine execution to keep wall-clock latency incredibly low for the human waiting at the top.
A tree structure means these scanning agents don’t just run wild. High-level nodes could aggressively prune entire branches the moment a scanning agent reports a dead end.