(stepCount: number)
| 571 | // If the agent exceeds the step count, then we will stop. |
| 572 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 573 | const stepCountIsGTE = (stepCount: number): StopCondition<any> => { |
| 574 | return ({ steps }) => steps.length >= stepCount; |
| 575 | } |