loopctl 0.3.0

A trait-based framework for building agent loops with pluggable LLM clients, tools, and memory
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
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
//! Streaming event types for LLM API responses.
//!
//! Types used when consuming Server-Sent Events
//! (SSE) based streaming responses from LLM APIs. The core [`StreamEvent`]
//! enum represents each discrete event in the stream lifecycle, while
//! [`StreamAccumulator`] collects those events into a complete [`Message`].
//!
//! Streaming allows the framework to process model output incrementally —
//! displaying text as it arrives, detecting tool invocations as soon as
//! the part starts, and reporting token usage without waiting for the
//! full response. Essential for responsive agent behavior.
//!
//! # Stream Lifecycle
//!
//! The streaming protocol follows this event sequence:
//!
//! ```text
//! MessageStart → [PartStart → IndexedDelta* → PartStop]* → MessageDelta → MessageStop
//! ```
//!
//! [`Ping`](StreamEvent::Ping) events may appear at any point in the stream and should be
//! ignored by consumers.
//!
//! # Provided Types
//!
//! - **[`StreamEvent`]** — Top-level enum for every SSE event type.
//! - **[`StreamAccumulator`]** — Stateful builder that turns events into a [`Message`].
//! - **[`StreamStopReason`]** — Why the model stopped generating tokens.
//! - **[`Usage`]** — Token consumption statistics.
//! - **[`DeltaPart`]** — Incremental content payload (text, tool JSON, or partial JSON).
//! - **[`IndexedDelta`]** — An indexed [`DeltaPart`] carrying the part position.
//! - **[`MessageStart`]** / **[`MessageDelta`]** — Boundary events with metadata.
//!
//! # Sub-modules
//!
//! - **`handler`** — `handler::StreamHandler` with retry, timeout,
//!   and fallback for resilient streaming.
//!
//! # Quick Start
//!
//! ```rust
//! use loopctl::stream::{StreamAccumulator, StreamEvent, StreamStopReason};
//!
//! let mut acc = StreamAccumulator::new();
//!
//! // Feed events as they arrive from the SSE connection
//! for event in std::iter::empty::<StreamEvent>() {
//!     acc.process(&event).unwrap();
//! }
//!
//! // Get usage before building (build consumes the accumulator)
//! let _usage = acc.usage();
//! let message = acc.build();
//! ```

use crate::message::{Message, MessagePart};
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::fmt;

#[cfg(feature = "streaming")]
pub mod handler;
pub mod rate_limit;

#[cfg(feature = "streaming")]
pub use handler::{DetectedRateLimit, RateLimitConfig, RateLimitKind};
pub use rate_limit::{RateLimiter, TokenBucket};

/// Errors that can occur during stream event processing.
///
/// Returned by [`StreamAccumulator::process`] when an event cannot be
/// handled correctly — for example, when accumulated tool-call JSON
/// is malformed at [`PartStop`](StreamEvent::PartStop) time.
#[derive(Debug)]
#[non_exhaustive]
pub enum StreamError {
    /// The concatenated tool-call input JSON could not be parsed.
    ///
    /// Contains the original [`serde_json::Error`] from the parse attempt
    /// and the raw input string that failed.
    InvalidToolInputJson(serde_json::Error, String),
}

impl fmt::Display for StreamError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            StreamError::InvalidToolInputJson(err, raw) => {
                write!(f, "invalid tool input JSON: {err} (raw_len={})", raw.len())
            }
        }
    }
}

impl std::error::Error for StreamError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            StreamError::InvalidToolInputJson(err, _) => Some(err),
        }
    }
}

/// An event from a streaming LLM API response.
///
/// Events follow the SSE (Server-Sent Events) protocol used by
/// LLM APIs and compatible providers. Each variant
/// corresponds to one of the documented event types emitted during
/// a streaming response.
///
/// Consumers typically match on these variants to drive UI updates
/// or feed them into a [`StreamAccumulator`] to reconstruct the full
/// [`Message`].
///
/// # Lifecycle
///
/// ```text
/// MessageStart
///   → PartStart
///     → IndexedDelta (repeated)
///   → PartStop
///   → ... more parts ...
/// → MessageDelta
/// → MessageStop
/// ```
///
/// # Handling
///
/// Most consumers only need to handle a few variants:
/// - [`IndexedDelta`](Self::IndexedDelta) — for real-time text display.
/// - [`MessageStart`](Self::MessageStart) — to capture model metadata.
/// - [`MessageDelta`](Self::MessageDelta) — to get the stop reason and usage.
/// - [`MessageStop`](Self::MessageStop) — to know the stream is complete.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{StreamEvent, DeltaPart, IndexedDelta};
///
/// let event = StreamEvent::MessageStop; // placeholder
/// match event {
///     StreamEvent::MessageStart(_start) => {
///         // println!("Model: {}", start.message.model);
///     }
///     StreamEvent::IndexedDelta(delta) => {
///         if let DeltaPart::Text { text } = &delta.delta {
///             let _text: &str = text;
///         }
///     }
///     StreamEvent::MessageStop => { /* println!("[done]") */ }
///     _ => {}
/// }
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum StreamEvent {
    /// The start of a new message from the API.
    ///
    /// Always the first event in a stream. Contains the message's
    /// metadata (ID, model, role). Use it to initialize any
    /// state that depends on the model or message ID before
    /// content begins arriving.
    MessageStart(MessageStart),

    /// The start of a new part within the response.
    ///
    /// Emitted before any [`IndexedDelta`] events for this part.
    /// May contain a partial [`MessagePart`] for tool-call parts
    /// where the `id` and `name` are known upfront. For text parts,
    /// the [`PartStart::part`] field carries an empty text part; `None` marks a reasoning lane.
    PartStart(PartStart),

    /// A delta (incremental update) for the current part.
    ///
    /// Carries a [`DeltaPart`] payload — either text to append,
    /// JSON input for a tool invocation, or raw tool-call data.
    /// Multiple deltas may arrive for a single part before
    /// [`PartStop`](StreamEvent::PartStop) signals
    /// the part is complete.
    IndexedDelta(IndexedDelta),

    /// The end of the current part.
    ///
    /// Signals that all [`IndexedDelta`] events for this part have been
    /// sent. The `index` names the lane being closed, as carried by the
    /// matching [`PartStart`](StreamEvent::PartStart) — the accumulator
    /// closes the open slot carrying that index (the first such slot when
    /// two lanes share an index; each flushes by its own kind, so the
    /// contents survive regardless of which one closes first). `None`
    /// (third-party emitters, and events serialized before the index
    /// existed) closes the oldest open slot, the legacy FIFO behavior.
    /// Consumers should finalize the in-progress part (e.g. parse
    /// accumulated JSON for tool-call parts) when this event is received.
    PartStop {
        /// Index of the lane being closed, as carried by the matching
        /// [`PartStart`](StreamEvent::PartStart).
        ///
        /// `None` closes the oldest open slot (legacy FIFO behavior).
        #[serde(default)]
        index: Option<usize>,
    },

    /// A delta update for the message itself (contains stop reason).
    ///
    /// Emitted after all parts are complete. Carries the
    /// [`StreamStopReason`] and final [`Usage`] statistics. Use
    /// [`StreamStopReason::from_api_str`] to parse the stop reason
    /// from the raw string in [`MessageDeltaPayload`].
    MessageDelta(MessageDelta),

    /// The end of the message stream.
    ///
    /// Always the last event (before any trailing pings). No payload.
    /// Consumers should treat this as the signal that the full
    /// response is complete.
    MessageStop,

    /// A keep-alive ping from the API server.
    ///
    /// May appear at any point during the stream. Consumers should
    /// ignore this event; it exists solely to prevent connection
    /// timeouts on long-running requests. The [`StreamAccumulator`]
    /// silently skips pings during [`process`](StreamAccumulator::process).
    Ping,
}

/// The start of a new message from the API.
///
/// Wraps [`MessageMetadata`] and is always the first event in a
/// streaming response. Use it to capture the model name and message
/// ID before content begins arriving.
///
/// # Construction
///
/// Typically deserialized from the SSE stream rather than constructed
/// manually. The API always provides `id`, `role`, and `model` fields.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{MessageStart, MessageMetadata};
///
/// let start = MessageStart {
///     message: MessageMetadata {
///         id: "msg_abc123".to_string(),
///         role: "assistant".to_string(),
///         model: "llm-70b".to_string(),
///     },
/// };
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MessageStart {
    /// Metadata about the message being streamed.
    ///
    /// Contains the server-assigned message ID, the role (always
    /// `"assistant"` for streaming responses), and the model name.
    pub message: MessageMetadata,
}

/// Metadata about a message from the API.
///
/// Carries identifying information for the streaming response: the
/// message ID, the role, and the model that produced it. Embedded
/// inside [`MessageStart`] and accessible before any content arrives.
///
/// # Fields
///
/// - [`id`](Self::id) — Unique per response, useful for logging and correlation.
/// - [`role`](Self::role) — Always `"assistant"` for streaming responses.
/// - [`model`](Self::model) — The model identifier (e.g. `"llm-4-turbo"`).
///
/// # Example
///
/// ```rust
/// use loopctl::stream::MessageMetadata;
///
/// let meta = MessageMetadata {
///     id: "msg_abc123".to_string(),
///     role: "assistant".to_string(),
///     model: "llm-4-turbo".to_string(),
/// };
/// assert_eq!(meta.role, "assistant");
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MessageMetadata {
    /// The server-assigned message ID (e.g. `"msg_abc123"`).
    ///
    /// Unique per response. Useful for logging, correlation, and
    /// debugging specific API interactions. The format may vary
    /// between API versions.
    pub id: String,

    /// The role of the message sender.
    ///
    /// Always `"assistant"` for streaming responses from the API.
    /// See [`Role`](crate::message::Role) for the typed equivalent
    /// used elsewhere in the framework.
    pub role: String,

    /// The model that generated the response (e.g. `"llm-4-turbo"`).
    ///
    /// Useful for logging, debugging, and routing decisions when
    /// multiple models are in use. The [`StreamAccumulator`] captures
    /// this value from the [`MessageStart`](StreamEvent::MessageStart)
    /// event.
    pub model: String,
}

/// The start of a new part within the response.
///
/// Emitted once per part, before any [`IndexedDelta`]
/// events. The `part` field may be `None` for text parts
/// (where the type is inferred from deltas) or `Some` for tool-call
/// parts where the `id` and `name` are known upfront.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::PartStart;
/// use loopctl::message::MessagePart;
/// use serde_json::Value;
///
/// // Text part start — carries an empty text part
/// let text_start = PartStart { index: 0, part: Some(MessagePart::text("")) };
///
/// // Tool-call part start — id and name are provided
/// let tool_start = PartStart {
///     index: 1,
///     part: Some(MessagePart::tool_call("tool_1", "read_file", Value::Null)),
/// };
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PartStart {
    /// Zero-based index of this part within the message.
    ///
    /// Assigned by the API and used, together with the lane's kind,
    /// to correlate [`IndexedDelta`] events with the correct slot:
    /// indices may be reused across text, thinking, and tool lanes
    /// (a text lane and a first tool call can both carry index 0),
    /// so a slot is identified by the pair, not the index alone.
    pub index: usize,

    /// The part, if known at start time.
    ///
    /// `Some` for tool-call parts (so the `id` and `name` are
    /// available immediately) and for text parts (an empty text
    /// part — the lane's kind is fixed here, not inferred from
    /// later deltas). `None` marks a reasoning lane, which
    /// accumulates [`Thinking`] fragments that flush nothing on
    /// close. The [`StreamAccumulator`] uses this to pick the
    /// slot's kind and to seed the tool ID and name before deltas
    /// arrive.
    ///
    /// [`Thinking`]: crate::stream::DeltaPart::Thinking
    pub part: Option<MessagePart>,
}

/// A delta (incremental update) for the current part.
///
/// Carries a [`DeltaPart`] payload that should be appended to the
/// in-progress part identified by [`index`](Self::index) together
/// with the lane kind matching the payload — indices may be reused
/// across text, thinking, and tool lanes, and the
/// [`StreamAccumulator`] routes by that pair. Multiple deltas may
/// arrive for a single part.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{IndexedDelta, DeltaPart};
///
/// let delta = IndexedDelta {
///     index: 0,
///     delta: DeltaPart::Text { text: "Hello".to_string() },
/// };
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IndexedDelta {
    /// Zero-based index of the part being updated.
    ///
    /// Matches the [`index`](PartStart::index) from the
    /// corresponding [`PartStart`] event. Deltas sharing an index
    /// may belong to different lanes when the index is reused
    /// across kinds; the payload's kind disambiguates.
    pub index: usize,

    /// The incremental content to append.
    ///
    /// See [`DeltaPart`] for the possible payload types. The
    /// [`StreamAccumulator`] routes each fragment to the open slot
    /// matching this event's `index` and the payload's lane kind,
    /// appending it to that slot's buffer.
    pub delta: DeltaPart,
}

/// A delta (incremental update) for content within a streaming response.
///
/// Each variant represents a different kind of incremental data that
/// the API sends. Consumers should append the payload to the
/// appropriate in-progress part.
///
/// `#[non_exhaustive]` so the framework can add content kinds (e.g.
/// `Image`/`Audio`) in a later minor release without breaking downstream
/// `match`es. Downstream code that matches on `DeltaPart` MUST include a
/// wildcard arm.
///
/// # Variants
///
/// - [`Text`](Self::Text) — Append to the text buffer for text parts.
/// - [`ToolCall`](Self::ToolCall) — Append to the JSON buffer for tool-call parts.
/// - [`InputJson`](Self::InputJson) — Append to the JSON buffer (raw string form).
/// - [`Thinking`](Self::Thinking) — Append to the reasoning buffer for separate
///   display; not part of the assistant's visible text.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::DeltaPart;
///
/// let delta_content = DeltaPart::Text { text: "hello".to_string() };
/// let mut buffer = String::new();
/// let mut json_buf = String::new();
/// match &delta_content {
///     DeltaPart::Text { text } => buffer.push_str(text),
///     DeltaPart::InputJson { partial_json } => json_buf.push_str(partial_json),
///     DeltaPart::ToolCall { partial_json } => {
///         if let Some(s) = partial_json.as_str() {
///             json_buf.push_str(s);
///         }
///     }
///     DeltaPart::Thinking { .. } => {
///         // Reasoning is delivered via on_thinking_delta; not accumulated here.
///     }
///     _ => {}
/// }
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
#[non_exhaustive]
pub enum DeltaPart {
    /// Text delta — append to the existing text content.
    ///
    /// Emitted for text parts. Each delta contains a
    /// small fragment of the final text output.
    ///
    /// Serialized as `"type":"text_delta"` with a `"text"` field.
    #[serde(rename = "text_delta")]
    Text {
        /// The text fragment to append.
        ///
        /// Each fragment is a small piece of the complete text.
        /// Concatenate all fragments in order to reconstruct the
        /// full text content for this part.
        text: String,
    },

