Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions codex-rs/core/src/tools/events.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ pub(crate) enum ToolEmitter {
command: Vec<String>,
cwd: PathBuf,
source: ExecCommandSource,
interaction_input: Option<String>,
parsed_cmd: Vec<ParsedCommand>,
process_id: Option<String>,
},
Expand Down Expand Up @@ -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,
}
Expand Down Expand Up @@ -231,7 +229,6 @@ impl ToolEmitter {
command,
cwd,
source,
interaction_input,
parsed_cmd,
process_id,
},
Expand All @@ -244,7 +241,7 @@ impl ToolEmitter {
cwd.as_path(),
parsed_cmd,
*source,
interaction_input.as_deref(),
None,
process_id.as_deref(),
),
stage,
Expand Down
Loading