Skip to content

Commit 118162e

Browse files
fix(broker): remove codex in favor of codex via acp (#8602)
1 parent 5ce9b5d commit 118162e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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: 109
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-0a2dfe3cc4b6bc1f5505ca129f672ff3ab2669b4b4194dc1abce7423ee7e3a8b.yml
3-
openapi_spec_hash: 88104e9274c509dbefca3775f3dfa581
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-07efaf8d4a6487d9682186239706cf0da903131db3ca8ce52fb09a8103f4a091.yml
3+
openapi_spec_hash: b29e96f8962659b2977a0bb178cfe404
44
config_hash: ecb1ff09d29b565ed1452b5e0362e64d

src/runloop_api_client/types/shared/broker_mount.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ class BrokerMount(BaseModel):
1717
agent_binary: Optional[str] = None
1818
"""Binary to launch the agent (e.g., 'opencode').
1919
20-
Used by protocols that launch a subprocess (acp, claude_json, codex_app_server).
20+
Used by protocols that launch a subprocess (acp, claude_json).
2121
"""
2222

2323
launch_args: Optional[List[str]] = None
2424
"""Arguments to pass to the agent command (e.g., ['acp']).
2525
26-
Used by protocols that launch a subprocess (acp, claude_json, codex_app_server).
26+
Used by protocols that launch a subprocess (acp, claude_json).
2727
"""
2828

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

src/runloop_api_client/types/shared_params/broker_mount.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ class BrokerMount(TypedDict, total=False):
1919
agent_binary: Optional[str]
2020
"""Binary to launch the agent (e.g., 'opencode').
2121
22-
Used by protocols that launch a subprocess (acp, claude_json, codex_app_server).
22+
Used by protocols that launch a subprocess (acp, claude_json).
2323
"""
2424

2525
launch_args: Optional[SequenceNotStr[str]]
2626
"""Arguments to pass to the agent command (e.g., ['acp']).
2727
28-
Used by protocols that launch a subprocess (acp, claude_json, codex_app_server).
28+
Used by protocols that launch a subprocess (acp, claude_json).
2929
"""
3030

31-
protocol: Optional[Literal["acp", "claude_json", "codex_app_server"]]
31+
protocol: Optional[Literal["acp", "claude_json"]]
3232
"""The protocol used by the broker to deliver events to the agent."""

0 commit comments

Comments
 (0)