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 @@
{
".": "1.28.0"
".": "1.29.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: 120
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-c1b0e0d2c2bf9d7888ddef0cfdfb390458875cd2c1feb48a06fcd06e92105326.yml
openapi_spec_hash: ec61cf6d205251b54e1a6d68d9dd9860
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-655842d2f92e9a3525185c38986cfe40c08b4bab35d39384d519bc502f415904.yml
openapi_spec_hash: fabc1067256c27f29fc1225c1ea871bf
config_hash: 6d102da8b9fcc3d0deb42d7a707e78c6
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.29.0 (2026-07-31)

Full Changelog: [v1.28.0...v1.29.0](https://github.com/runloopai/api-client-python/compare/v1.28.0...v1.29.0)

### Features

* **broker:** plumb Pi protocol selection ([#10256](https://github.com/runloopai/api-client-python/issues/10256)) ([974d52b](https://github.com/runloopai/api-client-python/commit/974d52b8743ceda8a7127e3a3432ce51e71b1bfd))
* **converter:** add Helm chart, container image, and enable in dev ([#10405](https://github.com/runloopai/api-client-python/issues/10405)) ([0d5ca34](https://github.com/runloopai/api-client-python/commit/0d5ca3438ac4cbcafdfaf7584042bd78a956e3ae))

## 1.28.0 (2026-07-29)

Full Changelog: [v1.27.0...v1.28.0](https://github.com/runloopai/api-client-python/compare/v1.27.0...v1.28.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 = "runloop_api_client"
version = "1.28.0"
version = "1.29.0"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/runloop_api_client/_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__ = "runloop_api_client"
__version__ = "1.28.0" # x-release-please-version
__version__ = "1.29.0" # x-release-please-version
2 changes: 1 addition & 1 deletion src/runloop_api_client/types/blueprint_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class BlueprintView(BaseModel):
state: Literal["created", "deleted"]
"""The state of the Blueprint."""

status: Literal["queued", "provisioning", "building", "failed", "build_complete"]
status: Literal["queued", "provisioning", "building", "awaiting_upload", "failed", "build_complete"]
"""The status of the Blueprint build."""

base_blueprint_id: Optional[str] = None
Expand Down
8 changes: 5 additions & 3 deletions src/runloop_api_client/types/shared/broker_mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ class BrokerMount(BaseModel):
agent_binary: Optional[str] = None
"""Binary to launch the agent (e.g., 'opencode').

Used by protocols that launch a subprocess (acp, claude_json, codex_json).
Used by protocols that launch a subprocess (acp, claude_json, codex_json,
pi_json).
"""

launch_args: Optional[List[str]] = None
"""Arguments to pass to the agent command (e.g., ['acp']).

Used by protocols that launch a subprocess (acp, claude_json, codex_json).
Used by protocols that launch a subprocess (acp, claude_json, codex_json,
pi_json).
"""

protocol: Optional[Literal["acp", "claude_json", "codex_json"]] = None
protocol: Optional[Literal["acp", "claude_json", "codex_json", "pi_json"]] = None
"""The protocol used by the broker to deliver events to the agent."""

working_directory: Optional[str] = None
Expand Down
8 changes: 5 additions & 3 deletions src/runloop_api_client/types/shared_params/broker_mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ class BrokerMount(TypedDict, total=False):
agent_binary: Optional[str]
"""Binary to launch the agent (e.g., 'opencode').

Used by protocols that launch a subprocess (acp, claude_json, codex_json).
Used by protocols that launch a subprocess (acp, claude_json, codex_json,
pi_json).
"""

launch_args: Optional[SequenceNotStr[str]]
"""Arguments to pass to the agent command (e.g., ['acp']).

Used by protocols that launch a subprocess (acp, claude_json, codex_json).
Used by protocols that launch a subprocess (acp, claude_json, codex_json,
pi_json).
"""

protocol: Optional[Literal["acp", "claude_json", "codex_json"]]
protocol: Optional[Literal["acp", "claude_json", "codex_json", "pi_json"]]
"""The protocol used by the broker to deliver events to the agent."""

working_directory: Optional[str]
Expand Down