MCPcopy Create free account
hub / github.com/IBM/AssetOpsBench / __init__

Method __init__

src/agent/tests/test_runner.py:152–153  ·  view source on GitHub ↗
(self, items: list[tuple[str, int, int]])

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected