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 12daca8 commit 48a1e26Copy full SHA for 48a1e26
getstream/stream_response.py
@@ -10,6 +10,7 @@
10
11
class StreamResponse(Generic[T]):
12
def __init__(self, response: httpx.Response, data: T):
13
+ self.__response = response
14
self.__headers = response.headers
15
self.__status_code = response.status_code
16
self.__rate_limit = extract_rate_limit(response)
0 commit comments