    /// Tool-call input delta — append to the JSON input.
    ///
    /// Emitted for tool-call parts. Each delta contains
    /// a fragment of the tool's JSON input, which should be
    /// concatenated and parsed once [`PartStop`](StreamEvent::PartStop) arrives.
    ///
    /// Serialized as `"type":"tool_call_delta"` with a `"partial_json"` field.
    #[serde(rename = "tool_call_delta")]
    ToolCall {
        /// A JSON value fragment to append to the tool input.
        ///
        /// Typically a string that forms part of the final JSON
        /// when concatenated with all prior deltas. Use
        /// [`serde_json::from_str`] on the concatenated result
        /// after the part completes.
        partial_json: Value,
    },

    /// Partial JSON input delta — append to the tool input buffer.
    ///
    /// Similar to [`ToolCall`](Self::ToolCall) but carries a raw
    /// string fragment rather than a JSON value. Concatenate all
    /// fragments and parse as JSON when the part ends.
    ///
    /// Serialized as `"type":"input_json_delta"` with a `"partial_json"` field.
    #[serde(rename = "input_json_delta")]
    InputJson {
        /// A raw JSON string fragment to append.
        ///
        /// Concatenate all `partial_json` strings from consecutive
        /// [`InputJson`](Self::InputJson) deltas for the same content
        /// part, then parse the combined string as JSON once
        /// [`PartStop`](StreamEvent::PartStop) is received.
        partial_json: String,
    },

    /// Thinking/reasoning delta — append to a reasoning buffer for separate
    /// display. NOT part of the assistant's visible text.
    ///
    /// Emitted by reasoning models (Claude extended-thinking, DeepSeek-R1,
    /// OpenAI o-series). Stream-only: the [`StreamAccumulator`] does NOT carry
    /// reasoning into the built [`Message`]; consume
    /// it via
    /// [`on_thinking_delta`](crate::observer::LoopObserver::on_thinking_delta).
    /// An empty `text` signals redacted reasoning (e.g. Anthropic
    /// `redacted_thinking`); render a placeholder rather than the empty string.
    ///
    /// Serialized as `"type":"thinking_delta"` with a `"text"` field.
    #[serde(rename = "thinking_delta")]
    Thinking {
        /// The reasoning text fragment to append.
        ///
        /// Concatenate in arrival order per turn to reconstruct the full
        /// reasoning trace. Empty string when the reasoning is redacted
        /// (the provider withheld the content); consumers should render a
        /// placeholder, not the empty string.
        text: String,
    },
}

/// Reason why the model stopped generating tokens.
///
/// Streaming / API-level stop reason returned by the LLM
/// provider in the [`MessageDelta`] event. Differs from the
/// agent-level `StopReason` which is used in `TurnResult`.
///
/// Use [`should_continue_tool_loop`](Self::should_continue_tool_loop)
/// to decide whether the agent should execute tools and continue the
/// conversation loop.
///
/// # Parsing
///
/// Convert from/to API strings using [`from_api_str`](Self::from_api_str)
/// and [`to_api_str`](Self::to_api_str). The known values are:
/// `"tool_call"`, `"max_tokens"`, `"stop_sequence"`, and `"end_turn"`.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::StreamStopReason;
///
/// let reason = StreamStopReason::from_api_str("tool_call").unwrap();
/// assert!(reason.should_continue_tool_loop());
///
/// let reason = StreamStopReason::from_api_str("end_turn").unwrap();
/// assert!(!reason.should_continue_tool_loop());
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[non_exhaustive]
pub enum StreamStopReason {
    /// The model decided to invoke a tool.
    ///
    /// Indicates the agent should execute the tool and continue the
    /// conversation loop with the tool result. The tool-call parts
    /// in the response contain the invocation details.
    ///
    /// See [`should_continue_tool_loop`](Self::should_continue_tool_loop).
    ToolCall,

    /// The model reached the configured maximum token limit.
    ///
    /// The response was truncated because the model produced `max_tokens` of
    /// output before finishing. The caller may want to request continuation or
    /// raise the provider's max-tokens limit.
    MaxTokens,

    /// The model hit a configured stop sequence.
    ///
    /// The response ended because it matched one of the stop
    /// sequences provided in the request. Uncommon in
    /// typical agent usage.
    StopSequence,

    /// The model completed its turn naturally.
    ///
    /// The model finished generating its response without hitting
    /// any limits or invoking tools. Normal end-of-turn
    /// signal for non-tool responses.
    EndTurn,
}

impl StreamStopReason {
    /// Parse a stop reason from the provider's API string representation.
    ///
    /// Called in two places: when deserializing [`MessageDeltaPayload`]
    /// streaming events, and when each provider's `build_response` maps its
    /// native finish/stop field on the non-streaming path. Returns `None` for
    /// unrecognized strings, which may indicate a new API version has
    /// introduced additional stop reasons.
    ///
    /// `"tool_use"` is accepted as an alias for `"tool_call"` because Anthropic
    /// reports a tool-invocation stop reason as `"tool_use"` while OpenAI uses
    /// `"tool_calls"` (handled directly in the OpenAI provider) — both map to
    /// [`ToolCall`](Self::ToolCall).
    ///
    /// # Returns
    ///
    /// `Some(Self)` for known values, `None` for unrecognized strings.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::StreamStopReason;
    ///
    /// assert_eq!(StreamStopReason::from_api_str("tool_call"), Some(StreamStopReason::ToolCall));
    /// assert_eq!(StreamStopReason::from_api_str("tool_use"), Some(StreamStopReason::ToolCall));
    /// assert_eq!(StreamStopReason::from_api_str("unknown"), None);
    /// ```
    #[must_use]
    pub fn from_api_str(s: &str) -> Option<Self> {
        match s {
            "tool_call" | "tool_use" => Some(Self::ToolCall),
            "max_tokens" => Some(Self::MaxTokens),
            "stop_sequence" => Some(Self::StopSequence),
            "end_turn" => Some(Self::EndTurn),
            _ => None,
        }
    }

    /// Convert to the API string representation.
    ///
    /// Called when serializing a [`StreamStopReason`] back into an
    /// API-compatible string (e.g. for logging or request building).
    /// The returned string is a static `&'static str` — no allocation
    /// is performed.
    ///
    /// # Returns
    ///
    /// A static string matching the API's expected value.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::StreamStopReason;
    ///
    /// assert_eq!(StreamStopReason::ToolCall.to_api_str(), "tool_call");
    /// assert_eq!(StreamStopReason::EndTurn.to_api_str(), "end_turn");
    /// ```
    #[must_use]
    pub fn to_api_str(self) -> &'static str {
        match self {
            Self::ToolCall => "tool_call",
            Self::MaxTokens => "max_tokens",
            Self::StopSequence => "stop_sequence",
            Self::EndTurn => "end_turn",
        }
    }

    /// Check whether the agent should continue the tool-execution loop.
    ///
    /// Called after each streaming response completes to decide if the
    /// agent should execute the requested tools and send another request.
    /// Returns `true` only for [`ToolCall`](Self::ToolCall), which means
    /// the model has emitted one or more tool-call parts that
    /// need to be executed.
    ///
    /// # Returns
    ///
    /// `true` if the stop reason is [`ToolCall`](Self::ToolCall),
    /// `false` otherwise.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::StreamStopReason;
    ///
    /// let reason = StreamStopReason::ToolCall;
    /// if reason.should_continue_tool_loop() {
    ///     // Execute tools and continue the conversation
    /// }
    /// ```
    #[must_use]
    pub fn should_continue_tool_loop(self) -> bool {
        matches!(self, Self::ToolCall)
    }
}

