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

Method flow

tests/flows/test_batch.py:31–32  ·  view source on GitHub ↗
(input: RawText, *, cfg: Any = None)

Source from the content-addressed store, hash-verified

29class BatchRunTests(unittest.IsolatedAsyncioTestCase):
30 async def test_happy_path(self) -> None:
31 async def flow(input: RawText, *, cfg: Any = None) -> str:
32 return f"ok:{input.text}"
33
34 inputs = [RawText(text=str(i)) for i in range(5)]
35 result = await batch_run(flow, inputs, concurrency=3)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected