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

Method successes

quantmind/flows/batch.py:41–43  ·  view source on GitHub ↗

``(index, result)`` for every input that succeeded.

(self)

Source from the content-addressed store, hash-verified

39
40 @property
41 def successes(self) -> list[tuple[int, OutputT]]:
42 """``(index, result)`` for every input that succeeded."""
43 return [(i, r) for i, r in enumerate(self.results) if r is not None]
44
45 @property
46 def failures(self) -> list[tuple[int, Exception]]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected