(self, items: list[tuple[str, int, int]])
| 150 | """Sequential LLM that reports per-call token usage via LLMResult.""" |
| 151 | |
| 152 | def __init__(self, items: list[tuple[str, int, int]]) -> None: |
| 153 | self._items = iter(items) |
| 154 | |
| 155 | def generate(self, prompt: str, temperature: float = 0.0) -> str: |
| 156 | return self.generate_with_usage(prompt, temperature).text |
nothing calls this directly
no outgoing calls
no test coverage detected