/// A delta update for the message, typically emitted at the end of the stream.
///
/// Carries the final [`StreamStopReason`] (why the model stopped) and
/// the cumulative [`Usage`] statistics for the entire request. Emitted
/// after all parts are complete but before [`MessageStop`](StreamEvent::MessageStop).
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{MessageDelta, MessageDeltaPayload, Usage};
///
/// let delta = MessageDelta {
///     delta: MessageDeltaPayload { stop_reason: Some("end_turn".to_string()) },
///     usage: Some(Usage::new(100, 50)),
/// };
/// ```
///
/// # Relationship to [`MessageDeltaPayload`]
///
/// The [`delta`](Self::delta) field contains the stop reason string,
/// while the [`usage`](Self::usage) field carries token counts. Together
/// they provide the final summary of the streaming response.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MessageDelta {
    /// The delta details containing the stop reason.
    ///
    /// See [`MessageDeltaPayload`] for the payload structure. Use
    /// [`StreamStopReason::from_api_str`] to parse the stop reason string
    /// into a typed enum.
    pub delta: MessageDeltaPayload,

    /// Token usage statistics for this request.
    ///
    /// `Some` when the API reports usage; `None` if usage data
    /// is not available or not yet received. See [`Usage`].
    /// Typically populated in the final `MessageDelta` event
    /// and reflects cumulative token consumption for the entire request.
    pub usage: Option<Usage>,
}

/// The delta details within a [`MessageDelta`] event.
///
/// Contains the stop reason string that explains why the model
/// finished generating. Parse it with
/// [`StreamStopReason::from_api_str`] to get a typed value.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{MessageDeltaPayload, StreamStopReason};
///
/// let delta = MessageDeltaPayload { stop_reason: Some("tool_call".to_string()) };
/// if let Some(s) = &delta.stop_reason {
///     let reason = StreamStopReason::from_api_str(s);
///     assert_eq!(reason, Some(StreamStopReason::ToolCall));
/// }
/// ```
///
/// # Known Values
///
/// The API may return `"tool_call"`, `"max_tokens"`, `"stop_sequence"`,
/// or `"end_turn"`. Unrecognized values will cause
/// [`StreamStopReason::from_api_str`] to return `None`.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MessageDeltaPayload {
    /// Why the model stopped generating, as a raw string.
    ///
    /// Use [`StreamStopReason::from_api_str`] to parse this into
    /// a typed enum. May be `None` if the API did not provide a
    /// stop reason (e.g. on error or incomplete responses).
    pub stop_reason: Option<String>,
}

/// Token usage statistics from an API response.
///
/// Tracks input and output token counts for a single streaming
/// request. Returned in the [`MessageDelta`] event at the end of
/// the stream. Use [`total_tokens`](Self::total_tokens) for the
/// combined count.
///
/// # Default
///
/// The [`Default`] implementation produces zeroed counters,
/// which is useful for initializing accumulators before the first
/// usage data arrives.
///
/// # Example
///
/// ```rust
/// use loopctl::stream::Usage;
///
/// let usage = Usage::new(150, 75);
/// assert_eq!(usage.input_tokens, 150);
/// assert_eq!(usage.output_tokens, 75);
/// assert_eq!(usage.total_tokens(), 225);
/// ```
#[derive(Debug, Clone, Copy, Serialize, Deserialize, Default, PartialEq, Eq)]
pub struct Usage {
    /// Number of tokens in the input prompt.
    ///
    /// Includes the system prompt, conversation history, and any
    /// tool definitions sent with the request. Defaults to `0`
    /// when constructed via [`Default::default`].
    pub input_tokens: u32,

    /// Number of tokens in the output completion.
    ///
    /// Includes all generated text and tool-call parts produced by
    /// the model. Defaults to `0` when constructed via
    /// [`Default::default`].
    pub output_tokens: u32,
}

impl Usage {
    /// Create a new usage instance with the given token counts.
    ///
    /// Called when constructing usage data from API response fields
    /// or when building test fixtures. For a zeroed instance, use
    /// [`Default::default`] instead.
    ///
    /// # Parameters
    ///
    /// - `input_tokens` — Tokens consumed by the prompt.
    /// - `output_tokens` — Tokens produced by the model.
    ///
    /// # Returns
    ///
    /// A [`Usage`] instance with the specified counts.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::Usage;
    ///
    /// let usage = Usage::new(100, 50);
    /// assert_eq!(usage.total_tokens(), 150);
    /// ```
    #[must_use]
    pub fn new(input_tokens: u32, output_tokens: u32) -> Self {
        Self {
            input_tokens,
            output_tokens,
        }
    }

    /// Total tokens consumed (input + output).
    ///
    /// Convenience method for cost estimation and logging. Sums
    /// [`input_tokens`](Self::input_tokens) and
    /// [`output_tokens`](Self::output_tokens).
    ///
    /// # Returns
    ///
    /// The sum of input and output token counts.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::Usage;
    ///
    /// let usage = Usage::new(100, 50);
    /// assert_eq!(usage.total_tokens(), 150);
    /// ```
    #[must_use]
    pub fn total_tokens(self) -> u32 {
        self.input_tokens.saturating_add(self.output_tokens)
    }
}

/// Accumulates streaming events into a complete [`Message`].
///
/// Stateful builder that tracks the progress of a streaming
/// response as [`StreamEvent`]s arrive and assembles the final
/// [`Message`] once all events have been processed.
///
/// Call [`process`](Self::process) for each event as it arrives, then
/// call [`build`](Self::build) to consume the accumulator and produce
/// the final message. Token usage can be retrieved at any time via
/// [`usage`](Self::usage).
///
/// # Example
///
/// ```rust
/// use loopctl::stream::{StreamAccumulator, StreamEvent};
///
/// let mut acc = StreamAccumulator::new();
///
/// for event in std::iter::empty::<StreamEvent>() {
///     acc.process(&event).unwrap();
/// }
///
/// let _usage = acc.usage();
/// let message = acc.build();
/// ```
///
/// # Default
///
/// The [`Default`] implementation produces an empty accumulator with
/// no parts, no text, no tool data, and no usage — equivalent to
/// calling [`new`](Self::new).
#[derive(Debug, Default)]
pub struct StreamAccumulator {
    /// Fully assembled parts flushed by [`PartStop`](StreamEvent::PartStop).
    ///
    /// Each entry is a finished [`MessagePart`] produced when a
    /// [`PartStop`](StreamEvent::PartStop) closes one of the entries in
    /// [`open`](Self::open). These are the parts returned by
    /// [`build`](Self::build).
    completed: Vec<MessagePart>,

    /// Parts currently receiving deltas, in [`PartStart`] arrival order.
    ///
    /// A provider may keep several parts open at once — for example,
    /// OpenAI streams parallel tool calls by interleaving argument
    /// fragments across distinct `index` values and only closing them
    /// all at the terminal `finish_reason`. Each
    /// [`PartStart`](StreamEvent::PartStart) pushes a new slot;
    /// [`IndexedDelta`](StreamEvent::IndexedDelta) routes to the slot
    /// matching both its `index` and its lane kind;
    /// [`PartStop`](StreamEvent::PartStop) closes the slot its `index`
    /// names, or the oldest open slot when the index is `None`.
    open: Vec<OpenPart>,

