Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1e41fc2
codegen metadata
stainless-app[bot] Dec 12, 2025
4c95c94
feat(api): api update
stainless-app[bot] Dec 13, 2025
b561700
codegen metadata
stainless-app[bot] Dec 13, 2025
6e9050b
codegen metadata
stainless-app[bot] Dec 13, 2025
98192fe
codegen metadata
stainless-app[bot] Dec 13, 2025
1717650
codegen metadata
stainless-app[bot] Dec 13, 2025
4dcfcd4
codegen metadata
stainless-app[bot] Dec 13, 2025
504c0b3
codegen metadata
stainless-app[bot] Dec 13, 2025
7b227cc
codegen metadata
stainless-app[bot] Dec 13, 2025
30df943
codegen metadata
stainless-app[bot] Dec 13, 2025
2465aa2
codegen metadata
stainless-app[bot] Dec 14, 2025
2fa8d59
codegen metadata
stainless-app[bot] Dec 14, 2025
99e0516
codegen metadata
stainless-app[bot] Dec 14, 2025
5b6d5fc
codegen metadata
stainless-app[bot] Dec 14, 2025
0bc0cbc
codegen metadata
stainless-app[bot] Dec 14, 2025
21d6ecf
codegen metadata
stainless-app[bot] Dec 14, 2025
1c07bc5
codegen metadata
stainless-app[bot] Dec 14, 2025
22b202d
codegen metadata
stainless-app[bot] Dec 14, 2025
10a26a9
codegen metadata
stainless-app[bot] Dec 14, 2025
9882b02
codegen metadata
stainless-app[bot] Dec 15, 2025
15b1331
codegen metadata
stainless-app[bot] Dec 15, 2025
3a0644d
codegen metadata
stainless-app[bot] Dec 15, 2025
7cb69c3
codegen metadata
stainless-app[bot] Dec 15, 2025
aea4d26
codegen metadata
stainless-app[bot] Dec 15, 2025
20ddd9a
codegen metadata
stainless-app[bot] Dec 15, 2025
2c063ed
codegen metadata
stainless-app[bot] Dec 15, 2025
dad1636
codegen metadata
stainless-app[bot] Dec 15, 2025
c82d90f
codegen metadata
stainless-app[bot] Dec 15, 2025
4954b57
codegen metadata
stainless-app[bot] Dec 15, 2025
48af281
codegen metadata
stainless-app[bot] Dec 15, 2025
66f6750
codegen metadata
stainless-app[bot] Dec 15, 2025
4feda0a
codegen metadata
stainless-app[bot] Dec 15, 2025
86a166a
feat(api): api update
stainless-app[bot] Dec 15, 2025
28d1738
chore(internal): add missing files argument to base client
stainless-app[bot] Dec 15, 2025
e892365
release: 0.8.0
stainless-app[bot] Dec 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.7.3"
".": "0.8.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 35
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-6feb0601dafb255298a2f1da01d64541d40da90aeb527e2f444c49c993e8c162.yml
openapi_spec_hash: 973cd2ed3c945818d15b7deee0b25d71
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-8f9296ac9fa68bb264c4739463e55ce27cdafb31b705b27600d6656db7b0dac5.yml
openapi_spec_hash: 47f4675ac3c7198869240b5c6f33f8fd
config_hash: 32eb65911c08ac84d117cecdf2759869
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.8.0 (2025-12-15)

Full Changelog: [v0.7.3...v0.8.0](https://github.com/scaleapi/scale-agentex-python/compare/v0.7.3...v0.8.0)

### Features

* **api:** api update ([86a166a](https://github.com/scaleapi/scale-agentex-python/commit/86a166aba5538411ebcc0ed74291505e01a466f2))
* **api:** api update ([4c95c94](https://github.com/scaleapi/scale-agentex-python/commit/4c95c94df570277fc49281f1343cb012e8da2334))


### Chores

* **internal:** add missing files argument to base client ([28d1738](https://github.com/scaleapi/scale-agentex-python/commit/28d1738d3af8feb00f6f641e159221fb41c42983))

## 0.7.3 (2025-12-10)

Full Changelog: [v0.7.2...v0.7.3](https://github.com/scaleapi/scale-agentex-python/compare/v0.7.2...v0.7.3)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agentex-sdk"
version = "0.7.3"
version = "0.8.0"
description = "The official Python library for the agentex API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
10 changes: 8 additions & 2 deletions src/agentex/_base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1247,9 +1247,12 @@ def patch(
*,
cast_to: Type[ResponseT],
body: Body | None = None,
files: RequestFiles | None = None,
options: RequestOptions = {},
) -> ResponseT:
opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
opts = FinalRequestOptions.construct(
method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
)
return self.request(cast_to, opts)

def put(
Expand Down Expand Up @@ -1767,9 +1770,12 @@ async def patch(
*,
cast_to: Type[ResponseT],
body: Body | None = None,
files: RequestFiles | None = None,
options: RequestOptions = {},
) -> ResponseT:
opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
opts = FinalRequestOptions.construct(
method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
)
return await self.request(cast_to, opts)

async def put(
Expand Down
2 changes: 1 addition & 1 deletion src/agentex/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "agentex"
__version__ = "0.7.3" # x-release-please-version
__version__ = "0.8.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/agentex/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
from .task_message_content_param import TaskMessageContentParam as TaskMessageContentParam
from .tool_request_content_param import ToolRequestContentParam as ToolRequestContentParam
from .tool_response_content_param import ToolResponseContentParam as ToolResponseContentParam
from .deployment_history_list_params import DeploymentHistoryListParams as DeploymentHistoryListParams
from .deployment_history_list_response import DeploymentHistoryListResponse as DeploymentHistoryListResponse
from .task_retrieve_by_name_params import TaskRetrieveByNameParams as TaskRetrieveByNameParams
from .message_list_paginated_params import MessageListPaginatedParams as MessageListPaginatedParams
from .deployment_history_list_params import DeploymentHistoryListParams as DeploymentHistoryListParams
from .task_retrieve_by_name_response import TaskRetrieveByNameResponse as TaskRetrieveByNameResponse
from .message_list_paginated_response import MessageListPaginatedResponse as MessageListPaginatedResponse
from .deployment_history_list_response import DeploymentHistoryListResponse as DeploymentHistoryListResponse
Loading