* Execute the next step in the chain using the * AgentExecutor's _takeNextStep method.
(runManager?: CallbackManagerForChainRun)
| 188 | * AgentExecutor's _takeNextStep method. |
| 189 | */ |
| 190 | async _executeNextStep(runManager?: CallbackManagerForChainRun): Promise<AgentFinish | AgentStep[]> { |
| 191 | return this.agentExecutor._takeNextStep(this.nameToToolMap, this.inputs, this.intermediateSteps, runManager) |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Process the output of the next step, |
no test coverage detected