Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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.8.2"
".": "0.9.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-43921054bad3c6969dc10f5899faa5924f3c029ccffb55965bbb6e7c9a0f22c6.yml
openapi_spec_hash: 17b74748a86bc159767dbb66ba46f54d
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-c9b5ca9e03141b62fa981944af1c880cd4562f0b697ed5f110c0e0e754f455ba.yml
openapi_spec_hash: 9ed347fceac28248d2a0acb49c4eb356
config_hash: 32eb65911c08ac84d117cecdf2759869
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.9.0 (2026-01-07)

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

### Features

* **api:** api update ([f7728f9](https://github.com/scaleapi/scale-agentex-python/commit/f7728f9752a5b5e5ec3dca91a38d7d092f8a2fc7))

## 0.8.2 (2026-01-02)

Full Changelog: [v0.8.1...v0.8.2](https://github.com/scaleapi/scale-agentex-python/compare/v0.8.1...v0.8.2)
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.8.2"
version = "0.9.0"
description = "The official Python library for the agentex API"
dynamic = ["readme"]
license = "Apache-2.0"
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.8.2" # x-release-please-version
__version__ = "0.9.0" # x-release-please-version
8 changes: 4 additions & 4 deletions tests/api_resources/test_spans.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ def test_method_list(self, client: Agentex) -> None:
@parametrize
def test_method_list_with_all_params(self, client: Agentex) -> None:
span = client.spans.list(
limit=0,
limit=1,
order_by="order_by",
order_direction="order_direction",
page_number=0,
page_number=1,
trace_id="trace_id",
)
assert_matches_type(SpanListResponse, span, path=["response"])
Expand Down Expand Up @@ -387,10 +387,10 @@ async def test_method_list(self, async_client: AsyncAgentex) -> None:
@parametrize
async def test_method_list_with_all_params(self, async_client: AsyncAgentex) -> None:
span = await async_client.spans.list(
limit=0,
limit=1,
order_by="order_by",
order_direction="order_direction",
page_number=0,
page_number=1,
trace_id="trace_id",
)
assert_matches_type(SpanListResponse, span, path=["response"])
Expand Down