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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Changelog
2
2
3
+
## 0.0.2 (2025-03-15)
4
+
5
+
Full Changelog: [v0.0.1-alpha.1...v0.0.2](https://github.com/OpenExecProtocol/oxp-python/compare/v0.0.1-alpha.1...v0.0.2)
6
+
7
+
### Features
8
+
9
+
***api:** update via SDK Studio ([#5](https://github.com/OpenExecProtocol/oxp-python/issues/5)) ([10b7707](https://github.com/OpenExecProtocol/oxp-python/commit/10b770743b760ccc9b7a806fbebcd6d6c5eab9e9))
10
+
3
11
## 0.0.1-alpha.1 (2025-03-15)
4
12
5
13
Full Changelog: [v0.0.1-alpha.0...v0.0.1-alpha.1](https://github.com/OpenExecProtocol/oxp-python/compare/v0.0.1-alpha.0...v0.0.1-alpha.1)
health= response.parse() # get the object that `health.check()` would have returned
236
-
print(health)
237
+
tool= response.parse() # get the object that `tools.list()` would have returned
238
+
print(tool.items)
237
239
```
238
240
239
241
These methods return an [`APIResponse`](https://github.com/OpenExecProtocol/oxp-python/tree/main/src/oxp/_response.py) object.
@@ -247,7 +249,7 @@ The above interface eagerly reads the full response body when you make the reque
247
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.
248
250
249
251
```python
250
-
with client.health.with_streaming_response.check() as response:
252
+
with client.tools.with_streaming_response.list() as response:
0 commit comments