    /// The model name that produced this response.
    ///
    /// Extracted from the [`MessageStart`](StreamEvent::MessageStart)
    /// event. `None` until that event is processed. Can be used for
    /// logging or routing after the stream completes.
    model: Option<String>,

    /// Token usage statistics from the response.
    ///
    /// Populated from the [`MessageDelta`](StreamEvent::MessageDelta)
    /// event. `None` until that event is processed. Access via
    /// [`usage`](Self::usage) after processing.
    usage: Option<Usage>,
}

/// Which lane an in-progress [`OpenPart`] is accumulating.
///
/// Distinguishes plain assistant text from a tool-call invocation so
/// [`PartStop`](StreamEvent::PartStop) knows which buffer to flush and
/// which [`MessagePart`] shape to build. Decided once, at
/// [`PartStart`](StreamEvent::PartStart) time, from the carried part.
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
enum OpenPartKind {
    /// Assistant text, reconstructed from `delta.content` fragments.
    ///
    /// The default lane: a [`PartStart`](StreamEvent::PartStart) that
    /// carries a text part opens a text slot, and its buffered
    /// string becomes a [`MessagePart::Text`] on close.
    #[default]
    Text,

    /// A tool-call invocation, reconstructed from `function.arguments`
    /// fragments.
    ///
    /// The slot latches the tool `id` and `name` from
    /// [`PartStart::part`](crate::stream::PartStart::part) at open time
    /// and accumulates the raw JSON arguments string; on close it parses
    /// that string into the tool-call [`MessagePart::ToolCall`] input.
    Tool,

    /// A reasoning lane, opened by a [`PartStart`](StreamEvent::PartStart)
    /// that carries no part.
    ///
    /// Reasoning is stream-only in this crate — there is no thinking
    /// [`MessagePart`] — so the slot accumulates its fragments and flushes
    /// nothing on close. The kind exists so [`Thinking`] deltas have a lane
    /// of their own: without it, providers that index the reasoning lane
    /// alongside tool-call wire indices would let one lane's deltas land in
    /// the other's buffers.
    ///
    /// [`Thinking`]: crate::stream::DeltaPart::Thinking
    Thinking,
}

/// A single in-progress part being accumulated between open and close.
///
/// Holds the buffers for one lane — assistant text, a tool call, or a
/// reasoning lane — from the [`PartStart`](StreamEvent::PartStart) that
/// opens it to the [`PartStop`](StreamEvent::PartStop) that flushes it.
/// The [`StreamAccumulator`] keeps a [`Vec`] of these so that providers
/// which leave several parts open at once (OpenAI's interleaved parallel
/// tool calls) accumulate each one independently.
#[derive(Debug, Default)]
struct OpenPart {
    /// The `index` this slot was opened with.
    ///
    /// Copied from [`PartStart::index`](crate::stream::PartStart::index)
    /// at open time and used to route each
    /// [`IndexedDelta`](StreamEvent::IndexedDelta) fragment to the slot
    /// it belongs to. Stable for the lifetime of the slot.
    index: usize,

    /// Whether this slot accumulates assistant text or a tool call.
    ///
    /// Set once when the slot opens and never mutated; it selects which
    /// buffer the deltas append to and which [`MessagePart`] variant
    /// [`PartStop`](StreamEvent::PartStop) builds from the slot.
    kind: OpenPartKind,

    /// Buffered assistant text for a text-lane slot.
    ///
    /// Grown one fragment at a time by [`DeltaPart::Text`] deltas and
    /// flushed into a [`MessagePart::Text`] on close. Empty and unused
    /// for tool-call slots.
    text: String,

    /// Buffered reasoning text for a thinking-lane slot.
    ///
    /// Grown one fragment at a time by [`DeltaPart::Thinking`] deltas.
    /// Reasoning is stream-only in this crate — there is no thinking
    /// [`MessagePart`] — so the buffer is discarded on close; it exists so
    /// the fragments have somewhere kind-correct to land. Empty and unused
    /// for text and tool-call slots.
    thinking: String,

    /// Server-assigned identifier of the tool call.
    ///
    /// Latched from [`PartStart::part`](crate::stream::PartStart::part)
    /// when the slot opens as a tool call, then carried onto the built
    /// [`MessagePart::ToolCall`] so the host can match the eventual
    /// tool result back to this call. Empty for text slots.
    tool_id: String,

    /// Name of the tool being invoked.
    ///
    /// Latched from [`PartStart::part`](crate::stream::PartStart::part)
    /// at open time and used both to detect that this is a tool-call
    /// slot (non-empty) and to label the built
    /// [`MessagePart::ToolCall`]. Empty for text slots.
    tool_name: String,

    /// Raw JSON arguments string for a tool-call slot.
    ///
    /// Grown fragment by fragment by [`DeltaPart::InputJson`] and
    /// [`DeltaPart::ToolCall`] deltas and parsed into the
    /// [`MessagePart::ToolCall`] input when the slot closes. Empty for
    /// text slots.
    tool_input: String,
}

impl StreamAccumulator {
    /// Create a new accumulator in the initial state.
    ///
    /// Returns a fresh accumulator ready to receive
    /// [`StreamEvent`]s. Equivalent to [`default`](Self::default).
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::StreamAccumulator;
    ///
    /// let mut acc = StreamAccumulator::new();
    /// // acc.process(&event).unwrap();
    /// let message = acc.build();
    /// ```
    #[must_use]
    pub fn new() -> Self {
        Self::default()
    }

    /// Process a single stream event and update internal state.
    ///
    /// Called for each [`StreamEvent`] as it arrives from the SSE
    /// connection. The accumulator keeps a [`Vec`] of in-progress parts
    /// so that providers which leave several parts open at once — OpenAI
    /// interleaves parallel tool calls — accumulate each one
    /// independently. Each [`PartStart`](StreamEvent::PartStart) opens a
    /// new slot keyed by its `index` and lane kind; each
    /// [`IndexedDelta`](StreamEvent::IndexedDelta) routes to the open slot
    /// matching both its index and its kind — text fragments only enter
    /// text slots, tool-argument fragments only enter tool slots, so a
    /// reused index across lanes cannot corrupt either; each
    /// [`PartStop`](StreamEvent::PartStop) closes the slot its `index`
    /// names, or the oldest open slot when the index is `None` (legacy
    /// FIFO, kept for third-party emitters and pre-index events).
    /// Providers that only ever hold one slot open (Anthropic, Gemini)
    /// behave exactly as on a single-slot accumulator.
    ///
    /// # Arguments
    ///
    /// - `event` — A reference to the [`StreamEvent`] to process.
    ///
    /// # Event Handling
    ///
    /// - [`MessageStart`](StreamEvent::MessageStart) — Captures the model name.
    /// - [`PartStart`](StreamEvent::PartStart) — Opens a new in-progress
    ///   slot for the given `index` (text or tool call, decided by the
    ///   carried part). Several slots may be open at once.
    /// - [`IndexedDelta`](StreamEvent::IndexedDelta) — Routes the
    ///   fragment to the open slot matching both its `index` and its kind
    ///   (text, tool, or thinking) and appends it to that slot's buffer.
    /// - [`PartStop`](StreamEvent::PartStop) — Flushes the slot its
    ///   `index` names (or the oldest still-open slot when the index is
    ///   `None`) into a finished [`MessagePart`] and drops it.
    /// - [`MessageDelta`](StreamEvent::MessageDelta) — Captures usage statistics.
    /// - [`MessageStop`](StreamEvent::MessageStop) / [`Ping`](StreamEvent::Ping) — Ignored.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::{StreamAccumulator, StreamEvent, MessageStart, MessageMetadata,
    ///     PartStart, IndexedDelta, DeltaPart};
    /// use loopctl::message::MessagePart;
    ///
    /// let mut acc = StreamAccumulator::new();
    /// let start = MessageStart {
    ///     message: MessageMetadata {
    ///         id: "msg_1".to_string(),
    ///         role: "assistant".to_string(),
    ///         model: "test".to_string(),
    ///     },
    /// };
    /// acc.process(&StreamEvent::MessageStart(start)).unwrap();
    /// acc.process(&StreamEvent::PartStart(PartStart { index: 0, part: Some(MessagePart::text("")) })).unwrap();
    /// let delta = IndexedDelta {
    ///     index: 0,
    ///     delta: DeltaPart::Text { text: "hi".to_string() },
    /// };
    /// acc.process(&StreamEvent::IndexedDelta(delta)).unwrap();
    /// acc.process(&StreamEvent::MessageStop).unwrap();
    /// ```
    ///
    /// # Errors
    ///
    /// Returns [`StreamError::InvalidToolInputJson`] if the accumulated
    /// tool-call JSON cannot be parsed when a [`PartStop`](StreamEvent::PartStop)
    /// event is processed.
    pub fn process(&mut self, event: &StreamEvent) -> Result<(), StreamError> {
        match event {
            StreamEvent::MessageStart(msg_start) => {
                self.model = Some(msg_start.message.model.clone());
                Ok(())
            }
            StreamEvent::PartStart(part_start) => {
                let kind = match &part_start.part {
                    Some(MessagePart::ToolCall { .. }) => OpenPartKind::Tool,
                    Some(_) => OpenPartKind::Text,
                    None => OpenPartKind::Thinking,
                };
                let mut slot = OpenPart {
                    index: part_start.index,
                    kind,
                    ..Default::default()
                };
                if let Some(MessagePart::ToolCall { id, name, .. }) = &part_start.part {
                    slot.tool_id.clone_from(id);
                    slot.tool_name.clone_from(name);
                }
                self.open.push(slot);
                Ok(())
            }
            StreamEvent::IndexedDelta(delta) => {
                let kind = match &delta.delta {
                    DeltaPart::InputJson { .. } | DeltaPart::ToolCall { .. } => OpenPartKind::Tool,
                    DeltaPart::Text { .. } => OpenPartKind::Text,
                    DeltaPart::Thinking { .. } => OpenPartKind::Thinking,
                };
                let Some(slot) = self
                    .open
                    .iter_mut()
                    .find(|s| s.kind == kind && s.index == delta.index)
                else {
                    return Ok(());
                };
                match &delta.delta {
                    DeltaPart::Text { text } => {
                        slot.text.push_str(text);
                    }
                    DeltaPart::InputJson { partial_json } => {
                        slot.tool_input.push_str(partial_json);
                    }
                    DeltaPart::ToolCall { partial_json } => {
                        if let Some(s) = partial_json.as_str() {
                            slot.tool_input.push_str(s);
                        }
                    }
                    DeltaPart::Thinking { text } => {
                        slot.thinking.push_str(text);
                    }
                }
                Ok(())
            }
            StreamEvent::PartStop { index } => {
                let pos = match index {
                    Some(i) => self.open.iter().position(|s| s.index == *i),
                    None => (!self.open.is_empty()).then_some(0),
                };
                let Some(pos) = pos else {
                    return Ok(());
                };
                let slot = self.open.remove(pos);
                let flushed = match slot.kind {
                    OpenPartKind::Text if !slot.text.is_empty() => {
                        Some(MessagePart::text(slot.text))
                    }
                    OpenPartKind::Tool if !slot.tool_name.is_empty() => {
                        let input: Value = if slot.tool_input.is_empty() {
                            Value::Object(serde_json::Map::new())
                        } else {
                            serde_json::from_str(&slot.tool_input).map_err(|e| {
                                StreamError::InvalidToolInputJson(e, slot.tool_input.clone())
                            })?
                        };
                        Some(MessagePart::tool_call(slot.tool_id, slot.tool_name, input))
                    }
                    _ => None,
                };
                if let Some(part) = flushed {
                    self.completed.push(part);
                }
                Ok(())
            }
            StreamEvent::MessageDelta(delta) => {
                self.usage = delta.usage;
                Ok(())
            }
            StreamEvent::MessageStop | StreamEvent::Ping => Ok(()),
        }
    }

    /// Returns a slice of the accumulated [`MessagePart`]s so far.
    ///
    /// Unlike [`build`](Self::build), this does not consume the
    /// accumulator. Useful for checking whether any content has been
    /// received before the stream times out.
    #[must_use]
    pub fn peek_parts(&self) -> &[MessagePart] {
        &self.completed
    }

    /// Consume the accumulator and produce the final [`Message`].
    ///
    /// Called after all [`StreamEvent`]s have been processed via
    /// [`process`](Self::process). Returns a [`Message`] with role
    /// [`Role::Assistant`](crate::message::Role::Assistant) and the
    /// accumulated [`MessagePart`]s.
    ///
    /// # Returns
    ///
    /// A complete [`Message`] assembled from all processed events.
    /// If no parts were received, the message will have
    /// an empty `content` vector.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::StreamAccumulator;
    /// use loopctl::message::Role;
    ///
    /// let acc = StreamAccumulator::new();
    /// let message = acc.build();
    /// assert_eq!(message.role, Role::Assistant);
    /// ```
    #[must_use]
    pub fn build(self) -> Message {
        Message {
            role: crate::message::Role::Assistant,
            parts: self.completed,
        }
    }

