(run: Run)
| 269 | } |
| 270 | |
| 271 | onChainError(run: Run) { |
| 272 | const crumbs = this.getBreadcrumbs(run) |
| 273 | this.logger.verbose( |
| 274 | `[${this.orgId}]: [chain/error] [${crumbs}] [${elapsed(run)}] Chain run errored with error: ${tryJsonStringify( |
| 275 | run.error, |
| 276 | '[error]' |
| 277 | )}` |
| 278 | ) |
| 279 | } |
| 280 | |
| 281 | onLLMStart(run: Run) { |
| 282 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected