( agents: readonly ToolsConfigCarrier[], maxDepth = 10 )
| 100 | } |
| 101 | |
| 102 | export function isPlanLikeInResolvedChain( |
| 103 | agents: readonly ToolsConfigCarrier[], |
| 104 | maxDepth = 10 |
| 105 | ): boolean { |
| 106 | return isToolEnabledInResolvedChain("propose_plan", agents, maxDepth); |
| 107 | } |
| 108 | |
| 109 | export function isExecLikeEditingCapableInResolvedChain( |
| 110 | agents: ReadonlyArray<ToolsConfigCarrier & { id: AgentId }>, |
no test coverage detected