(run: Run)
| 327 | } |
| 328 | |
| 329 | onAgentAction(run: Run) { |
| 330 | const agentRun = run as AgentRun |
| 331 | const crumbs = this.getBreadcrumbs(run) |
| 332 | this.logger.verbose( |
| 333 | `[${this.orgId}]: [agent/action] [${crumbs}] Agent selected action: ${tryJsonStringify( |
| 334 | agentRun.actions[agentRun.actions.length - 1], |
| 335 | '[action]' |
| 336 | )}` |
| 337 | ) |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | /** |
nothing calls this directly
no test coverage detected