Skip to content
Merged
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.2.1"
".": "0.2.2"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 34
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-782d59cf134b51ddd5058ae6e1630057093a6034b1d90663ab67836802b67cc6.yml
openapi_spec_hash: 3356926852d5d095d572b4fdce242836
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-ed22476258be08ff765c68dcb29c08baf3e4783c98edac50d1e8003e9487db37.yml
openapi_spec_hash: d4010bb4bf479073328ca00be01a7b96
config_hash: 7c1f6794a184ee175dd94f2f7c2b496b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.2 (2025-07-28)

Full Changelog: [v0.2.1...v0.2.2](https://github.com/scaleapi/agentex-python/compare/v0.2.1...v0.2.2)

### Features

* **api:** api update ([eb79533](https://github.com/scaleapi/agentex-python/commit/eb79533dd041b7fccccc6a75abedd0c87e9c55e5))

## 0.2.1 (2025-07-27)

Full Changelog: [v0.2.0...v0.2.1](https://github.com/scaleapi/agentex-python/compare/v0.2.0...v0.2.1)
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.2.1"
version = "0.2.2"
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.2.1" # x-release-please-version
__version__ = "0.2.2" # x-release-please-version
8 changes: 4 additions & 4 deletions src/agentex/resources/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def stream_events(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> Stream[object]:
"""
Stream events for a task by its unique ID.
Stream message updates for a task by its unique ID.

Args:
extra_headers: Send extra headers
Expand Down Expand Up @@ -241,7 +241,7 @@ def stream_events_by_name(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> Stream[object]:
"""
Stream events for a task by its unique name.
Stream message updates for a task by its unique name.

Args:
extra_headers: Send extra headers
Expand Down Expand Up @@ -448,7 +448,7 @@ async def stream_events(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AsyncStream[object]:
"""
Stream events for a task by its unique ID.
Stream message updates for a task by its unique ID.

Args:
extra_headers: Send extra headers
Expand Down Expand Up @@ -483,7 +483,7 @@ async def stream_events_by_name(
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> AsyncStream[object]:
"""
Stream events for a task by its unique name.
Stream message updates for a task by its unique name.

Args:
extra_headers: Send extra headers
Expand Down
Loading