Skip to content

Commit 3e5a25f

Browse files
authored
Merge pull request #21 from scaleapi/release-please--branches--main--changes--next
release: 0.1.1
2 parents 2ae3bf7 + 35cbb0e commit 3e5a25f

File tree

9 files changed

+20
-19
lines changed

9 files changed

+20
-19
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.1.0"
2+
".": "0.1.1"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 34
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-62a09183a027c64707ad1b9d7a5ccc66c8abf3965e6075282cb5ab72f742a2b3.yml
33
openapi_spec_hash: 47f43703822077a82e2edf82d4b7e0e5
4-
config_hash: 8691ea87e9147c7f77e63100041c1a3c
4+
config_hash: 8d5db979856e35045ae2cdc248ddae47

CHANGELOG.md

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

3+
## 0.1.1 (2025-07-24)
4+
5+
Full Changelog: [v0.1.0...v0.1.1](https://github.com/scaleapi/agentex-python/compare/v0.1.0...v0.1.1)
6+
7+
### Features
8+
9+
* **api:** manual updates ([714e97e](https://github.com/scaleapi/agentex-python/commit/714e97ed1813a4a91b421fb77fadaf2afac2450d))
10+
* **api:** manual updates ([8dccfbd](https://github.com/scaleapi/agentex-python/commit/8dccfbdd9b8b887bfb99c79a9a28163215560ae4))
11+
* **api:** manual updates ([03af884](https://github.com/scaleapi/agentex-python/commit/03af884e31a3df4d42a863c06c5ab4dfc2374374))
12+
313
## 0.1.0 (2025-07-23)
414

515
Full Changelog: [v0.1.0-alpha.6...v0.1.0](https://github.com/scaleapi/agentex-python/compare/v0.1.0-alpha.6...v0.1.0)

api.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# Shared Types
2-
3-
```python
4-
from agentex.types import TaskMessageUpdate
5-
```
6-
71
# Agents
82

93
Types:

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

src/agentex/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from .agent import Agent as Agent
88
from .event import Event as Event
99
from .state import State as State
10-
from .shared import TaskMessageUpdate as TaskMessageUpdate
1110
from .acp_type import AcpType as AcpType
1211
from .data_delta import DataDelta as DataDelta
1312
from .text_delta import TextDelta as TextDelta
@@ -38,6 +37,7 @@
3837
from .state_create_params import StateCreateParams as StateCreateParams
3938
from .state_list_response import StateListResponse as StateListResponse
4039
from .state_update_params import StateUpdateParams as StateUpdateParams
40+
from .task_message_update import TaskMessageUpdate as TaskMessageUpdate
4141
from .tool_response_delta import ToolResponseDelta as ToolResponseDelta
4242
from .tracker_list_params import TrackerListParams as TrackerListParams
4343
from .task_delete_response import TaskDeleteResponse as TaskDeleteResponse

src/agentex/types/shared/__init__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/agentex/types/shared/task_message_update.py renamed to src/agentex/types/task_message_update.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from typing import Union, Optional
44
from typing_extensions import Literal, Annotated, TypeAlias
55

6-
from ..._utils import PropertyInfo
7-
from ..._models import BaseModel
8-
from ..task_message import TaskMessage
9-
from ..task_message_delta import TaskMessageDelta
10-
from ..task_message_content import TaskMessageContent
6+
from .._utils import PropertyInfo
7+
from .._models import BaseModel
8+
from .task_message import TaskMessage
9+
from .task_message_delta import TaskMessageDelta
10+
from .task_message_content import TaskMessageContent
1111

1212
__all__ = [
1313
"TaskMessageUpdate",

0 commit comments

Comments
 (0)