We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d613c0e commit 292e73bCopy full SHA for 292e73b
src/orb/_streaming.py
@@ -10,7 +10,7 @@
10
from ._types import ResponseT
11
12
if TYPE_CHECKING:
13
- from ._base_client import SyncAPIClient, AsyncAPIClient
+ from ._client import Orb, AsyncOrb
14
15
16
class Stream(Generic[ResponseT]):
@@ -23,7 +23,7 @@ def __init__(
23
*,
24
cast_to: type[ResponseT],
25
response: httpx.Response,
26
- client: SyncAPIClient,
+ client: Orb,
27
) -> None:
28
self.response = response
29
self._cast_to = cast_to
@@ -65,7 +65,7 @@ def __init__(
65
66
67
68
- client: AsyncAPIClient,
+ client: AsyncOrb,
69
70
71
0 commit comments