(self, llm_fn: Callable[[str], str], timeout_seconds: float)
| 795 | """ |
| 796 | |
| 797 | def __init__(self, llm_fn: Callable[[str], str], timeout_seconds: float): |
| 798 | self.llm_fn = llm_fn |
| 799 | self.timeout_seconds = timeout_seconds |
| 800 | |
| 801 | def call(self, prompt: str) -> str: |
| 802 | result: Dict[str, Any] = {} |
nothing calls this directly
no outgoing calls
no test coverage detected