(run: Run)
| 91 | } |
| 92 | |
| 93 | onLLMError(run: Run) { |
| 94 | const crumbs = this.getBreadcrumbs(run) |
| 95 | this.logger.verbose( |
| 96 | `[${this.orgId}]: [llm/error] [${crumbs}] [${elapsed(run)}] LLM run errored with error: ${tryJsonStringify( |
| 97 | run.error, |
| 98 | '[error]' |
| 99 | )}` |
| 100 | ) |
| 101 | } |
| 102 | |
| 103 | onToolStart(run: Run) { |
| 104 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected