(run: Run)
| 285 | } |
| 286 | |
| 287 | onLLMEnd(run: Run) { |
| 288 | const crumbs = this.getBreadcrumbs(run) |
| 289 | this.logger.verbose( |
| 290 | `[${this.orgId}]: [llm/end] [${crumbs}] [${elapsed(run)}] Exiting LLM run with output: ${tryJsonStringify( |
| 291 | run.outputs, |
| 292 | '[response]' |
| 293 | )}` |
| 294 | ) |
| 295 | } |
| 296 | |
| 297 | onLLMError(run: Run) { |
| 298 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected