MCPcopy Create free account
hub / github.com/LLMQuant/quant-mind / __init__

Method __init__

tests/flows/test_runner.py:22–24  ·  view source on GitHub ↗
(self, label: str, log: list[tuple[str, str]])

Source from the content-addressed store, hash-verified

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"))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected