MCPcopy Create free account
hub / github.com/anomalyco/opencode-sdk-python / __anext__

Method __anext__

src/opencode_ai/_streaming.py:104–105  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

102 self._iterator = self.__stream__()
103
104 async def __anext__(self) -> _T:
105 return await self._iterator.__anext__()
106
107 async def __aiter__(self) -> AsyncIterator[_T]:
108 async for item in self._iterator:

Callers 1

iter_nextFunction · 0.80

Calls

no outgoing calls

Tested by 1

iter_nextFunction · 0.64