agentex-sdk 0.7.4__py3-none-any.whl → 0.8.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agentex/_base_client.py +1 -1
- agentex/_version.py +1 -1
- agentex/resources/messages/messages.py +1996 -4
- agentex/types/message_list_paginated_params.py +500 -1
- agentex/types/message_list_params.py +500 -1
- {agentex_sdk-0.7.4.dist-info → agentex_sdk-0.8.0.dist-info}/METADATA +1 -1
- {agentex_sdk-0.7.4.dist-info → agentex_sdk-0.8.0.dist-info}/RECORD +10 -10
- {agentex_sdk-0.7.4.dist-info → agentex_sdk-0.8.0.dist-info}/WHEEL +0 -0
- {agentex_sdk-0.7.4.dist-info → agentex_sdk-0.8.0.dist-info}/entry_points.txt +0 -0
- {agentex_sdk-0.7.4.dist-info → agentex_sdk-0.8.0.dist-info}/licenses/LICENSE +0 -0
agentex/_base_client.py
CHANGED
|
@@ -1774,7 +1774,7 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
|
|
1774
1774
|
options: RequestOptions = {},
|
|
1775
1775
|
) -> ResponseT:
|
|
1776
1776
|
opts = FinalRequestOptions.construct(
|
|
1777
|
-
method="patch", url=path, json_data=body, files=
|
|
1777
|
+
method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
|
1778
1778
|
)
|
|
1779
1779
|
return await self.request(cast_to, opts)
|
|
1780
1780
|
|
agentex/_version.py
CHANGED