Skip to content

Commit b934090

Browse files
authored
Merge branch 'main' into stas/agent-auth
2 parents 32aafd0 + 5a59b13 commit b934090

File tree

8 files changed

+21
-13
lines changed

8 files changed

+21
-13
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.1"
2+
".": "0.2.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 34
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-782d59cf134b51ddd5058ae6e1630057093a6034b1d90663ab67836802b67cc6.yml
3-
openapi_spec_hash: 3356926852d5d095d572b4fdce242836
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-ed22476258be08ff765c68dcb29c08baf3e4783c98edac50d1e8003e9487db37.yml
3+
openapi_spec_hash: d4010bb4bf479073328ca00be01a7b96
44
config_hash: 7c1f6794a184ee175dd94f2f7c2b496b

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.2.2 (2025-07-28)
4+
5+
Full Changelog: [v0.2.1...v0.2.2](https://github.com/scaleapi/agentex-python/compare/v0.2.1...v0.2.2)
6+
7+
### Features
8+
9+
* **api:** api update ([eb79533](https://github.com/scaleapi/agentex-python/commit/eb79533dd041b7fccccc6a75abedd0c87e9c55e5))
10+
311
## 0.2.1 (2025-07-27)
412

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentex-sdk"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "The official Python library for the agentex API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/agentex/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "agentex"
4-
__version__ = "0.2.1" # x-release-please-version
4+
__version__ = "0.2.2" # x-release-please-version

src/agentex/lib/adk/_modules/messages.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from agentex import AsyncAgentex
66
from agentex.lib.adk.utils._modules.client import create_async_agentex_client
7-
from agentex.lib.core.adapters.streams.adapter_redis import RedisEventStreamRepository
7+
from agentex.lib.core.adapters.streams.adapter_redis import RedisStreamRepository
88
from agentex.lib.core.services.adk.messages import MessagesService
99
from agentex.lib.core.services.adk.streaming import StreamingService
1010
from agentex.lib.core.temporal.activities.activity_helpers import ActivityHelpers
@@ -39,7 +39,7 @@ def __init__(
3939
):
4040
if messages_service is None:
4141
agentex_client = create_async_agentex_client()
42-
stream_repository = RedisEventStreamRepository()
42+
stream_repository = RedisStreamRepository()
4343
streaming_service = StreamingService(
4444
agentex_client=agentex_client,
4545
stream_repository=stream_repository,

src/agentex/lib/adk/_modules/streaming.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from agentex import AsyncAgentex
44
from agentex.lib.adk.utils._modules.client import create_async_agentex_client
5-
from agentex.lib.core.adapters.streams.adapter_redis import RedisEventStreamRepository
5+
from agentex.lib.core.adapters.streams.adapter_redis import RedisStreamRepository
66
from agentex.lib.core.services.adk.streaming import (
77
StreamingService,
88
StreamingTaskMessageContext,
@@ -34,7 +34,7 @@ def __init__(self, streaming_service: StreamingService | None = None):
3434
a new service will be created with default parameters.
3535
"""
3636
if streaming_service is None:
37-
stream_repository = RedisEventStreamRepository()
37+
stream_repository = RedisStreamRepository()
3838
agentex_client = create_async_agentex_client()
3939
self._streaming_service = StreamingService(
4040
agentex_client=agentex_client,

src/agentex/resources/tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def stream_events(
206206
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
207207
) -> Stream[object]:
208208
"""
209-
Stream events for a task by its unique ID.
209+
Stream message updates for a task by its unique ID.
210210
211211
Args:
212212
extra_headers: Send extra headers
@@ -241,7 +241,7 @@ def stream_events_by_name(
241241
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
242242
) -> Stream[object]:
243243
"""
244-
Stream events for a task by its unique name.
244+
Stream message updates for a task by its unique name.
245245
246246
Args:
247247
extra_headers: Send extra headers
@@ -448,7 +448,7 @@ async def stream_events(
448448
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
449449
) -> AsyncStream[object]:
450450
"""
451-
Stream events for a task by its unique ID.
451+
Stream message updates for a task by its unique ID.
452452
453453
Args:
454454
extra_headers: Send extra headers
@@ -483,7 +483,7 @@ async def stream_events_by_name(
483483
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
484484
) -> AsyncStream[object]:
485485
"""
486-
Stream events for a task by its unique name.
486+
Stream message updates for a task by its unique name.
487487
488488
Args:
489489
extra_headers: Send extra headers

0 commit comments

Comments
 (0)