(run: Run)
| 295 | } |
| 296 | |
| 297 | onLLMError(run: Run) { |
| 298 | const crumbs = this.getBreadcrumbs(run) |
| 299 | this.logger.verbose( |
| 300 | `[${this.orgId}]: [llm/error] [${crumbs}] [${elapsed(run)}] LLM run errored with error: ${tryJsonStringify( |
| 301 | run.error, |
| 302 | '[error]' |
| 303 | )}` |
| 304 | ) |
| 305 | } |
| 306 | |
| 307 | onToolStart(run: Run) { |
| 308 | const crumbs = this.getBreadcrumbs(run) |
nothing calls this directly
no test coverage detected