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
version = response.parse() # get the object that `genai.agents.versions.list()` would have returned
237
+
version = response.parse() # get the object that `agents.versions.list()` would have returned
238
238
print(version.agent_versions)
239
239
```
240
240
@@ -249,7 +249,7 @@ The above interface eagerly reads the full response body when you make the reque
249
249
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.
250
250
251
251
```python
252
-
with client.genai.agents.versions.with_streaming_response.list(
252
+
with client.agents.versions.with_streaming_response.list(
0 commit comments