    /// Get the accumulated token usage, if available.
    ///
    /// Returns the [`Usage`] statistics captured from the
    /// [`MessageDelta`](StreamEvent::MessageDelta) event. Returns
    /// `None` if no `MessageDelta` event has been processed yet.
    /// Safe to call at any time — even before the stream completes.
    ///
    /// # Returns
    ///
    /// A reference to the [`Usage`] data, or `None` if unavailable.
    ///
    /// # Example
    ///
    /// ```rust
    /// use loopctl::stream::{StreamAccumulator, Usage};
    ///
    /// let mut acc = StreamAccumulator::new();
    /// if let Some(usage) = acc.usage() {
    ///     let _total = usage.total_tokens();
    /// }
    /// ```
    #[must_use]
    pub fn usage(&self) -> Option<&Usage> {
        self.usage.as_ref()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_stream_stop_reason_from_api_str() {
        assert_eq!(
            StreamStopReason::from_api_str("tool_call"),
            Some(StreamStopReason::ToolCall)
        );
        assert_eq!(
            StreamStopReason::from_api_str("tool_use"),
            Some(StreamStopReason::ToolCall)
        );
        assert_eq!(
            StreamStopReason::from_api_str("max_tokens"),
            Some(StreamStopReason::MaxTokens)
        );
        assert_eq!(
            StreamStopReason::from_api_str("end_turn"),
            Some(StreamStopReason::EndTurn)
        );
        assert_eq!(
            StreamStopReason::from_api_str("stop_sequence"),
            Some(StreamStopReason::StopSequence)
        );
        assert_eq!(StreamStopReason::from_api_str("unknown"), None);
    }

    #[test]
    fn test_stream_stop_reason_to_api_str() {
        assert_eq!(StreamStopReason::ToolCall.to_api_str(), "tool_call");
        assert_eq!(StreamStopReason::MaxTokens.to_api_str(), "max_tokens");
        assert_eq!(StreamStopReason::EndTurn.to_api_str(), "end_turn");
        assert_eq!(StreamStopReason::StopSequence.to_api_str(), "stop_sequence");
    }

    #[test]
    fn test_stream_stop_reason_should_continue() {
        assert!(StreamStopReason::ToolCall.should_continue_tool_loop());
        assert!(!StreamStopReason::EndTurn.should_continue_tool_loop());
        assert!(!StreamStopReason::MaxTokens.should_continue_tool_loop());
    }

    #[test]
    fn test_usage() {
        let usage = Usage::new(100, 50);
        assert_eq!(usage.input_tokens, 100);
        assert_eq!(usage.output_tokens, 50);
        assert_eq!(usage.total_tokens(), 150);
    }

    #[test]
    fn test_usage_default() {
        let usage = Usage::default();
        assert_eq!(usage.total_tokens(), 0);
    }

    #[test]
    fn test_accumulator_text_message() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::MessageStart(MessageStart {
            message: MessageMetadata {
                id: "msg_1".to_string(),
                role: "assistant".to_string(),
                model: "test-model".to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(crate::message::MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: "Hello".to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: " world".to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        acc.process(&StreamEvent::MessageDelta(MessageDelta {
            delta: MessageDeltaPayload {
                stop_reason: Some("end_turn".to_string()),
            },
            usage: Some(Usage::new(10, 5)),
        }))
        .unwrap();
        acc.process(&StreamEvent::MessageStop).unwrap();

        let msg = acc.build();
        assert_eq!(msg.role, crate::message::Role::Assistant);
        assert_eq!(msg.parts.len(), 1);
        assert_eq!(msg.parts[0].as_text(), Some("Hello world"));
    }

    #[test]
    fn test_accumulator_tool_call() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call(
                "tool_1",
                "read_file",
                Value::Object(serde_json::Map::new()),
            )),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"path":"/tmp/test"}"#.to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        assert!(msg.parts[0].is_tool_call());
    }

    #[test]
    fn test_accumulator_interleaved_tool_calls() {
        // Reproduces OpenAI's parallel-tool-call wire shape: two tool
        // calls opened up front, argument fragments interleaved across
        // their indices, both closed by bare PartStops at the end.
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call(
                "call_a",
                "echo",
                Value::Object(serde_json::Map::new()),
            )),
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: Some(MessagePart::tool_call(
                "call_b",
                "search",
                Value::Object(serde_json::Map::new()),
            )),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"msg":"#.to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"q":"#.to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: r#""a"}"#.to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::InputJson {
                partial_json: r#""b"}"#.to_string(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 2);
        match &msg.parts[0] {
            MessagePart::ToolCall { name, input, .. } => {
                assert_eq!(name, "echo");
                assert_eq!(input, &serde_json::json!({"msg": "a"}));
            }
            other => panic!("expected ToolCall, got {other:?}"),
        }
        match &msg.parts[1] {
            MessagePart::ToolCall { name, input, .. } => {
                assert_eq!(name, "search");
                assert_eq!(input, &serde_json::json!({"q": "b"}));
            }
            other => panic!("expected ToolCall, got {other:?}"),
        }
    }

    #[test]
    fn test_accumulator_empty() {
        let acc = StreamAccumulator::new();
        let msg = acc.build();
        assert_eq!(msg.parts.len(), 0);
    }

    #[test]
    fn test_accumulator_usage() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::MessageDelta(MessageDelta {
            delta: MessageDeltaPayload { stop_reason: None },
            usage: Some(Usage::new(100, 50)),
        }))
        .unwrap();
        assert_eq!(acc.usage().unwrap().total_tokens(), 150);
    }

    #[test]
    fn test_stream_event_variants() {
        let _ = StreamEvent::Ping;
        let _ = StreamEvent::MessageStop;
        let _ = StreamEvent::PartStop { index: None };
    }

    #[test]
    fn test_accumulator_invalid_tool_json() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call(
                "tool_1",
                "bad_tool",
                Value::Object(serde_json::Map::new()),
            )),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: "not valid json{".to_string(),
            },
        }))
        .unwrap();

        let result = acc.process(&StreamEvent::PartStop { index: None });
        assert!(result.is_err());
        let err = result.unwrap_err();
        match &err {
            StreamError::InvalidToolInputJson(_, raw) => {
                assert_eq!(raw, "not valid json{");
            }
        }
    }

    #[test]
    fn test_accumulator_tool_call_empty_input() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call(
                "tool_1",
                "no_args",
                Value::Object(serde_json::Map::new()),
            )),
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        assert!(msg.parts[0].is_tool_call());
    }

    #[test]
    fn test_accumulator_ignores_delta_with_mismatched_index() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();

        // Delta arrives with index 1 — mismatch! Must NOT panic, must be ignored.
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::Text {
                text: "ignored".into(),
            },
        }))
        .unwrap();

        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: "hello".into(),
            },
        }))
        .unwrap();

        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        assert_eq!(msg.parts[0].as_text(), Some("hello"));
    }

    #[test]
    fn test_accumulator_ignores_input_json_with_mismatched_index() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();

        // InputJson delta at wrong index — should be ignored.
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 5,
            delta: DeltaPart::InputJson {
                partial_json: "{\"bad\":true}".into(),
            },
        }))
        .unwrap();

        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert!(msg.parts.is_empty());
    }

    #[test]
    fn test_accumulator_delta_tool_call_string_value() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call("id1", "search", Value::Null)),
        }))
        .unwrap();

        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::ToolCall {
                partial_json: Value::String("{\"q\":\"rust\"}".into()),
            },
        }))
        .unwrap();

        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        if let MessagePart::ToolCall { input, .. } = &msg.parts[0] {
            assert_eq!(input["q"], "rust");
        } else {
            panic!("expected ToolCall");
        }
    }

    #[test]
    fn test_accumulator_delta_tool_call_non_string_ignored() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call("id1", "search", Value::Null)),
        }))
        .unwrap();

        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::ToolCall {
                partial_json: Value::Number(42.into()),
            },
        }))
        .unwrap();

        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        if let MessagePart::ToolCall { input, .. } = &msg.parts[0] {
            assert!(input.is_object());
        }
    }

    #[test]
    fn test_accumulator_ping_no_op() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::Ping).unwrap();
        assert!(acc.usage().is_none());
        let msg = acc.build();
        assert!(msg.parts.is_empty());
    }

    #[test]
    fn test_accumulator_message_stop_no_op() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text { text: "hi".into() },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        acc.process(&StreamEvent::MessageStop).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 1);
        assert_eq!(msg.parts[0].as_text(), Some("hi"));
    }

    #[test]
    fn test_accumulator_multiple_text_parts() {
        let mut acc = StreamAccumulator::new();

        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: "hello".into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::Text {
                text: "world".into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();

        let msg = acc.build();
        assert_eq!(msg.parts.len(), 2);
        assert_eq!(msg.parts[0].as_text(), Some("hello"));
        assert_eq!(msg.parts[1].as_text(), Some("world"));
    }

    #[test]
    fn test_accumulator_message_delta_overwrites_usage() {
        let mut acc = StreamAccumulator::new();

        acc.process(&StreamEvent::MessageDelta(MessageDelta {
            delta: MessageDeltaPayload {
                stop_reason: Some("end_turn".into()),
            },
            usage: Some(Usage::new(100, 50)),
        }))
        .unwrap();
        assert_eq!(acc.usage().unwrap().input_tokens, 100);
        assert_eq!(acc.usage().unwrap().output_tokens, 50);

        acc.process(&StreamEvent::MessageDelta(MessageDelta {
            delta: MessageDeltaPayload {
                stop_reason: Some("max_tokens".into()),
            },
            usage: Some(Usage::new(200, 75)),
        }))
        .unwrap();
        assert_eq!(acc.usage().unwrap().input_tokens, 200);
        assert_eq!(acc.usage().unwrap().output_tokens, 75);
    }

    #[test]
    fn accumulator_drops_thinking_not_into_text() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: None,
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::Thinking {
                text: "reasoning here".into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        let msg = acc.build();
        let text = msg.parts.iter().find_map(|p| match p {
            MessagePart::Text { text } => Some(text.as_str()),
            _ => None,
        });
        assert!(
            !text.unwrap_or("").contains("reasoning here"),
            "reasoning must not leak into the message text: {text:?}"
        );
    }

    #[test]
    fn input_json_never_enters_text_slot() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: "answer".into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"msg":"hi"}"#.into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(0) })
            .unwrap();
        let msg = acc.build();
        assert_eq!(
            msg.parts.len(),
            1,
            "tool-argument deltas must not open or flush extra parts"
        );
        match &msg.parts[0] {
            MessagePart::Text { text } => assert_eq!(text, "answer"),
            other => panic!("expected Text, got {other:?}"),
        }
    }

    #[test]
    fn addressed_part_stop_closes_named_slot() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call("call_a", "echo", Value::Null)),
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: Some(MessagePart::tool_call("call_b", "search", Value::Null)),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"q":"rust"}"#.into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(1) })
            .unwrap();
        let msg = acc.build();
        assert_eq!(
            msg.parts.len(),
            1,
            "the named slot flushes; the still-open slot does not"
        );
        match &msg.parts[0] {
            MessagePart::ToolCall { id, input, .. } => {
                assert_eq!(id, "call_b");
                assert_eq!(input, &serde_json::json!({"q": "rust"}));
            }
            other => panic!("expected ToolCall, got {other:?}"),
        }
    }

    #[test]
    fn part_stop_without_index_keeps_fifo() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 3,
            part: Some(MessagePart::tool_call("call_a", "echo", Value::Null)),
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text { text: "hi".into() },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        acc.process(&StreamEvent::PartStop { index: None }).unwrap();
        let msg = acc.build();
        assert_eq!(
            msg.parts.len(),
            2,
            "both slots flush in open order, not index order"
        );
        match &msg.parts[0] {
            MessagePart::ToolCall { id, .. } => assert_eq!(
                id, "call_a",
                "the first-opened slot closes first regardless of its index"
            ),
            other => panic!("expected ToolCall, got {other:?}"),
        }
        match &msg.parts[1] {
            MessagePart::Text { text } => assert_eq!(text, "hi"),
            other => panic!("expected Text, got {other:?}"),
        }
    }

    #[test]
    fn part_stop_deserializes_without_index_for_back_compat() {
        let legacy: StreamEvent = serde_json::from_str(r#"{"type":"part_stop"}"#)
            .expect("events serialized before the index existed must still load");
        assert!(
            matches!(legacy, StreamEvent::PartStop { index: None }),
            "a missing index deserializes as the legacy FIFO close"
        );
        let addressed: StreamEvent = serde_json::from_str(r#"{"type":"part_stop","index":2}"#)
            .expect("the addressed form must load");
        assert!(matches!(
            addressed,
            StreamEvent::PartStop { index: Some(2) }
        ));
        let round: StreamEvent =
            serde_json::from_str(&serde_json::to_string(&addressed).unwrap()).unwrap();
        assert!(
            matches!(round, StreamEvent::PartStop { index: Some(2) }),
            "the addressed form must survive a serialize/deserialize round trip"
        );
    }

    #[test]
    fn addressed_part_stop_for_unknown_index_is_a_noop() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::text("")),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text { text: "hi".into() },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(7) })
            .unwrap();
        let msg = acc.build();
        assert!(
            msg.parts.is_empty(),
            "a stop naming no open slot closes nothing; the still-open slot drops at build"
        );
    }

    #[test]
    fn addressed_stop_closes_oldest_slot_at_shared_index() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: None,
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 1,
            part: Some(MessagePart::tool_call("call_b", "search", Value::Null)),
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(1) })
            .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 1,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"q":"rust"}"#.into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(1) })
            .unwrap();
        let msg = acc.build();
        assert_eq!(
            msg.parts.len(),
            1,
            "the first close hits the older thinking slot; the tool slot stays open for its deltas"
        );
        match &msg.parts[0] {
            MessagePart::ToolCall { input, .. } => assert_eq!(
                input,
                &serde_json::json!({"q": "rust"}),
                "arguments arriving after the shared-index close must still land in the tool slot"
            ),
            other => panic!("expected ToolCall, got {other:?}"),
        }
    }

    #[test]
    fn text_delta_never_enters_tool_slot() {
        let mut acc = StreamAccumulator::new();
        acc.process(&StreamEvent::PartStart(PartStart {
            index: 0,
            part: Some(MessagePart::tool_call("call_1", "echo", Value::Null)),
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::Text {
                text: "stray narration".into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::IndexedDelta(IndexedDelta {
            index: 0,
            delta: DeltaPart::InputJson {
                partial_json: r#"{"msg":"hi"}"#.into(),
            },
        }))
        .unwrap();
        acc.process(&StreamEvent::PartStop { index: Some(0) })
            .unwrap();
        let msg = acc.build();
        assert_eq!(
            msg.parts.len(),
            1,
            "a text delta must not open or flush an extra part in a tool lane"
        );
        match &msg.parts[0] {
            MessagePart::ToolCall { input, .. } => assert_eq!(
                input,
                &serde_json::json!({"msg": "hi"}),
                "the tool arguments must be untouched by the stray text delta"
            ),
            other => panic!("expected ToolCall, got {other:?}"),
        }
    }

    #[test]
    fn deltapart_thinking_serde_roundtrip() {
        let delta = DeltaPart::Thinking { text: "hmm".into() };
        let json = serde_json::to_string(&delta).unwrap();
        assert_eq!(json, r#"{"type":"thinking_delta","text":"hmm"}"#);
        let parsed: DeltaPart = serde_json::from_str(&json).unwrap();
        match &parsed {
            DeltaPart::Thinking { text } => assert_eq!(text, "hmm"),
            other => panic!("expected Thinking, got {other:?}"),
        }
    }

    #[test]
    fn deltapart_thinking_empty_text_roundtrip() {
        let delta = DeltaPart::Thinking {
            text: String::new(),
        };
        let json = serde_json::to_string(&delta).unwrap();
        let parsed: DeltaPart = serde_json::from_str(&json).unwrap();
        match &parsed {
            DeltaPart::Thinking { text } => assert_eq!(text, ""),
            other => panic!("expected Thinking with empty text, got {other:?}"),
        }
    }

    #[test]
    fn deltapart_thinking_match_compiles() {
        let delta = DeltaPart::Thinking { text: "x".into() };
        let result = match &delta {
            DeltaPart::Text { text } => format!("text:{text}"),
            DeltaPart::Thinking { text } => format!("thinking:{text}"),
            DeltaPart::ToolCall { .. } | DeltaPart::InputJson { .. } => "other".into(),
        };
        assert_eq!(result, "thinking:x");
    }
}