Skip to content

Commit b3a0a91

Browse files
feat(api): add codex broker mount protocol and axon attach enum value (#10186)
1 parent 0000c52 commit b3a0a91

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 119
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-99b4be5cc4cd6f2e1cfd71d5a9ec5409dd9293fe6084833da76f178010bfdcab.yml
3-
openapi_spec_hash: 4760825b37e131da53c88bf893b60937
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai/runloop-0c2afaabf6aab84a49eaf4f94efa48a70afe47a73c6a684f38c0909a8f6ae15b.yml
3+
openapi_spec_hash: cf9b348173a796db0252c59468a464f7
44
config_hash: 9f32651e6269089b5d6c33594b992232

src/runloop_api_client/types/shared/broker_mount.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ 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).
20+
Used by protocols that launch a subprocess (acp, claude_json, codex_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).
26+
Used by protocols that launch a subprocess (acp, claude_json, codex_json).
2727
"""
2828

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

3232
working_directory: Optional[str] = None

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,16 +19,16 @@ 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).
22+
Used by protocols that launch a subprocess (acp, claude_json, codex_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).
28+
Used by protocols that launch a subprocess (acp, claude_json, codex_json).
2929
"""
3030

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

3434
working_directory: Optional[str]

0 commit comments

Comments
 (0)