From da667b1f568dbc7b6146a80fee638fb171721c31 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Thu, 8 Jan 2026 15:01:07 +0000 Subject: [PATCH] chore: drop useless interaction_input (#8907) --- codex-rs/core/src/tools/events.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/codex-rs/core/src/tools/events.rs b/codex-rs/core/src/tools/events.rs index 02aa50d7b..ba720918b 100644 --- a/codex-rs/core/src/tools/events.rs +++ b/codex-rs/core/src/tools/events.rs @@ -100,7 +100,6 @@ pub(crate) enum ToolEmitter { command: Vec, cwd: PathBuf, source: ExecCommandSource, - interaction_input: Option, parsed_cmd: Vec, process_id: Option, }, @@ -141,7 +140,6 @@ impl ToolEmitter { command: command.to_vec(), cwd, source, - interaction_input: None, // TODO(jif) drop this field in the protocol. parsed_cmd, process_id, } @@ -231,7 +229,6 @@ impl ToolEmitter { command, cwd, source, - interaction_input, parsed_cmd, process_id, }, @@ -244,7 +241,7 @@ impl ToolEmitter { cwd.as_path(), parsed_cmd, *source, - interaction_input.as_deref(), + None, process_id.as_deref(), ), stage,