Skip to content
Open
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.13.0"
".": "0.14.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 23
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta/warp-api-964f646a32c318735de7673531a12788aede1840f7ab4893f2efa31c83440837.yml
openapi_spec_hash: 30f07ff0bfb491efb11cd88fce79968a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta/warp-api-532e80ed769a2649b85798696c2c988d05a2c940c61425a6d6caaf6206beeb28.yml
openapi_spec_hash: 018332ffca594f453bfd0fb348560946
config_hash: 236823a4936c76818117c16aa5c188df
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.14.0 (2026-05-21)

Full Changelog: [v0.13.0...v0.14.0](https://github.com/warpdotdev/oz-sdk-python/compare/v0.13.0...v0.14.0)

### Features

* **api:** api update ([5a09dfd](https://github.com/warpdotdev/oz-sdk-python/commit/5a09dfdad29f12ee7116815f5c25d632cfe0e7cb))

## 0.13.0 (2026-05-21)

Full Changelog: [v0.12.0...v0.13.0](https://github.com/warpdotdev/oz-sdk-python/compare/v0.12.0...v0.13.0)
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 = "oz-agent-sdk"
version = "0.13.0"
version = "0.14.0"
description = "The official Python library for the oz-api API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/oz_agent_sdk/_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__ = "oz_agent_sdk"
__version__ = "0.13.0" # x-release-please-version
__version__ = "0.14.0" # x-release-please-version
3 changes: 3 additions & 0 deletions src/oz_agent_sdk/types/agent/agent_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ class AgentResponse(BaseModel):
uid: str
"""Unique identifier for the agent"""

updated_at: datetime
"""When the agent was last updated (RFC3339)"""

base_harness: Optional[str] = None
"""Default harness for runs executed by this agent.

Expand Down
5 changes: 0 additions & 5 deletions src/oz_agent_sdk/types/gcp_provider_config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Optional

from .._models import BaseModel

__all__ = ["GcpProviderConfig"]
Expand All @@ -18,6 +16,3 @@ class GcpProviderConfig(BaseModel):

workload_identity_federation_provider_id: str
"""Workload Identity Federation provider ID"""

service_account_email: Optional[str] = None
"""Optional GCP service account email to impersonate"""
Loading