Merge fa2980960b into sapling-pr-archive-bolinfest

This commit is contained in:
Michael Bolin
2026-05-28 09:47:01 -07:00
committed by GitHub

View File

@@ -271,6 +271,11 @@ mod tests {
session
.record_conversation_items(&turn, std::slice::from_ref(&history_item))
.await;
let raw_history_event = rx.recv().await.expect("history raw response item event");
let EventMsg::RawResponseItem(raw_history_item) = raw_history_event.msg else {
panic!("expected raw response item event");
};
assert_eq!(raw_history_item.item, history_item);
let invocation = ToolInvocation {
session,
turn,