(run: Run)
| 81 | } |
| 82 | |
| 83 | onLLMEnd(run: Run) { |
| 84 | const crumbs = this.getBreadcrumbs(run) |
| 85 | this.logger.verbose( |
| 86 | `[${this.orgId}]: [llm/end] [${crumbs}] [${elapsed(run)}] Exiting LLM run with output: ${tryJsonStringify( |
| 87 | run.outputs, |
| 88 | '[response]' |
| 89 | )}` |
| 90 | ) |
| 91 | } |
| 92 | |
| 93 | onLLMError(run: Run) { |
| 94 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected