runifold-agent 0.9.1

Structured model-tool agent runtime for Runifold
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
//! Canonical Agent execution engine and its private runtime helpers.

use super::checkpointing::{
    AgentProgress, save_checkpoint, validate_exact_usage, validate_usage_floor,
};
use super::completion::TerminalCompletionContext;
use super::observability::{consume_budget, emit_usage, record_domain, terminal_event};
use super::{
    Agent, AgentCheckpoint, AgentCheckpointPhase, AgentCheckpointState, AgentError,
    AgentEventStream, AgentFuture, AgentObserver, AgentOutcome, AgentStreamEvent, Arc,
    BufferedObserver, CheckpointCursor, ContentPart, DurableConversationCheckpoint, Either,
    EventId, Instant, InvocationId, LifecycleEvent, Message, ModelCallContext, ModelError,
    ModelErrorKind, ModelRequest, ModelResponse, ModelStreamAccumulator, NoopObserver,
    ResumePolicy, Role, RunContext, RunEventKind, StreamExt, TOOL_RESULT_EXECUTION_ID_METADATA,
    ToolCall, ToolChoice, Usage, emit_agent_event, select,
};
use crate::conversation::{
    AgentConversationError, AgentConversationOutcome, AutomaticConversationSummary,
    ConversationAppend, ConversationContextPolicy, ConversationId, ConversationStore,
    ConversationSummaryCommit, ConversationSummaryRequest, DurableConversationCommit,
    DurableConversationRequest, DurableConversationStore, MemoryNamespace, SemanticMemoryQuery,
    is_transient_context, semantic_memory_message, summary_message,
};
use runifold_core::{CheckpointId, CheckpointStore};
use runifold_retrieval::RetrievalContext;

