(run: Run)
| 113 | } |
| 114 | |
| 115 | onToolError(run: Run) { |
| 116 | const crumbs = this.getBreadcrumbs(run) |
| 117 | this.logger.verbose( |
| 118 | `[${this.orgId}]: [tool/error] [${crumbs}] [${elapsed(run)}] Tool run errored with error: ${tryJsonStringify( |
| 119 | run.error, |
| 120 | '[error]' |
| 121 | )}` |
| 122 | ) |
| 123 | } |
| 124 | |
| 125 | onAgentAction(run: Run) { |
| 126 | const agentRun = run as AgentRun |
nothing calls this directly
no test coverage detected