Skip to content

Commit 9d22445

Browse files
authored
Merge pull request #104 from scaleapi/release-please--branches--main--changes--next
release: 0.4.13
2 parents 2ae9662 + 4f7ac26 commit 9d22445

File tree

8 files changed

+27
-10
lines changed

8 files changed

+27
-10
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.4.12"
2+
".": "0.4.13"
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-6eec9554350594d13aa61f6d3c384a54cbaba95481ee06c228a9d0a0aefaeda8.yml
3-
openapi_spec_hash: 63770414d1be9807d9b7ebbef0ae9fee
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-80c50e5d150c0baca970fa26bc298a878e02bf5869a16fd3a812255cca077333.yml
3+
openapi_spec_hash: 41bed3c1c935a8054600e6d177faa396
44
config_hash: aeabb3a919ad2763f5d0f41961a2520a

CHANGELOG.md

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

3+
## 0.4.13 (2025-09-12)
4+
5+
Full Changelog: [v0.4.12...v0.4.13](https://github.com/scaleapi/agentex-python/compare/v0.4.12...v0.4.13)
6+
7+
### Features
8+
9+
* **api:** api update ([0102183](https://github.com/scaleapi/agentex-python/commit/0102183a8f5a23dbdaf905ffbe7ffbcf59bf7b21))
10+
* **api:** api update ([8a6edb1](https://github.com/scaleapi/agentex-python/commit/8a6edb13046ca24bf6c45fc018e32de498d48869))
11+
312
## 0.4.12 (2025-09-08)
413

514
Full Changelog: [v0.4.11...v0.4.12](https://github.com/scaleapi/agentex-python/compare/v0.4.11...v0.4.12)

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.4.12"
3+
version = "0.4.13"
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.4.12" # x-release-please-version
4+
__version__ = "0.4.13" # x-release-please-version

src/agentex/resources/tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def stream_events(
232232
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
233233
) -> Stream[object]:
234234
"""
235-
Stream message updates for a task by its unique ID.
235+
Stream events for a task by its unique ID.
236236
237237
Args:
238238
extra_headers: Send extra headers
@@ -267,7 +267,7 @@ def stream_events_by_name(
267267
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
268268
) -> Stream[object]:
269269
"""
270-
Stream message updates for a task by its unique name.
270+
Stream events for a task by its unique name.
271271
272272
Args:
273273
extra_headers: Send extra headers
@@ -497,7 +497,7 @@ async def stream_events(
497497
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
498498
) -> AsyncStream[object]:
499499
"""
500-
Stream message updates for a task by its unique ID.
500+
Stream events for a task by its unique ID.
501501
502502
Args:
503503
extra_headers: Send extra headers
@@ -532,7 +532,7 @@ async def stream_events_by_name(
532532
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
533533
) -> AsyncStream[object]:
534534
"""
535-
Stream message updates for a task by its unique name.
535+
Stream events for a task by its unique name.
536536
537537
Args:
538538
extra_headers: Send extra headers

src/agentex/types/agent.py

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

3-
from typing import Optional
3+
from typing import Dict, Optional
44
from datetime import datetime
55
from typing_extensions import Literal
66

@@ -29,6 +29,12 @@ class Agent(BaseModel):
2929
updated_at: datetime
3030
"""The timestamp when the agent was last updated"""
3131

32+
registered_at: Optional[datetime] = None
33+
"""The timestamp when the agent was last registered"""
34+
35+
registration_metadata: Optional[Dict[str, object]] = None
36+
"""The metadata for the agent's registration."""
37+
3238
status: Optional[Literal["Pending", "Building", "Ready", "Failed", "Unknown"]] = None
3339
"""The status of the action, indicating if it's building, ready, failed, etc."""
3440

src/agentex/types/task.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ class Task(BaseModel):
2222

2323
status_reason: Optional[str] = None
2424

25+
task_metadata: Optional[Dict[str, object]] = None
26+
2527
updated_at: Optional[datetime] = None

0 commit comments

Comments
 (0)