(self, label: str, log: list[tuple[str, str]])
| 20 | """Test hook that records every lifecycle call on a shared list.""" |
| 21 | |
| 22 | def __init__(self, label: str, log: list[tuple[str, str]]) -> None: |
| 23 | self.label = label |
| 24 | self.log = log |
| 25 | |
| 26 | async def on_llm_start(self, *_: Any, **__: Any) -> None: |
| 27 | self.log.append((self.label, "on_llm_start")) |
nothing calls this directly
no outgoing calls
no test coverage detected