Skip to content

Commit ca8503f

Browse files
fix(broker): broker protocol renames for clarity / future proof (#8285)
1 parent f9ec783 commit ca8503f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 122
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-efb88e3669a1c631b1537bb0872c94d29586dfc6e9f403418cdc53a21efdb0bc.yml
3-
openapi_spec_hash: 55189696e264bf48a712acf4df21a807
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-9e0cbe82902910e818ebad8e8633d6e8730c288fbecc105c26fe3f1a571928c1.yml
3+
openapi_spec_hash: 558fa609a2b40ebf526e47f7e1af4491
44
config_hash: 2dbb07d90e3e2d37fa6645af119965d5

src/runloop_api_client/types/shared/broker_mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ class BrokerMount(BaseModel):
2020
launch_args: Optional[List[str]] = None
2121
"""Arguments to pass to the agent command (e.g., ['acp']). Used by ACP broker."""
2222

23-
protocol: Optional[Literal["acp", "claude", "codex"]] = None
23+
protocol: Optional[Literal["acp", "claude_json", "codex_app_server"]] = None
2424
"""The protocol used by the broker to deliver events to the agent."""

src/runloop_api_client/types/shared_params/broker_mount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ class BrokerMount(TypedDict, total=False):
2222
launch_args: Optional[SequenceNotStr[str]]
2323
"""Arguments to pass to the agent command (e.g., ['acp']). Used by ACP broker."""
2424

25-
protocol: Optional[Literal["acp", "claude", "codex"]]
25+
protocol: Optional[Literal["acp", "claude_json", "codex_app_server"]]
2626
"""The protocol used by the broker to deliver events to the agent."""

0 commit comments

Comments
 (0)