diff --git a/codex-rs/tui/src/chatwidget/tests.rs b/codex-rs/tui/src/chatwidget/tests.rs index ffc571288a..b7c5486b1f 100644 --- a/codex-rs/tui/src/chatwidget/tests.rs +++ b/codex-rs/tui/src/chatwidget/tests.rs @@ -199,6 +199,7 @@ async fn resumed_initial_messages_render_history() { EventMsg::AgentMessage(AgentMessageEvent { message: "assistant reply".to_string(), phase: None, + memory_citation: None, }), ]), network_proxy: None, @@ -247,6 +248,7 @@ async fn thread_snapshot_replay_does_not_duplicate_agent_message_history() { text: "assistant reply".to_string(), }], phase: None, + memory_citation: None, }), }), }); @@ -255,6 +257,7 @@ async fn thread_snapshot_replay_does_not_duplicate_agent_message_history() { msg: EventMsg::AgentMessage(AgentMessageEvent { message: "assistant reply".to_string(), phase: None, + memory_citation: None, }), }); @@ -1543,6 +1546,7 @@ async fn live_agent_message_renders_during_review_mode() { msg: EventMsg::AgentMessage(AgentMessageEvent { message: "Review progress update".to_string(), phase: None, + memory_citation: None, }), }); @@ -1569,6 +1573,7 @@ async fn thread_snapshot_replay_preserves_agent_message_during_review_mode() { msg: EventMsg::AgentMessage(AgentMessageEvent { message: "Review progress update".to_string(), phase: None, + memory_citation: None, }), }); @@ -3532,6 +3537,7 @@ fn complete_assistant_message( text: text.to_string(), }], phase, + memory_citation: None, }), }), }); @@ -4127,6 +4133,7 @@ async fn live_legacy_agent_message_after_item_completed_does_not_duplicate_assis msg: EventMsg::AgentMessage(AgentMessageEvent { message: "hello".into(), phase: Some(MessagePhase::FinalAnswer), + memory_citation: None, }), }); @@ -5933,6 +5940,7 @@ async fn slash_copy_is_unavailable_when_legacy_agent_message_is_not_repeated_on_ msg: EventMsg::AgentMessage(AgentMessageEvent { message: "Legacy final message".into(), phase: None, + memory_citation: None, }), }); let _ = drain_insert_history(&mut rx); @@ -10684,6 +10692,7 @@ async fn deltas_then_same_final_message_are_rendered_snapshot() { msg: EventMsg::AgentMessage(AgentMessageEvent { message: "Here is the result.".into(), phase: None, + memory_citation: None, }), }); diff --git a/codex-rs/tui_app_server/src/multi_agents.rs b/codex-rs/tui_app_server/src/multi_agents.rs index b8e8ef0cb2..672e20e1a2 100644 --- a/codex-rs/tui_app_server/src/multi_agents.rs +++ b/codex-rs/tui_app_server/src/multi_agents.rs @@ -570,7 +570,6 @@ fn status_summary_spans(status: &AgentStatus) -> Vec> { } spans } - AgentStatus::Interrupted => vec![Span::from("Interrupted").magenta()], AgentStatus::Shutdown => vec![Span::from("Shutdown")], AgentStatus::NotFound => vec![Span::from("Not found").red()], }