@@ -107,6 +107,7 @@ impl ConversationHistory {
107107 call_id : call_id. clone ( ) ,
108108 output : FunctionCallOutputPayload {
109109 content : "aborted" . to_string ( ) ,
110+ content_items : None ,
110111 success : None ,
111112 } ,
112113 } ,
@@ -154,6 +155,7 @@ impl ConversationHistory {
154155 call_id : call_id. clone ( ) ,
155156 output : FunctionCallOutputPayload {
156157 content : "aborted" . to_string ( ) ,
158+ content_items : None ,
157159 success : None ,
158160 } ,
159161 } ,
@@ -448,6 +450,7 @@ mod tests {
448450 call_id: "call-1" . to_string( ) ,
449451 output: FunctionCallOutputPayload {
450452 content: "ok" . to_string( ) ,
453+ content_items: None ,
451454 success: None ,
452455 } ,
453456 } ,
@@ -464,6 +467,7 @@ mod tests {
464467 call_id: "call-2" . to_string( ) ,
465468 output: FunctionCallOutputPayload {
466469 content: "ok" . to_string( ) ,
470+ content_items: None ,
467471 success: None ,
468472 } ,
469473 } ,
@@ -498,6 +502,7 @@ mod tests {
498502 call_id: "call-3" . to_string( ) ,
499503 output: FunctionCallOutputPayload {
500504 content: "ok" . to_string( ) ,
505+ content_items: None ,
501506 success: None ,
502507 } ,
503508 } ,
@@ -554,6 +559,7 @@ mod tests {
554559 call_id: "call-x" . to_string( ) ,
555560 output: FunctionCallOutputPayload {
556561 content: "aborted" . to_string( ) ,
562+ content_items: None ,
557563 success: None ,
558564 } ,
559565 } ,
@@ -631,6 +637,7 @@ mod tests {
631637 call_id: "shell-1" . to_string( ) ,
632638 output: FunctionCallOutputPayload {
633639 content: "aborted" . to_string( ) ,
640+ content_items: None ,
634641 success: None ,
635642 } ,
636643 } ,
@@ -645,6 +652,7 @@ mod tests {
645652 call_id: "orphan-1" . to_string( ) ,
646653 output: FunctionCallOutputPayload {
647654 content: "ok" . to_string( ) ,
655+ content_items: None ,
648656 success: None ,
649657 } ,
650658 } ] ;
@@ -685,6 +693,7 @@ mod tests {
685693 call_id: "c2" . to_string( ) ,
686694 output: FunctionCallOutputPayload {
687695 content: "ok" . to_string( ) ,
696+ content_items: None ,
688697 success: None ,
689698 } ,
690699 } ,
@@ -727,6 +736,7 @@ mod tests {
727736 call_id: "c1" . to_string( ) ,
728737 output: FunctionCallOutputPayload {
729738 content: "aborted" . to_string( ) ,
739+ content_items: None ,
730740 success: None ,
731741 } ,
732742 } ,
@@ -757,6 +767,7 @@ mod tests {
757767 call_id: "s1" . to_string( ) ,
758768 output: FunctionCallOutputPayload {
759769 content: "aborted" . to_string( ) ,
770+ content_items: None ,
760771 success: None ,
761772 } ,
762773 } ,
@@ -822,6 +833,7 @@ mod tests {
822833 call_id: "orphan-1" . to_string( ) ,
823834 output: FunctionCallOutputPayload {
824835 content: "ok" . to_string( ) ,
836+ content_items: None ,
825837 success: None ,
826838 } ,
827839 } ] ;
@@ -856,6 +868,7 @@ mod tests {
856868 call_id: "c2" . to_string( ) ,
857869 output: FunctionCallOutputPayload {
858870 content: "ok" . to_string( ) ,
871+ content_items: None ,
859872 success: None ,
860873 } ,
861874 } ,
0 commit comments