(run: Run)
| 317 | } |
| 318 | |
| 319 | onToolError(run: Run) { |
| 320 | const crumbs = this.getBreadcrumbs(run) |
| 321 | this.logger.verbose( |
| 322 | `[${this.orgId}]: [tool/error] [${crumbs}] [${elapsed(run)}] Tool run errored with error: ${tryJsonStringify( |
| 323 | run.error, |
| 324 | '[error]' |
| 325 | )}` |
| 326 | ) |
| 327 | } |
| 328 | |
| 329 | onAgentAction(run: Run) { |
| 330 | const agentRun = run as AgentRun |
nothing calls this directly
no test coverage detected