(run: Run)
| 65 | } |
| 66 | |
| 67 | onChainError(run: Run) { |
| 68 | const crumbs = this.getBreadcrumbs(run) |
| 69 | this.logger.verbose( |
| 70 | `[${this.orgId}]: [chain/error] [${crumbs}] [${elapsed(run)}] Chain run errored with error: ${tryJsonStringify( |
| 71 | run.error, |
| 72 | '[error]' |
| 73 | )}` |
| 74 | ) |
| 75 | } |
| 76 | |
| 77 | onLLMStart(run: Run) { |
| 78 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected