Skip codex tool-call transcripts in realtime handoff

Stop copying Codex tool-call arguments into realtime handoff input transcripts so delegated text only comes from the tool-call transcription path.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-03-18 15:19:25 -07:00
parent e5de13644d
commit e0cd05b999
3 changed files with 4 additions and 26 deletions

View File

@@ -450,7 +450,7 @@ async fn realtime_ws_e2e_realtime_v2_parser_emits_handoff_requested() {
RealtimeEvent::HandoffRequested(RealtimeHandoffRequested {
handoff_id: "call_123".to_string(),
item_id: "item_123".to_string(),
input_transcript: "delegate now".to_string(),
input_transcript: String::new(),
active_transcript: Vec::new(),
})
);