impl Agent {
    /// Runs a user text turn with a default root context.
    ///
    /// This is the ergonomic surface for one-off prompts. It grants only
    /// callables registered on this Agent and applies no hard budget limit.
    /// Use [`Self::run`] when the caller must provide explicit authority,
    /// budget, deadline, observability, or run-tree identity.
    pub fn prompt<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
    ) -> AgentFuture<'a, Result<AgentOutcome, AgentError>> {
        let input = input.into();
        Box::pin(async move {
            let run = self.default_run_context();
            self.run(input, &run).await
        })
    }

    /// Runs an ergonomic prompt and returns only model-visible text.
    ///
    /// Rich content, usage, warnings, the canonical transcript, and provider
    /// events are intentionally discarded. Use [`Self::prompt`] when that
    /// information matters.
    pub fn prompt_text<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
    ) -> AgentFuture<'a, Result<String, AgentError>> {
        let input = input.into();
        Box::pin(async move { self.prompt(input).await.map(AgentOutcome::into_text) })
    }

    /// Runs a user text turn inside an existing runtime context.
    pub fn run<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
    ) -> AgentFuture<'a, Result<AgentOutcome, AgentError>> {
        let input = input.into();
        let state = self.initial_state(input, InvocationId::new().to_string());
        Box::pin(async move {
            self.execute_state(state, run, None, Arc::new(NoopObserver), true, true)
                .await
        })
    }

    /// Runs and atomically commits one bounded multi-turn conversation.
    ///
    /// Transcript messages remain append-only. Execution-journal events stay
    /// in [`runifold_core::Journal`], summaries remain lossy derived views,
    /// and semantic memory is injected only as explicitly untrusted context.
    pub fn run_conversation<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
        store: &'a dyn ConversationStore,
        conversation_id: ConversationId,
        namespace: MemoryNamespace,
        policy: ConversationContextPolicy,
    ) -> AgentFuture<'a, Result<AgentConversationOutcome, AgentConversationError>> {
        let input = input.into();
        Box::pin(async move {
            store.create(conversation_id, namespace.clone()).await?;
            let view = store
                .load_view(
                    conversation_id,
                    namespace.clone(),
                    policy.window,
                    policy.summary_batch,
                )
                .await?;
            if view.requires_summary() {
                return Err(AgentConversationError::SummaryRequired {
                    conversation_id,
                    buffered_entries: u64::try_from(view.summary_buffer.len())
                        .unwrap_or(u64::MAX)
                        .saturating_add(view.summary_backlog),
                });
            }
            let mut transcript = self.instructions.clone();
            if let Some(summary) = &view.summary {
                transcript.push(summary_message(summary));
            }
            if let Some(limit) = policy.semantic_memory_limit {
                let query =
                    SemanticMemoryQuery::new(namespace.clone(), input.clone(), limit.get())?;
                let search = store
                    .search_memory_scoped(query, RetrievalContext::for_run(run))
                    .await?;
                if search.usage != Usage::default() {
                    consume_budget(run, search.usage, None).map_err(AgentConversationError::Run)?;
                }
                if let Some(message) = semantic_memory_message(&search.memories) {
                    transcript.push(message);
                }
            }
            transcript.extend(view.window.iter().map(|entry| entry.message.clone()));
            let persisted_prefix_len = transcript.len();
            transcript.push(Message::user(input));
            let state =
                self.initial_state_from_transcript(transcript, InvocationId::new().to_string());
            let outcome = self
                .execute_state(state, run, None, Arc::new(NoopObserver), true, true)
                .await
                .map_err(AgentConversationError::Run)?;
            let messages = outcome
                .transcript
                .iter()
                .skip(persisted_prefix_len)
                .filter(|message| !is_transient_context(message))
                .cloned()
                .collect();
            let append = ConversationAppend {
                conversation_id,
                expected_version: view.version,
                messages,
            };
            match store.append(namespace, append).await {
                Ok(conversation_version) => Ok(AgentConversationOutcome {
                    outcome,
                    conversation_version,
                }),
                Err(source) => Err(AgentConversationError::Commit {
                    source,
                    outcome: Box::new(outcome),
                }),
            }
        })
    }

    /// Summarizes an overflowing prefix before running a conversational turn.
    ///
    /// Summary generation uses the supplied [`AutomaticConversationSummary`]
    /// and the same [`RunContext`], preserving cancellation, deadline, budget,
    /// and journal behavior. The immutable transcript is never rewritten.
    pub fn run_conversation_with_summary<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
        store: &'a dyn ConversationStore,
        conversation_id: ConversationId,
        namespace: MemoryNamespace,
        automatic_summary: AutomaticConversationSummary<'a>,
    ) -> AgentFuture<'a, Result<AgentConversationOutcome, AgentConversationError>> {
        let input = input.into();
        Box::pin(async move {
            let policy = automatic_summary.context;
            store.create(conversation_id, namespace.clone()).await?;
            for pass in 0..automatic_summary.max_passes.get() {
                let view = store
                    .load_view(
                        conversation_id,
                        namespace.clone(),
                        policy.window,
                        policy.summary_batch,
                    )
                    .await?;
                let Some(through_sequence) = view.summary_buffer.last().map(|entry| entry.sequence)
                else {
                    break;
                };
                let summary_backlog = view.summary_backlog;
                let summary = automatic_summary
                    .summarizer
                    .summarize(
                        ConversationSummaryRequest {
                            transcript_version: view.version,
                            previous_summary: view.summary,
                            entries: view.summary_buffer,
                        },
                        run,
                    )
                    .await?;
                store
                    .commit_summary(
                        namespace.clone(),
                        ConversationSummaryCommit {
                            conversation_id,
                            expected_version: view.version,
                            through_sequence,
                            content: summary,
                        },
                    )
                    .await?;
                if summary_backlog == 0 {
                    break;
                }
                if pass + 1 == automatic_summary.max_passes.get() {
                    return Err(AgentConversationError::SummaryPassLimitExceeded {
                        conversation_id,
                        remaining_entries: summary_backlog,
                    });
                }
            }
            self.run_conversation(input, run, store, conversation_id, namespace, policy)
                .await
        })
    }

    /// Streams real-time events while driving the canonical Agent loop.
    pub fn stream<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
    ) -> AgentEventStream<'a> {
        let state = self.initial_state(input.into(), InvocationId::new().to_string());
        let observer = BufferedObserver::default();
        let events = observer.events();
        let execution =
            Box::pin(self.execute_state(state, run, None, Arc::new(observer), true, true));
        AgentEventStream::new(execution, events)
    }

    /// Runs one conversational turn with atomic transcript and checkpoint commit.
    ///
    /// Intermediate checkpoints are written ahead of model and callable work.
    /// The terminal checkpoint and transcript append are committed together by
    /// [`DurableConversationStore`].
    pub fn run_durable_conversation<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
        store: Arc<dyn DurableConversationStore>,
        request: DurableConversationRequest,
    ) -> AgentFuture<'a, Result<AgentConversationOutcome, AgentConversationError>> {
        let input = input.into();
        Box::pin(async move {
            let DurableConversationRequest {
                checkpoint_id,
                conversation_id,
                namespace,
                policy,
            } = request;
            store.create(conversation_id, namespace.clone()).await?;
            let view = store
                .load_view(
                    conversation_id,
                    namespace.clone(),
                    policy.window,
                    policy.summary_batch,
                )
                .await?;
            if view.requires_summary() {
                return Err(AgentConversationError::SummaryRequired {
                    conversation_id,
                    buffered_entries: u64::try_from(view.summary_buffer.len())
                        .unwrap_or(u64::MAX)
                        .saturating_add(view.summary_backlog),
                });
            }
            let mut transcript = self.instructions.clone();
            if let Some(summary) = &view.summary {
                transcript.push(summary_message(summary));
            }
            if let Some(limit) = policy.semantic_memory_limit {
                let query =
                    SemanticMemoryQuery::new(namespace.clone(), input.clone(), limit.get())?;
                let search = store
                    .search_memory_scoped(query, RetrievalContext::for_run(run))
                    .await?;
                if search.usage != Usage::default() {
                    consume_budget(run, search.usage, None).map_err(AgentConversationError::Run)?;
                }
                if let Some(message) = semantic_memory_message(&search.memories) {
                    transcript.push(message);
                }
            }
            transcript.extend(view.window.iter().map(|entry| entry.message.clone()));
            let persisted_prefix_len = u64::try_from(transcript.len()).map_err(|_| {
                AgentConversationError::Run(checkpoint_payload_error(
                    "conversation context length exceeds durable checkpoint range",
                ))
            })?;
            transcript.push(Message::user(input));
            let durable = DurableConversationCheckpoint {
                conversation_id,
                namespace,
                expected_version: view.version,
                persisted_prefix_len,
            };
            let mut state =
                self.initial_state_from_transcript(transcript, checkpoint_id.to_string());
            state.durable_conversation = Some(durable.clone());
            state.usage = run.budget().usage();
            let checkpoint_store: Arc<dyn CheckpointStore> = store.clone();
            let checkpoint = AgentCheckpoint::existing(checkpoint_id, checkpoint_store);
            let mut cursor = CheckpointCursor::create(&checkpoint, run, &state)
                .map_err(AgentConversationError::Run)?;
            let outcome = self
                .execute_state(
                    state,
                    run,
                    Some(&mut cursor),
                    Arc::new(NoopObserver),
                    true,
                    false,
                )
                .await
                .map_err(AgentConversationError::Run)?;
            self.commit_durable_outcome(store.as_ref(), run, &cursor, durable, outcome)
                .await
        })
    }

    /// Resumes a durable conversational turn from its write-ahead checkpoint.
    pub fn resume_durable_conversation<'a>(
        &'a self,
        store: Arc<dyn DurableConversationStore>,
        checkpoint_id: CheckpointId,
        run: &'a RunContext,
        policy: ResumePolicy,
    ) -> AgentFuture<'a, Result<AgentConversationOutcome, AgentConversationError>> {
        Box::pin(async move {
            let checkpoint_store: Arc<dyn CheckpointStore> = store.clone();
            let checkpoint = AgentCheckpoint::existing(checkpoint_id, checkpoint_store);
            let (envelope, mut state) = checkpoint
                .load()
                .map_err(AgentError::from)
                .map_err(AgentConversationError::Run)?;
            self.validate_checkpoint_identity(&state)
                .map_err(AgentConversationError::Run)?;
            let durable = state.durable_conversation.clone().ok_or_else(|| {
                AgentConversationError::Run(checkpoint_payload_error(
                    "checkpoint is not a durable conversation turn",
                ))
            })?;
            if let Some(outcome) = state.outcome() {
                let conversation_version = durable
                    .expected_version
                    .get()
                    .checked_add(1)
                    .map(crate::ConversationVersion::new)
                    .ok_or_else(|| {
                        AgentConversationError::Run(checkpoint_payload_error(
                            "durable conversation version overflow",
                        ))
                    })?;
                return Ok(AgentConversationOutcome {
                    outcome,
                    conversation_version,
                });
            }
            if let Some(error) = state.terminal_failure() {
                validate_exact_usage(state.usage, run.budget().usage())
                    .map_err(AgentConversationError::Run)?;
                return Err(AgentConversationError::Run(error));
            }
            Self::prepare_resume_state(&mut state, run, policy)
                .map_err(AgentConversationError::Run)?;
            let mut cursor = CheckpointCursor::loaded(&checkpoint, envelope);
            let outcome = self
                .execute_state(
                    state,
                    run,
                    Some(&mut cursor),
                    Arc::new(NoopObserver),
                    false,
                    false,
                )
                .await
                .map_err(AgentConversationError::Run)?;
            self.commit_durable_outcome(store.as_ref(), run, &cursor, durable, outcome)
                .await
        })
    }

    /// Runs with write-ahead checkpoint persistence.
    pub fn run_checkpointed<'a>(
        &'a self,
        input: impl Into<String> + Send + 'a,
        run: &'a RunContext,
        checkpoint: &'a AgentCheckpoint,
    ) -> AgentFuture<'a, Result<AgentOutcome, AgentError>> {
        let input = input.into();
        Box::pin(async move {
            let mut state = self.initial_state(input, checkpoint.id().to_string());
            state.usage = run.budget().usage();
            let mut cursor = CheckpointCursor::create(checkpoint, run, &state)?;
            self.execute_state(
                state,
                run,
                Some(&mut cursor),
                Arc::new(NoopObserver),
                true,
                true,
            )
            .await
        })
    }

    /// Resumes a persisted Agent execution.
    pub fn resume<'a>(
        &'a self,
        checkpoint: &'a AgentCheckpoint,
        run: &'a RunContext,
        policy: ResumePolicy,
    ) -> AgentFuture<'a, Result<AgentOutcome, AgentError>> {
        Box::pin(async move {
            let (envelope, mut state) = checkpoint.load()?;
            self.validate_checkpoint_identity(&state)?;
            if let Some(outcome) = state.outcome() {
                validate_exact_usage(state.usage, run.budget().usage())?;
                return Ok(outcome);
            }
            if let Some(error) = state.terminal_failure() {
                validate_exact_usage(state.usage, run.budget().usage())?;
                return Err(error);
            }
            Self::prepare_resume_state(&mut state, run, policy)?;
            let mut cursor = CheckpointCursor::loaded(checkpoint, envelope);
            self.execute_state(
                state,
                run,
                Some(&mut cursor),
                Arc::new(NoopObserver),
                false,
                true,
            )
            .await
        })
    }

    fn initial_state(&self, input: String, execution_id: String) -> AgentCheckpointState {
        let mut transcript = self.instructions.clone();
        transcript.push(Message::user(input));
        self.initial_state_from_transcript(transcript, execution_id)
    }

    fn initial_state_from_transcript(
        &self,
        transcript: Vec<Message>,
        execution_id: String,
    ) -> AgentCheckpointState {
        AgentCheckpointState {
            execution_id,
            agent: self.name.clone(),
            model: self.model_ref.clone(),
            transcript,
            turns: 0,
            tool_calls: 0,
            delegations: 0,
            usage: Usage::default(),
            turn_reviewer: self
                .turn_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            turn_review_policy: self.turn_review.as_ref().map(|review| review.policy),
            turn_reviewer_capabilities: self.turn_review.as_ref().map_or_else(Vec::new, |review| {
                review
                    .capabilities
                    .iter()
                    .map(|capability| capability.id)
                    .collect()
            }),
            terminal_reviewer: self
                .terminal_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            terminal_review_policy: self.terminal_review.as_ref().map(|review| review.policy),
            terminal_reviewer_capabilities: self.terminal_review.as_ref().map_or_else(
                Vec::new,
                |review| {
                    review
                        .capabilities
                        .iter()
                        .map(|capability| capability.id)
                        .collect()
                },
            ),
            phase: AgentCheckpointPhase::ReadyForTurn,
            durable_conversation: None,
        }
    }

    async fn execute_state(
        &self,
        state: AgentCheckpointState,
        run: &RunContext,
        mut checkpoint: Option<&mut CheckpointCursor>,
        observer: Arc<dyn AgentObserver>,
        retrieve_context: bool,
        persist_terminal_checkpoint: bool,
    ) -> Result<AgentOutcome, AgentError> {
        let started = run
            .record(
                RunEventKind::Lifecycle(LifecycleEvent::Started),
                run.caused_by(),
            )?
            .map(|event| event.meta.event_id);
        emit_agent_event(
            observer.as_ref(),
            AgentStreamEvent::Started {
                agent: self.name.clone(),
            },
        )
        .await;
        let result = async {
            let has_context = !self.context.is_empty() || !self.dynamic_context.is_empty();
            let state = if retrieve_context && has_context {
                let mut prepared = self
                    .prepare_context(state, run, started, observer.as_ref())
                    .await?;
                prepared.usage = run.budget().usage();
                save_checkpoint(&mut checkpoint, &prepared)?;
                prepared
            } else {
                state
            };
            self.run_loop(
                state,
                run,
                started,
                checkpoint,
                observer.as_ref(),
                persist_terminal_checkpoint,
            )
            .await
        }
        .await;
        let terminal = terminal_event(&self.name, &result);
        run.record(terminal, started)?;
        if let Ok(outcome) = &result {
            emit_agent_event(
                observer.as_ref(),
                AgentStreamEvent::Completed {
                    outcome: outcome.clone(),
                },
            )
            .await;
        }
        result
    }

    async fn run_loop(
        &self,
        state: AgentCheckpointState,
        run: &RunContext,
        caused_by: Option<EventId>,
        mut checkpoint: Option<&mut CheckpointCursor>,
        observer: &dyn AgentObserver,
        persist_terminal_checkpoint: bool,
    ) -> Result<AgentOutcome, AgentError> {
        self.validate_config()?;
        let completion_context = TerminalCompletionContext {
            caused_by,
            observer,
            persist_terminal_checkpoint,
        };
        let (mut progress, resumed, mut approved_response) = self
            .prepare_run_loop_progress(state, run, &mut checkpoint, &completion_context)
            .await?;
        if let Some(outcome) = resumed {
            return Ok(outcome);
        }

        loop {
            Self::check_lifecycle(run)?;
            let Some((response, requires_tool)) = self
                .next_reviewed_response(
                    approved_response.take(),
                    &mut progress,
                    run,
                    &mut checkpoint,
                    &completion_context,
                )
                .await?
            else {
                continue;
            };
            let calls = tool_calls_from(&response.content);
            if calls.is_empty() {
                if self.continue_provider_turn(
                    response.clone(),
                    &mut progress,
                    run,
                    &mut checkpoint,
                )? {
                    continue;
                }
                if matches!(
                    response.finish_reason,
                    runifold_model::FinishReason::ToolCalls
                ) && !response.content.is_empty()
                {
                    return Err(AgentError::Protocol(
                        "model stopped for tool calls without emitting a tool call".into(),
                    ));
                }
                if requires_tool {
                    return Err(AgentError::ToolRequirementUnsatisfied {
                        required: self.min_successful_tool_calls,
                        successful: self.successful_local_tool_calls(&progress)?,
                    });
                }
                if let Some(outcome) = self
                    .complete_terminal_candidate(
                        response,
                        run,
                        &mut progress,
                        &mut checkpoint,
                        TerminalCompletionContext {
                            caused_by,
                            observer,
                            persist_terminal_checkpoint,
                        },
                    )
                    .await?
                {
                    return Ok(outcome);
                }
                continue;
            }

            let assistant = Message::new(Role::Assistant, response.content.clone())
                .map_err(|error| AgentError::Protocol(error.to_string()))?;
            progress.transcript.push(assistant);

            self.execute_calls(calls, run, caused_by, &mut progress, observer)
                .await?;
            save_checkpoint(
                &mut checkpoint,
                &self.checkpoint_state(&progress, run, AgentCheckpointPhase::ReadyForTurn),
            )?;
        }
    }

    async fn next_reviewed_response(
        &self,
        approved_response: Option<ModelResponse>,
        progress: &mut AgentProgress,
        run: &RunContext,
        checkpoint: &mut Option<&mut CheckpointCursor>,
        context: &TerminalCompletionContext<'_>,
    ) -> Result<Option<(ModelResponse, bool)>, AgentError> {
        let (response, requires_tool, already_reviewed) = if let Some(response) = approved_response
        {
            let requires_tool =
                self.successful_local_tool_calls(progress)? < self.min_successful_tool_calls;
            (response, requires_tool, true)
        } else {
            let tool_choice = self
                .begin_turn(
                    progress,
                    run,
                    checkpoint,
                    context.caused_by,
                    context.observer,
                )
                .await?;
            let requires_tool = matches!(tool_choice, ToolChoice::Required);
            let response = self
                .invoke_model(
                    &progress.transcript,
                    run,
                    progress.turns,
                    tool_choice,
                    context.caused_by,
                    context.observer,
                )
                .await?;
            (response, requires_tool, false)
        };

        let calls = tool_calls_from(&response.content);
        validate_tool_call_completion(&calls, &response.finish_reason)?;
        if already_reviewed
            || !self
                .turn_review
                .as_ref()
                .is_some_and(|review| review.policy.scope().includes(&response))
        {
            return Ok(Some((response, requires_tool)));
        }

        save_checkpoint(
            checkpoint,
            &self.checkpoint_state(
                progress,
                run,
                AgentCheckpointPhase::TurnReviewReady {
                    response: Box::new(response.clone()),
                    turn: progress.turns,
                },
            ),
        )?;
        let response = self
            .review_turn_candidate(response, run, progress, checkpoint, context)
            .await?;
        Ok(response.map(|response| (response, requires_tool)))
    }

    async fn begin_turn(
        &self,
        progress: &mut AgentProgress,
        run: &RunContext,
        checkpoint: &mut Option<&mut CheckpointCursor>,
        caused_by: Option<EventId>,
        observer: &dyn AgentObserver,
    ) -> Result<ToolChoice, AgentError> {
        let tool_choice = self.next_tool_choice(progress, run)?;
        save_checkpoint(
            checkpoint,
            &self.checkpoint_state(
                progress,
                run,
                AgentCheckpointPhase::TurnInFlight {
                    turn: progress.turns + 1,
                },
            ),
        )?;
        consume_budget(
            run,
            Usage {
                turns: 1,
                ..Usage::default()
            },
            caused_by,
        )?;
        progress.turns += 1;
        emit_agent_event(
            observer,
            AgentStreamEvent::TurnStarted {
                turn: progress.turns,
            },
        )
        .await;
        emit_usage(observer, run).await;
        self.record_turn_started(run, progress.turns, caused_by)?;
        Ok(tool_choice)
    }

    fn record_turn_started(
        &self,
        run: &RunContext,
        turn: u32,
        caused_by: Option<EventId>,
    ) -> Result<(), AgentError> {
        record_domain(
            run,
            "turn.started",
            serde_json::json!({"agent": self.name, "turn": turn}),
            caused_by,
        )
    }

    fn continue_provider_turn(
        &self,
        response: ModelResponse,
        progress: &mut AgentProgress,
        run: &RunContext,
        checkpoint: &mut Option<&mut CheckpointCursor>,
    ) -> Result<bool, AgentError> {
        if !matches!(
            &response.finish_reason,
            runifold_model::FinishReason::Other(reason) if reason == "pause_turn"
        ) {
            return Ok(false);
        }
        let assistant = Message::new(Role::Assistant, response.content)
            .map_err(|error| AgentError::Protocol(error.to_string()))?;
        progress.transcript.push(assistant);
        save_checkpoint(
            checkpoint,
            &self.checkpoint_state(progress, run, AgentCheckpointPhase::ReadyForTurn),
        )?;
        Ok(true)
    }

    async fn invoke_model(
        &self,
        transcript: &[Message],
        run: &RunContext,
        turn: u32,
        tool_choice: ToolChoice,
        caused_by: Option<EventId>,
        observer: &dyn AgentObserver,
    ) -> Result<ModelResponse, AgentError> {
        record_domain(
            run,
            "model.started",
            serde_json::json!({
                "agent": self.name,
                "turn": turn,
                "provider": self.model_ref.provider,
                "model": self.model_ref.name,
            }),
            caused_by,
        )?;
        let response = match self
            .stream_model_response(self.request(transcript, tool_choice)?, run, turn, observer)
            .await
        {
            Ok(response) => response,
            Err(error) => {
                record_domain(
                    run,
                    "model.failed",
                    serde_json::json!({
                        "agent": self.name,
                        "turn": turn,
                        "kind": format!("{:?}", error.kind),
                    }),
                    caused_by,
                )?;
                return Err(error.into());
            }
        };
        record_domain(
            run,
            "model.completed",
            serde_json::json!({
                "agent": self.name,
                "turn": turn,
                "finish_reason": response.finish_reason,
                "usage": response.usage,
            }),
            caused_by,
        )?;
        consume_budget(run, response.usage.into(), caused_by)?;
        emit_usage(observer, run).await;
        Ok(response)
    }

    async fn stream_model_response(
        &self,
        request: ModelRequest,
        run: &RunContext,
        turn: u32,
        observer: &dyn AgentObserver,
    ) -> Result<ModelResponse, ModelError> {
        let context = ModelCallContext::for_run(run);
        let cancellation = context.cancellation().clone();
        let opening = self.model.stream(request, context);
        let mut stream = match select(Box::pin(cancellation.cancelled()), Box::pin(opening)).await {
            Either::Left(_) => return Err(cancelled_model_error()),
            Either::Right((result, _)) => result?,
        };
        let mut accumulator = ModelStreamAccumulator::new();
        loop {
            let next = stream.next();
            let event = match select(Box::pin(cancellation.cancelled()), Box::pin(next)).await {
                Either::Left(_) => return Err(cancelled_model_error()),
                Either::Right((Some(event), _)) => event?,
                Either::Right((None, _)) => {
                    return Err(ModelError::local(
                        ModelErrorKind::Protocol,
                        "model stream ended before a terminal response event",
                    ));
                }
            };
            let response = accumulator.push(event.clone())?;
            emit_agent_event(observer, AgentStreamEvent::Model { turn, event }).await;
            if let Some(response) = response {
                return Ok(response);
            }
        }
    }

    fn validate_config(&self) -> Result<(), AgentError> {
        if self.name.trim().is_empty() {
            return Err(AgentError::InvalidConfig(
                "agent name cannot be empty".into(),
            ));
        }
        if self.config.max_turns == 0 {
            return Err(AgentError::InvalidConfig(
                "max_turns must be greater than zero".into(),
            ));
        }
        if self.min_successful_tool_calls > 0 && self.tools.is_empty() {
            return Err(AgentError::InvalidConfig(format!(
                "min_successful_tool_calls={} requires at least one registered local Tool",
                self.min_successful_tool_calls
            )));
        }
        if let Some(collision) = self
            .agents
            .model_specs()
            .into_iter()
            .find(|spec| self.tools.contains(&spec.name))
        {
            return Err(AgentError::InvalidConfig(format!(
                "callable name `{}` is registered as both a tool and an agent",
                collision.name
            )));
        }
        Ok(())
    }

    fn validate_checkpoint_identity(&self, state: &AgentCheckpointState) -> Result<(), AgentError> {
        let terminal_reviewer = self
            .terminal_review
            .as_ref()
            .map(|review| &review.descriptor);
        let turn_reviewer = self.turn_review.as_ref().map(|review| &review.descriptor);
        let terminal_review_policy = self.terminal_review.as_ref().map(|review| review.policy);
        let turn_review_policy = self.turn_review.as_ref().map(|review| review.policy);
        let terminal_reviewer_capabilities =
            self.terminal_review
                .as_ref()
                .map_or_else(Vec::new, |review| {
                    review
                        .capabilities
                        .iter()
                        .map(|capability| capability.id)
                        .collect()
                });
        let turn_reviewer_capabilities =
            self.turn_review.as_ref().map_or_else(Vec::new, |review| {
                review
                    .capabilities
                    .iter()
                    .map(|capability| capability.id)
                    .collect()
            });
        if state.agent != self.name
            || state.model != self.model_ref
            || state.terminal_reviewer.as_ref() != terminal_reviewer
            || state.turn_reviewer.as_ref() != turn_reviewer
            || state.terminal_review_policy != terminal_review_policy
            || state.turn_review_policy != turn_review_policy
            || state.terminal_reviewer_capabilities != terminal_reviewer_capabilities
            || state.turn_reviewer_capabilities != turn_reviewer_capabilities
        {
            return Err(runifold_core::CheckpointError::new(
                runifold_core::CheckpointErrorKind::InvalidPayload,
                "checkpoint Agent, model, reviewer identity, policy, or reviewer capabilities do not match",
            )
            .into());
        }
        Ok(())
    }

    async fn prepare_run_loop_progress(
        &self,
        state: AgentCheckpointState,
        run: &RunContext,
        checkpoint: &mut Option<&mut CheckpointCursor>,
        context: &TerminalCompletionContext<'_>,
    ) -> Result<(AgentProgress, Option<AgentOutcome>, Option<ModelResponse>), AgentError> {
        enum Pending {
            Terminal(ModelResponse, u32),
            Turn(ModelResponse, u32),
            Approved(ModelResponse, u32),
        }

        let pending = match &state.phase {
            AgentCheckpointPhase::TerminalReviewReady { response, attempt } => {
                Some(Pending::Terminal(response.as_ref().clone(), *attempt))
            }
            AgentCheckpointPhase::TurnReviewReady { response, turn } => {
                Some(Pending::Turn(response.as_ref().clone(), *turn))
            }
            AgentCheckpointPhase::TurnReviewApproved { response, turn } => {
                Some(Pending::Approved(response.as_ref().clone(), *turn))
            }
            AgentCheckpointPhase::ReadyForTurn => None,
            _ => {
                return Err(checkpoint_payload_error(
                    "checkpoint phase is not ready for Agent execution",
                ));
            }
        };
        let mut progress = AgentProgress::from(state);
        let mut outcome = None;
        let mut approved_response = None;
        match pending {
            Some(Pending::Terminal(response, attempt)) => {
                outcome = self
                    .review_terminal_candidate(
                        response,
                        attempt,
                        run,
                        &mut progress,
                        checkpoint,
                        context,
                    )
                    .await?;
            }
            Some(Pending::Turn(response, turn)) => {
                validate_review_turn(turn, progress.turns)?;
                approved_response = self
                    .review_turn_candidate(response, run, &mut progress, checkpoint, context)
                    .await?;
            }
            Some(Pending::Approved(response, turn)) => {
                validate_review_turn(turn, progress.turns)?;
                approved_response = Some(response);
            }
            None => {}
        }
        Ok((progress, outcome, approved_response))
    }

    fn prepare_resume_state(
        state: &mut AgentCheckpointState,
        run: &RunContext,
        policy: ResumePolicy,
    ) -> Result<(), AgentError> {
        match state.phase.clone() {
            AgentCheckpointPhase::TurnInFlight { turn } => {
                if policy == ResumePolicy::RejectAmbiguous {
                    return Err(AgentError::AmbiguousCheckpoint { turn });
                }
                validate_usage_floor(state.usage, run.budget().usage())?;
                state.usage = run.budget().usage();
                state.phase = AgentCheckpointPhase::ReadyForTurn;
            }
            AgentCheckpointPhase::TerminalReviewInFlight { response, attempt } => {
                if policy == ResumePolicy::RejectAmbiguous {
                    return Err(AgentError::AmbiguousTerminalReview { attempt });
                }
                validate_usage_floor(state.usage, run.budget().usage())?;
                state.usage = run.budget().usage();
                state.phase = AgentCheckpointPhase::TerminalReviewReady { response, attempt };
            }
            AgentCheckpointPhase::TurnReviewInFlight { response, turn } => {
                if policy == ResumePolicy::RejectAmbiguous {
                    return Err(AgentError::AmbiguousTurnReview { turn });
                }
                validate_usage_floor(state.usage, run.budget().usage())?;
                state.usage = run.budget().usage();
                state.phase = AgentCheckpointPhase::TurnReviewReady { response, turn };
            }
            AgentCheckpointPhase::TurnReviewApproved { ref response, turn }
                if !tool_calls_from(&response.content).is_empty() =>
            {
                if policy == ResumePolicy::RejectAmbiguous {
                    return Err(AgentError::AmbiguousCheckpoint { turn });
                }
                validate_usage_floor(state.usage, run.budget().usage())?;
                state.usage = run.budget().usage();
            }
            _ => validate_exact_usage(state.usage, run.budget().usage())?,
        }
        Ok(())
    }

    pub(super) fn checkpoint_state(
        &self,
        progress: &AgentProgress,
        run: &RunContext,
        phase: AgentCheckpointPhase,
    ) -> AgentCheckpointState {
        AgentCheckpointState {
            execution_id: progress.execution_id.clone(),
            agent: self.name.clone(),
            model: self.model_ref.clone(),
            transcript: progress.transcript.clone(),
            turns: progress.turns,
            tool_calls: progress.tool_calls,
            delegations: progress.delegations,
            usage: run.budget().usage(),
            turn_reviewer: self
                .turn_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            turn_review_policy: self.turn_review.as_ref().map(|review| review.policy),
            turn_reviewer_capabilities: self.turn_review.as_ref().map_or_else(Vec::new, |review| {
                review
                    .capabilities
                    .iter()
                    .map(|capability| capability.id)
                    .collect()
            }),
            terminal_reviewer: self
                .terminal_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            terminal_review_policy: self.terminal_review.as_ref().map(|review| review.policy),
            terminal_reviewer_capabilities: self.terminal_review.as_ref().map_or_else(
                Vec::new,
                |review| {
                    review
                        .capabilities
                        .iter()
                        .map(|capability| capability.id)
                        .collect()
                },
            ),
            phase,
            durable_conversation: progress.durable_conversation.clone(),
        }
    }

    async fn commit_durable_outcome(
        &self,
        store: &dyn DurableConversationStore,
        run: &RunContext,
        cursor: &CheckpointCursor,
        durable: DurableConversationCheckpoint,
        outcome: AgentOutcome,
    ) -> Result<AgentConversationOutcome, AgentConversationError> {
        let persisted_prefix_len = usize::try_from(durable.persisted_prefix_len).map_err(|_| {
            AgentConversationError::Run(checkpoint_payload_error(
                "durable conversation prefix does not fit this platform",
            ))
        })?;
        if persisted_prefix_len >= outcome.transcript.len() {
            return Err(AgentConversationError::Run(checkpoint_payload_error(
                "durable conversation checkpoint has an invalid transcript prefix",
            )));
        }
        let messages = outcome
            .transcript
            .iter()
            .skip(persisted_prefix_len)
            .filter(|message| !is_transient_context(message))
            .cloned()
            .collect();
        let state = AgentCheckpointState {
            execution_id: cursor.id().to_string(),
            agent: self.name.clone(),
            model: self.model_ref.clone(),
            transcript: outcome.transcript.clone(),
            turns: outcome.turns,
            tool_calls: outcome.tool_calls,
            delegations: outcome.delegations,
            usage: run.budget().usage(),
            turn_reviewer: self
                .turn_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            turn_review_policy: self.turn_review.as_ref().map(|review| review.policy),
            turn_reviewer_capabilities: self.turn_review.as_ref().map_or_else(Vec::new, |review| {
                review
                    .capabilities
                    .iter()
                    .map(|capability| capability.id)
                    .collect()
            }),
            terminal_reviewer: self
                .terminal_review
                .as_ref()
                .map(|review| review.descriptor.clone()),
            terminal_review_policy: self.terminal_review.as_ref().map(|review| review.policy),
            terminal_reviewer_capabilities: self.terminal_review.as_ref().map_or_else(
                Vec::new,
                |review| {
                    review
                        .capabilities
                        .iter()
                        .map(|capability| capability.id)
                        .collect()
                },
            ),
            phase: AgentCheckpointPhase::Completed {
                response: Box::new(outcome.response.clone()),
            },
            durable_conversation: Some(durable.clone()),
        };
        let checkpoint = cursor.next(&state).map_err(AgentConversationError::Run)?;
        let command = DurableConversationCommit {
            namespace: durable.namespace,
            append: ConversationAppend {
                conversation_id: durable.conversation_id,
                expected_version: durable.expected_version,
                messages,
            },
            checkpoint,
            expected_checkpoint_revision: cursor.revision(),
        };
        match store.commit_durable_turn(command).await {
            Ok(conversation_version) => Ok(AgentConversationOutcome {
                outcome,
                conversation_version,
            }),
            Err(source) => Err(AgentConversationError::Commit {
                source,
                outcome: Box::new(outcome),
            }),
        }
    }

    pub(super) fn check_lifecycle(run: &RunContext) -> Result<(), AgentError> {
        let error = if run.cancellation().is_cancelled() {
            Some((
                runifold_model::ModelErrorKind::Cancelled,
                "agent run was cancelled",
            ))
        } else if run
            .deadline()
            .is_some_and(|deadline| deadline <= Instant::now())
        {
            Some((
                runifold_model::ModelErrorKind::DeadlineExceeded,
                "agent run deadline elapsed",
            ))
        } else {
            None
        };
        if let Some((kind, message)) = error {
            return Err(runifold_model::ModelError::local(kind, message).into());
        }
        Ok(())
    }

    fn request(
        &self,
        transcript: &[Message],
        tool_choice: ToolChoice,
    ) -> Result<ModelRequest, AgentError> {
        let (first, rest) = transcript
            .split_first()
            .ok_or_else(|| AgentError::Protocol("agent transcript is empty".into()))?;
        let mut request = ModelRequest::new(self.model_ref.clone(), first.clone());
        request.messages.extend_from_slice(rest);
        request.tools = self.tools.model_specs();
        request.tools.extend(self.agents.model_specs());
        request.tool_choice = tool_choice;
        for tool in &self.provider_tools {
            request = request.provider_tool(tool.clone());
        }
        request.generation.clone_from(&self.generation);
        request = request.response_mode(self.response_mode);
        request.provider_options.clone_from(&self.provider_options);
        request.feature_policy = self.config.feature_policy;
        request.output_format.clone_from(&self.output_format);
        Ok(request)
    }

    fn successful_local_tool_calls(&self, progress: &AgentProgress) -> Result<u32, AgentError> {
        let count = progress
            .transcript
            .iter()
            .filter(|message| {
                message
                    .metadata
                    .get(TOOL_RESULT_EXECUTION_ID_METADATA)
                    .and_then(serde_json::Value::as_str)
                    == Some(progress.execution_id.as_str())
            })
            .flat_map(|message| &message.content)
            .filter(|part| {
                matches!(
                    part,
                    ContentPart::ToolResult(result)
                        if !result.is_error
                            && result
                                .name
                                .as_deref()
                                .is_some_and(|name| self.tools.contains(name))
                )
            })
            .count();
        u32::try_from(count)
            .map_err(|_| AgentError::Protocol("successful Tool-call counter overflow".into()))
    }

    fn next_tool_choice(
        &self,
        progress: &AgentProgress,
        run: &RunContext,
    ) -> Result<ToolChoice, AgentError> {
        let successful = self.successful_local_tool_calls(progress)?;
        let remaining_required = self.min_successful_tool_calls.saturating_sub(successful);
        Self::validate_tool_requirement_budget(remaining_required, run)?;
        if progress.turns >= self.config.max_turns {
            if remaining_required > 0 {
                return Err(AgentError::ToolRequirementUnsatisfied {
                    required: self.min_successful_tool_calls,
                    successful,
                });
            }
            return Err(AgentError::MaxTurns {
                max_turns: self.config.max_turns,
            });
        }
        Ok(if remaining_required > 0 {
            ToolChoice::Required
        } else {
            ToolChoice::Auto
        })
    }

    fn validate_tool_requirement_budget(
        remaining_required: u32,
        run: &RunContext,
    ) -> Result<(), AgentError> {
        let Some(limit) = run.budget().limit().tool_calls else {
            return Ok(());
        };
        let remaining = limit.saturating_sub(run.budget().usage().tool_calls);
        if u64::from(remaining_required) > remaining {
            return Err(AgentError::ToolRequirementExceedsBudget {
                required: remaining_required,
                remaining,
            });
        }
        Ok(())
    }
}

fn validate_tool_call_completion(
    calls: &[ToolCall],
    finish_reason: &runifold_model::FinishReason,
) -> Result<(), AgentError> {
    if !calls.is_empty() && !matches!(finish_reason, runifold_model::FinishReason::ToolCalls) {
        return Err(AgentError::Protocol(format!(
            "refusing to execute tool calls from a {finish_reason:?} model response"
        )));
    }
    Ok(())
}

fn checkpoint_payload_error(message: &str) -> AgentError {
    runifold_core::CheckpointError::new(runifold_core::CheckpointErrorKind::InvalidPayload, message)
        .into()
}

fn validate_review_turn(expected: u32, actual: u32) -> Result<(), AgentError> {
    if expected != actual {
        return Err(checkpoint_payload_error(
            "turn review checkpoint does not match the completed model turn count",
        ));
    }
    Ok(())
}

fn cancelled_model_error() -> ModelError {
    ModelError::local(ModelErrorKind::Cancelled, "model invocation was cancelled")
}

fn tool_calls_from(content: &[ContentPart]) -> Vec<ToolCall> {
    content
        .iter()
        .filter_map(|part| match part {
            ContentPart::ToolCall(call) => Some(call.clone()),
            _ => None,
        })
        .collect()
}