mirror of
https://github.com/openai/codex.git
synced 2026-08-23 13:09:46 +00:00
## What changed - Add the `codex.code_mode.v1` protobuf API for managing code-mode sessions, executions, waits, tool callbacks, notifications, and content results. - Generate and export the Rust client/server bindings with `tonic` under Cargo. - Add Bazel protobuf targets and a `prost` toolchain that uses the workspace's Rust runtime versions. GitOrigin-RevId: 51d9d044e01dab2f4d25ab79aa7a52585485eee3
6 lines
141 B
Rust
6 lines
141 B
Rust
#[cfg(codex_bazel)]
|
|
pub use code_mode_proto::codex::code_mode::v1::*;
|
|
|
|
#[cfg(not(codex_bazel))]
|
|
tonic::include_proto!("codex.code_mode.v1");
|