diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6bc1697d..4208b5cb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.3" + ".": "0.6.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 5f495181..d93f3421 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 34 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-2b422fbf02ff3b77795fb8c71cbe784de3a3add48560655ba4fe7f3fcc509995.yml -openapi_spec_hash: bca5c04d823694c87417dae188480291 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-0556db8b729c565a582332ce7e175b6b0d95e0d56addd543673a9e52ebd5d58b.yml +openapi_spec_hash: 8c0f9039f66b0017b2dea4574efefed4 config_hash: 0197f86ba1a4b1b5ce813d0e62138588 diff --git a/CHANGELOG.md b/CHANGELOG.md index ca1dd4cc..3b3cf1fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.6.0 (2025-11-04) + +Full Changelog: [v0.5.3...v0.6.0](https://github.com/scaleapi/scale-agentex-python/compare/v0.5.3...v0.6.0) + +### Features + +* **api:** api update ([ec61dd3](https://github.com/scaleapi/scale-agentex-python/commit/ec61dd3124fbf169dcdcced262a30bfbed080b5f)) + + +### Chores + +* **internal:** grammar fix (it's -> its) ([36e27da](https://github.com/scaleapi/scale-agentex-python/commit/36e27daed52435b300f090ac4643cd502a817a1e)) + ## 0.5.3 (2025-10-31) Full Changelog: [v0.5.2...v0.5.3](https://github.com/scaleapi/scale-agentex-python/compare/v0.5.2...v0.5.3) diff --git a/pyproject.toml b/pyproject.toml index 8f9ca01d..6ad25778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentex-sdk" -version = "0.5.3" +version = "0.6.0" description = "The official Python library for the agentex API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/agentex/_utils/_utils.py b/src/agentex/_utils/_utils.py index 50d59269..eec7f4a1 100644 --- a/src/agentex/_utils/_utils.py +++ b/src/agentex/_utils/_utils.py @@ -133,7 +133,7 @@ def is_given(obj: _T | NotGiven | Omit) -> TypeGuard[_T]: # Type safe methods for narrowing types with TypeVars. # The default narrowing for isinstance(obj, dict) is dict[unknown, unknown], # however this cause Pyright to rightfully report errors. As we know we don't -# care about the contained types we can safely use `object` in it's place. +# care about the contained types we can safely use `object` in its place. # # There are two separate functions defined, `is_*` and `is_*_t` for different use cases. # `is_*` is for when you're dealing with an unknown input diff --git a/src/agentex/_version.py b/src/agentex/_version.py index 501d1b1e..d98070dd 100644 --- a/src/agentex/_version.py +++ b/src/agentex/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "agentex" -__version__ = "0.5.3" # x-release-please-version +__version__ = "0.6.0" # x-release-please-version diff --git a/src/agentex/types/acp_type.py b/src/agentex/types/acp_type.py index ec86ddf5..8b70a292 100644 --- a/src/agentex/types/acp_type.py +++ b/src/agentex/types/acp_type.py @@ -4,4 +4,4 @@ __all__ = ["AcpType"] -AcpType: TypeAlias = Literal["sync", "agentic"] +AcpType: TypeAlias = Literal["sync", "async", "agentic"] diff --git a/src/agentex/types/agent.py b/src/agentex/types/agent.py index 731332ab..19633b61 100644 --- a/src/agentex/types/agent.py +++ b/src/agentex/types/agent.py @@ -15,7 +15,7 @@ class Agent(BaseModel): """The unique identifier of the agent.""" acp_type: AcpType - """The type of the ACP Server (Either sync or agentic)""" + """The type of the ACP Server (Either sync or async)""" created_at: datetime """The timestamp when the agent was created"""