You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
runner = response.parse() # get the object that `runners.create()` would have returned
@@ -229,9 +217,7 @@ The above interface eagerly reads the full response body when you make the reque
229
217
To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
230
218
231
219
```python
232
-
with client.runners.with_streaming_response.create(
233
-
connect_protocol_version=1,
234
-
) as response:
220
+
with client.runners.with_streaming_response.create() as response:
0 commit comments