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
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
use futures::{Stream, StreamExt, TryStreamExt};
use std::collections::{BTreeMap, HashMap};
use dynamo_parsers::tool_calling::try_tool_call_parse_aggregate_finalize;
use super::{NvCreateChatCompletionResponse, NvCreateChatCompletionStreamResponse};
use crate::protocols::{
Annotated,
codec::{Message, SseCodecError},
common::extensions::merge_response_nvext,
convert_sse_stream,
openai::ParsingOptions,
};
use dynamo_protocols::types::ChatCompletionMessageContent;
use dynamo_runtime::engine::DataStream;
use dynamo_runtime::error::DynamoError;
fn is_harmony_parser(parser: &str) -> bool {
parser == "harmony"
}
fn is_kimi_k3_parser(parser: &str) -> bool {
matches!(parser, "kimi_k3" | "kimi-k3")
}
fn contains_harmony_protocol(text: &str) -> bool {
text.contains("<|channel|>")
}
/// Quote/escape-aware replacement for `dynamo_parsers::tool_calling::detect_tool_call_start`,
/// which does a naive substring search and false-positives on a marker token that only
/// appears as a quoted JSON string value (e.g. a tool argument literally containing the
/// text `<tool_call>`). Looks up the real per-family marker tokens for `parser` from
/// `dynamo_parsers`' own parser map (falling back to its "default" key exactly as
/// `detect_tool_call_start` does for `None`/empty), then checks each with
/// `unified_parser::contains_unquoted_marker` so a marker embedded inside a quoted string
/// is not misread as native tool-call markup.
fn contains_native_tool_call_marker(content: &str, parser: &str) -> bool {
let parser_key = if parser.is_empty() { "default" } else { parser };
let Some(config) = dynamo_parsers::tool_calling::parsers::get_tool_parser_map().get(parser_key)
else {
return false;
};
config
.parser_config
.tool_call_start_tokens()
.iter()
.any(|marker| {
!marker.is_empty() && super::unified_parser::contains_unquoted_marker(content, marker)
})
}
/// Drops any recovered native-fallback calls that don't match the forced
/// `tool_name` from a `GuidedJsonNamed` constraint. Guided-JSON failure only
/// tells us the *shape* was wrong; it says nothing about which tool the
/// native markup named, so a malformed guided output that happens to embed
/// native markup for a different tool must never be handed back to a client
/// that pinned `tool_choice` to one specific function.
fn filter_calls_to_forced_tool_name(
calls: Vec<dynamo_parsers::tool_calling::ToolCallResponse>,
constraint: &crate::protocols::openai::GuidedToolConstraint,
) -> Vec<dynamo_parsers::tool_calling::ToolCallResponse> {
let crate::protocols::openai::GuidedToolConstraint::GuidedJsonNamed { tool_name } = constraint
else {
return calls;
};
let (matched, dropped): (Vec<_>, Vec<_>) = calls
.into_iter()
.partition(|call| &call.function.name == tool_name);
if !dropped.is_empty() {
tracing::warn!(
tool_name,
dropped = dropped.len(),
"dropped native-fallback tool call(s) whose name did not match the tool_choice-forced tool_name"
);
}
matched
}
async fn parse_complete_tool_output(
content: &str,
parser: &str,
constraint: &crate::protocols::openai::GuidedToolConstraint,
) -> anyhow::Result<(
Vec<dynamo_parsers::tool_calling::ToolCallResponse>,
Option<String>,
)> {
if constraint.installs_guided_json() {
match super::tool_parser_v2::parse_complete_guided_json(content, constraint) {
Ok(calls) => return Ok((calls, Some(String::new()))),
Err(guided_error) => {
if !contains_native_tool_call_marker(content, parser) {
return Err(guided_error);
}
tracing::warn!(
parser,
why = "guided_json_reconstructed_but_native_markup_observed",
recovered_bytes = content.len(),
"falling back to the configured native tool parser"
);
}
}
}
let result =
if super::tool_parser_v2::enabled() && super::tool_parser_v2::supports_family(parser) {
super::tool_parser_v2::parse_complete(content, None, parser)
.map(|(calls, normal)| (calls, Some(normal)))
} else {
try_tool_call_parse_aggregate_finalize(content, Some(parser), None).await
};
result.and_then(|(calls, normal)| {
let filtered = filter_calls_to_forced_tool_name(calls, constraint);
if filtered.is_empty()
&& matches!(
constraint,
crate::protocols::openai::GuidedToolConstraint::GuidedJsonNamed { .. }
)
{
// Mirror the "no native markup found" behavior above: a fallback
// that recovered nothing usable for the forced tool is treated
// the same as a fallback that found nothing at all.
return Err(anyhow::anyhow!(
"native tool-call fallback recovered no call matching the tool_choice-forced tool name"
));
}
Ok((filtered, normal))
})
}
/// Aggregates a stream of [`NvCreateChatCompletionStreamResponse`]s into a single
/// [`NvCreateChatCompletionResponse`]. This struct accumulates incremental responses
/// from a streaming OpenAI API call into a complete final response.
pub struct DeltaAggregator {
/// Unique identifier for the chat completion.
id: String,
/// Model name used for the chat completion.
model: String,
/// Timestamp (Unix epoch) indicating when the response was created.
created: u32,
/// Optional usage statistics for the completion request.
usage: Option<dynamo_protocols::types::CompletionUsage>,
/// Optional system fingerprint for version tracking.
system_fingerprint: Option<String>,
/// Map of incremental response choices, keyed by index.
choices: HashMap<u32, DeltaChoice>,
/// Optional service tier information for the response.
service_tier: Option<dynamo_protocols::types::ServiceTierResponse>,
/// Aggregated nvext field from stream responses
nvext: Option<serde_json::Value>,
}
/// Represents the accumulated state of a single chat choice during streaming aggregation.
#[derive(Debug)]
struct DeltaChoice {
/// The index of the choice in the completion.
index: u32,
/// The accumulated text content for the choice.
text: String,
/// The role associated with this message (e.g., `system`, `user`, `assistant`).
role: Option<dynamo_protocols::types::Role>,
/// The reason the completion was finished (if applicable).
finish_reason: Option<dynamo_protocols::types::FinishReason>,
/// Optional log probabilities for the chat choice.
logprobs: Option<dynamo_protocols::types::ChatChoiceLogprobs>,
// Tool-call chunks accumulated in the order they arrived from the stream,
// keyed by `index` so chunks that carry only argument fragments can be
// merged into the entry created by the initial (id + name) chunk.
// BTreeMap preserves deterministic iteration order on the index dimension.
// See [`merge_tool_call_chunk`] for per-field merge semantics.
// #8640: replaces the old `Option<Vec<ChatCompletionMessageToolCall>>`
// which required id/name/arguments to all be set on the same chunk.
tool_call_chunks: BTreeMap<u32, dynamo_protocols::types::ChatCompletionMessageToolCallChunk>,
// Optional tool calls for the chat choice, populated *after* fold either
// by finalizing `tool_call_chunks` above, or by
// `try_tool_call_parse_aggregate_finalize` running against `text` for producers
// that put tool calls in content rather than as structured chunks.
tool_calls: Option<Vec<dynamo_protocols::types::ChatCompletionMessageToolCall>>,
/// Optional reasoning content for the chat choice.
reasoning_content: Option<String>,
/// Accumulated content parts for multimodal responses
content_parts: Vec<dynamo_protocols::types::ChatCompletionResponseContentPart>,
}
fn suppress_tool_call_output(choice: &mut DeltaChoice) {
// Fail closed when the decoded turn contains only an unauthorized tool call.
// We cannot safely reconstruct parser-specific wire markup as assistant text;
// in that case content remains empty and the terminal reason becomes `stop`.
choice.tool_calls = None;
if choice.finish_reason == Some(dynamo_protocols::types::FinishReason::ToolCalls) {
choice.finish_reason = Some(dynamo_protocols::types::FinishReason::Stop);
}
}
impl Default for DeltaAggregator {
/// Provides a default implementation for `DeltaAggregator` by calling [`DeltaAggregator::new`].
fn default() -> Self {
Self::new()
}
}
/// Merge an incoming chunk into the per-index accumulator.
///
/// #8640: the prior implementation required `id`, `name`, and `arguments`
/// all on the same chunk, and thus the argument-fragment deltas were dropped
/// and the client saw `arguments: ""`.
///
/// The fix here merges by `index` across deltas: `id`, `type`, `function.name`
/// first-wins; `function.arguments` concatenated across fragments. This matches
/// the OpenAI streaming spec and vLLM/SGLang hermes emission:
///
/// * delta 1: `{index, id, type, function: { name }}`
/// * delta 2..N: `{index, function: { arguments: "<fragment>" }}`
fn merge_tool_call_chunk(
existing: &mut dynamo_protocols::types::ChatCompletionMessageToolCallChunk,
incoming: dynamo_protocols::types::ChatCompletionMessageToolCallChunk,
) {
if existing.id.is_none()
&& let Some(id) = incoming.id
{
existing.id = Some(id);
}
if existing.r#type.is_none()
&& let Some(ty) = incoming.r#type
{
existing.r#type = Some(ty);
}
let Some(incoming_fn) = incoming.function else {
return;
};
match &mut existing.function {
None => existing.function = Some(incoming_fn),
Some(existing_fn) => {
if existing_fn.name.is_none()
&& let Some(name) = incoming_fn.name
{
existing_fn.name = Some(name);
}
if let Some(args_fragment) = incoming_fn.arguments {
existing_fn
.arguments
.get_or_insert_with(String::new)
.push_str(&args_fragment);
}
}
}
}
/// Convert a fully merged chunk (post-merge accumulator state) to a finalized
/// `ChatCompletionMessageToolCall`. Returns `None` only if `id` or
/// `function.name` never arrived across any chunk — those are required by the
/// final OpenAI response schema. Missing `arguments` is legal (empty-args
/// tool calls) and becomes `""`. A warning is logged on drop so a producer
/// bug in upstream (e.g. vLLM / SGLang emitting fragments without ever
/// establishing the id+name opener) doesn't silently eat a tool call the
/// way the pre-fix code did.
fn finalize_merged_tool_chunk(
chunk: dynamo_protocols::types::ChatCompletionMessageToolCallChunk,
) -> Option<dynamo_protocols::types::ChatCompletionMessageToolCall> {
let index = chunk.index;
let Some(id) = chunk.id else {
tracing::warn!(
tool_call_index = index,
"dropping merged tool-call chunk: no `id` arrived across any delta"
);
return None;
};
let Some(function) = chunk.function else {
tracing::warn!(
tool_call_index = index,
tool_call_id = %id,
"dropping merged tool-call chunk: no `function` arrived across any delta"
);
return None;
};
let Some(name) = function.name else {
tracing::warn!(
tool_call_index = index,
tool_call_id = %id,
"dropping merged tool-call chunk: no `function.name` arrived across any delta"
);
return None;
};
Some(dynamo_protocols::types::ChatCompletionMessageToolCall {
id,
// Use the merged r#type if the stream carried one. Falls back to
// `Function` — today the only variant in the OpenAI schema, but
// threading the merged value keeps us forward-compat if variants
// are added later and avoids dead state in `merge_tool_call_chunk`.
r#type: chunk
.r#type
.unwrap_or(dynamo_protocols::types::FunctionType::Function),
function: dynamo_protocols::types::FunctionCall {
name,
arguments: function.arguments.unwrap_or_default(),
},
})
}
impl DeltaAggregator {
/// Creates a new, empty [`DeltaAggregator`] instance.
pub fn new() -> Self {
Self {
id: "".to_string(),
model: "".to_string(),
created: 0,
usage: None,
system_fingerprint: None,
choices: HashMap::new(),
service_tier: None,
nvext: None,
}
}
/// Aggregates a stream of [`NvCreateChatCompletionStreamResponse`]s into a single
/// [`NvCreateChatCompletionResponse`].
///
/// # Arguments
/// * `stream` - A stream of annotated chat completion responses.
///
/// # Returns
/// * `Ok(NvCreateChatCompletionResponse)` if aggregation is successful.
/// * `Err(DynamoError)` if an error occurs during processing.
pub async fn apply(
stream: impl Stream<Item = Annotated<NvCreateChatCompletionStreamResponse>>,
parsing_options: ParsingOptions,
) -> Result<NvCreateChatCompletionResponse, DynamoError> {
let mut aggregator = stream
.map(Annotated::into_data)
.try_fold(DeltaAggregator::new(), |mut aggregator, delta| async move {
if let Some(delta) = delta {
aggregator.id = delta.inner.id;
aggregator.model = delta.inner.model;
aggregator.created = delta.inner.created;
aggregator.service_tier = delta.inner.service_tier;
// Aggregate usage statistics if available.
if let Some(usage) = delta.inner.usage {
aggregator.usage = Some(usage);
}
if let Some(system_fingerprint) = delta.inner.system_fingerprint {
aggregator.system_fingerprint = Some(system_fingerprint);
}
merge_response_nvext(&mut aggregator.nvext, delta.nvext);
// Aggregate choices incrementally.
for choice in delta.inner.choices {
let choice_role = choice.delta.role;
let state_choice =
aggregator
.choices
.entry(choice.index)
.or_insert(DeltaChoice {
index: choice.index,
text: "".to_string(),
role: choice_role,
finish_reason: None,
logprobs: None,
tool_call_chunks: BTreeMap::new(),
tool_calls: None,
reasoning_content: None,
content_parts: Vec::new(),
});
if state_choice.role.is_none() {
state_choice.role = choice_role;
}
// Handle content based on type
if let Some(content) = &choice.delta.content {
match content {
ChatCompletionMessageContent::Text(text) => {
state_choice.text.push_str(text);
}
ChatCompletionMessageContent::Parts(parts) => {
state_choice.content_parts.extend(parts.clone());
}
}
}
if let Some(reasoning_content) = &choice.delta.reasoning_content {
state_choice
.reasoning_content
.get_or_insert_with(String::new)
.push_str(reasoning_content);
}
// #8640: streaming producers split a single tool call across
// multiple deltas (delta 1 = id + name; delta 2..N = argument
// fragments), so we merge chunks into a per-index accumulator
// here instead of treating each chunk as a complete tool call.
// Finalization to `tool_calls` happens after the fold.
if let Some(incoming_chunks) = choice.delta.tool_calls {
for chunk in incoming_chunks {
let entry = state_choice
.tool_call_chunks
.entry(chunk.index)
.or_insert_with(|| {
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: chunk.index,
id: None,
r#type: None,
function: None,
}
});
merge_tool_call_chunk(entry, chunk);
}
}
// Update finish reason if provided.
if let Some(finish_reason) = choice.finish_reason {
state_choice.finish_reason = Some(finish_reason);
}
// Update logprobs
if let Some(logprobs) = &choice.logprobs {
let state_lps = state_choice.logprobs.get_or_insert(
dynamo_protocols::types::ChatChoiceLogprobs {
content: None,
refusal: None,
},
);
if let Some(content_lps) = &logprobs.content {
state_lps
.content
.get_or_insert(Vec::new())
.extend(content_lps.clone());
}
if let Some(refusal_lps) = &logprobs.refusal {
state_lps
.refusal
.get_or_insert(Vec::new())
.extend(refusal_lps.clone());
}
}
}
}
Ok(aggregator)
})
.await?;
// #8640: finalize the per-index tool-call chunk accumulator into the
// choice's `tool_calls` vector. Chunks missing id or name across the
// whole stream are dropped here (they're not a valid tool call in the
// final schema), but chunks missing only `arguments` get defaulted to
// "" — the old code dropped those entirely.
for choice in aggregator.choices.values_mut() {
if choice.tool_call_chunks.is_empty() {
continue;
}
let finalized: Vec<_> = std::mem::take(&mut choice.tool_call_chunks)
.into_values()
.filter_map(finalize_merged_tool_chunk)
.collect();
// choice.tool_calls is always None at this point: or_insert
// initializes it to None, try_tool_call_parse_aggregate_finalize
// runs strictly after this loop. Unconditional assign is the only
// reachable path; no merge-with-existing needed.
if !finalized.is_empty() {
choice.tool_calls = Some(finalized);
}
}
// This is both a defense-in-depth check for structured deltas and a
// prerequisite for whole-response decoders such as Harmony: clear any
// already-structured calls before parsing so the decoder can still
// inspect ordinary text below.
if parsing_options.suppress_tool_calls {
for choice in aggregator.choices.values_mut() {
suppress_tool_call_output(choice);
}
}
// Two independent families each own ONE unified parser (topology B: raw
// model text reaches the frontend un-split) that replaces the split
// reasoning/tool-call finalize below outright: Qwen3 (`unified_parser`,
// gated on DYN_ENABLE_EXPERIMENTAL_PARSERS_V2) and muse (`tool_parser_v2`,
// default-on). This is the safety net for output that reached the
// aggregator unparsed; a request the worker already streamed through the
// matching `apply_stream`/`apply_unified_stream` arrives with `tool_calls`
// populated and is skipped by each guard below.
let qwen3_unified_family = super::unified_parser::selected_batch_family(
parsing_options.tool_call_parser.as_deref(),
parsing_options.reasoning_parser.as_deref(),
);
if let Some(family) = qwen3_unified_family {
for choice in aggregator.choices.values_mut() {
if choice.text.is_empty()
|| choice
.tool_calls
.as_ref()
.is_some_and(|calls| !calls.is_empty())
{
continue;
}
match super::unified_parser::parse_complete(
family,
&choice.text,
&parsing_options.guided_tool_constraint,
&parsing_options.tools,
) {
Ok(parsed) => {
choice.text = parsed.text;
if !parsed.reasoning.is_empty() {
choice
.reasoning_content
.get_or_insert_with(String::new)
.push_str(&parsed.reasoning);
}
if !parsed.tool_calls.is_empty() && !parsing_options.suppress_tool_calls {
choice.tool_calls = Some(parsed.tool_calls);
// OpenAI contract: a message carrying tool calls finishes
// with `ToolCalls`, not `Stop`.
if choice.finish_reason
== Some(dynamo_protocols::types::FinishReason::Stop)
{
choice.finish_reason =
Some(dynamo_protocols::types::FinishReason::ToolCalls);
}
}
}
Err(error) => {
// Best-effort: the aggregated text is served as-is rather than
// failing a request the model already answered.
tracing::warn!(
error = %error,
family,
"failed to parse aggregated unified output; serving it unparsed"
);
}
}
}
}
// Muse finalizes through the UNIFIED parser (topology B: raw model text
// reaches the frontend un-split). Keyed on EITHER parser name to match the
// streaming guard, so a reasoning-only card (`--dyn-reasoning-parser
// muse_glimmer`, no tool-call parser) splits its markup here too. Default-on,
// so muse never falls into the v1 aggregate-finalize below. The gate is wider
// than main's `tool_call_parser.is_some()` for that reason; `parser` is bound
// inside the loop, after the muse branch has taken its `continue`. Excluded
// when Qwen3 already claimed the request above, since Qwen3 also configures a
// `tool_call_parser` and would otherwise fall through into this block too.
let unified_family = super::tool_parser_v2::unified_family(
parsing_options.tool_call_parser.as_deref(),
parsing_options.reasoning_parser.as_deref(),
);
if qwen3_unified_family.is_none()
&& (unified_family.is_some() || parsing_options.tool_call_parser.is_some())
{
for choice in aggregator.choices.values_mut() {
if choice
.tool_calls
.as_ref()
.is_some_and(|calls| !calls.is_empty())
|| choice.text.is_empty()
{
continue;
}
if let Some(family) = unified_family.as_deref() {
// Only the guided-JSON success arm below returns a synthetic
// empty `content` placeholder (there is no separate message
// text distinct from the tool-call JSON itself). Every other
// arm — the native-fallback-after-guided-error reconstruction,
// and the plain non-guided `else` branch — returns REAL
// stripped content from `parse_complete_unified` that must
// always replace `choice.text`, matching the sibling Qwen3
// block's unconditional assignment, regardless of whether any
// tool calls were found.
let mut content_is_guided_placeholder = false;
let parse_result = if parsing_options
.guided_tool_constraint
.installs_guided_json()
{
match super::tool_parser_v2::parse_complete_guided_json(
&choice.text,
&parsing_options.guided_tool_constraint,
) {
Ok(calls) => {
content_is_guided_placeholder = true;
Ok((calls, String::new(), String::new()))
}
Err(guided_error) => {
match super::tool_parser_v2::parse_complete_unified(
&choice.text,
None,
family,
) {
Ok((calls, reasoning, content)) => {
// A GuidedJsonNamed constraint pins one tool
// name; the native fallback must never hand
// back a call for a different tool just
// because it happened to find markup naming
// one in the malformed guided output.
let calls = filter_calls_to_forced_tool_name(
calls,
&parsing_options.guided_tool_constraint,
);
if !calls.is_empty()
|| !reasoning.is_empty()
|| content != choice.text
{
tracing::warn!(
family,
why = "guided_json_reconstructed_but_native_markup_observed",
recovered_bytes = choice.text.len(),
"falling back to the configured unified parser"
);
Ok((calls, reasoning, content))
} else {
Err(guided_error)
}
}
Err(native_error) => Err(native_error.context(format!(
"guided JSON parse also failed: {guided_error:#}"
))),
}
}
}
} else {
super::tool_parser_v2::parse_complete_unified(&choice.text, None, family)
};
match parse_result {
Ok((calls, reasoning, content)) => {
let calls_is_empty = calls.is_empty();
// Same rule the streaming path applies: `none` still gets the
// reasoning/content split and the marker stripping, but a
// caller that disabled tools must not receive `tool_calls`.
if !calls_is_empty && !parsing_options.suppress_tool_calls {
choice.tool_calls = Some(
calls
.into_iter()
.map(super::tool_call_response_to_protocol)
.collect(),
);
}
if !reasoning.is_empty() {
choice
.reasoning_content
.get_or_insert_with(String::new)
.push_str(&reasoning);
}
if !calls_is_empty || !content_is_guided_placeholder {
choice.text = content;
} else {
tracing::warn!(
family,
why = "guided_json_produced_zero_calls_under_tool_choice_required",
original_bytes = choice.text.len(),
"guided-JSON parse returned zero tool calls; preserving original text"
);
}
}
Err(error) => {
tracing::debug!(error = %error, family, "muse unified batch parse failed");
}
}
continue;
}
// Not muse: the loop gate guarantees a tool-call parser is set here.
let Some(parser) = parsing_options.tool_call_parser.as_deref() else {
continue;
};
// With DYN_ENABLE_EXPERIMENTAL_PARSERS_V2, supported families use the
// v2 parser for batch too (no jail / no aggregate-finalize):
// parse_complete drops a value truncated at EOF instead of guessing it.
// Other families and the flag-off path keep the v1 finalize path.
// Guided JSON is handled above from the exact carried constraint.
// Extract the truncated tail BEFORE parsing so a second <tool_call>
// truncated after a complete first one is not silently dropped.
// Token strings come from the parser config so this stays in sync
// with any override, and matches the streaming path in preprocessor.rs.
let glm47_cfg = dynamo_parsers::tool_calling::config::Glm47ParserConfig::default();
let glm47_truncated_tail = if parser == "glm47"
&& matches!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Length)
) {
choice
.text
.rfind(glm47_cfg.tool_call_start.as_str())
.and_then(|start| {
let tail = &choice.text[start..];
if !tail.contains(glm47_cfg.tool_call_end.as_str()) {
Some(tail.to_string())
} else {
None
}
})
} else {
None
};
let parse_result = parse_complete_tool_output(
&choice.text,
parser,
&parsing_options.guided_tool_constraint,
)
.await;
let (tool_calls, content) = match parse_result {
Ok(result) => result,
Err(error) => {
tracing::debug!(
error = %error,
parser,
"failed to parse aggregated chat tool calls"
);
continue;
}
};
if !tool_calls.is_empty() {
choice.tool_calls = Some(
tool_calls
.into_iter()
.map(super::tool_call_response_to_protocol)
.collect(),
);
choice.text = content.unwrap_or_default();
} else if (is_harmony_parser(parser) && contains_harmony_protocol(&choice.text))
|| is_kimi_k3_parser(parser)
{
choice.text = content.unwrap_or_default();
} else if parser == "glm47"
&& matches!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Length)
)
&& choice.text.contains(glm47_cfg.tool_call_start.as_str())
{
tracing::warn!(
parser,
"glm47: partial <tool_call> returned as content on length finish"
);
}
// Recover any tail saved before parsing — the parser drops a truncated
// second block silently when an earlier complete block was already parsed.
if let Some(tail) = glm47_truncated_tail
&& !choice.text.contains(&tail)
{
tracing::warn!(
parser,
tail_bytes = tail.len(),
"glm47: truncated later <tool_call> appended as content"
);
if choice.text.is_empty() {
choice.text = tail;
} else {
choice.text.push_str(&tail);
}
}
}
}
// A retained whole-response parser may discover a syntactically valid
// call while removing model-internal channel markup. Parser activation
// is not permission to expose that call; enforce the request policy
// again after aggregate parsing.
if parsing_options.suppress_tool_calls {
for choice in aggregator.choices.values_mut() {
suppress_tool_call_output(choice);
}
}
// Enforce parallel_tool_calls == false as a universal post-parse fallback,
// similar to vLLM's maybe_filter_parallel_tool_calls
if parsing_options.parallel_tool_calls == Some(false) {
for choice in aggregator.choices.values_mut() {
if let Some(calls) = choice.tool_calls.as_mut()
&& calls.len() > 1
{
calls.truncate(1);
}
}
}
// for non-streaming `force_nonempty_content=true`
// requests, a reasoning-only turn leaves `content` empty because all
// output was split into `reasoning_content`. The chat template promised
// non-empty content, so surface the reasoning as content. Only when no
// content and no tool calls were produced; when content exists,
// reasoning stays in `reasoning_content`.
if parsing_options.move_reasoning_to_content_when_empty {
for choice in aggregator.choices.values_mut() {
let has_tool_calls = choice
.tool_calls
.as_ref()
.is_some_and(|calls| !calls.is_empty());
// `content_parts` (multimodal) counts as content too — `From<DeltaChoice>`
// prefers parts over `text`, so moving reasoning into `text` here would be
// dropped. Only move when there is no content of either kind.
// Whitespace-only text counts as empty — matching vLLM's
// NemotronV3ReasoningParser (`not final_content.strip()`): a
// trailing newline after `</think>` must not block the move and
// leave semantically empty content.
if choice.text.trim().is_empty()
&& choice.content_parts.is_empty()
&& !has_tool_calls
&& choice
.reasoning_content
.as_deref()
.is_some_and(|r| !r.trim().is_empty())
{
choice.text = choice.reasoning_content.take().unwrap_or_default();
}
}
}
// Extract aggregated choices and sort them by index.
let mut choices: Vec<_> = aggregator
.choices
.into_values()
.map(dynamo_protocols::types::ChatChoice::from)
.collect();
choices.sort_by_key(|a| a.index);
// Construct the final response object.
let response = NvCreateChatCompletionResponse {
inner: dynamo_protocols::types::CreateChatCompletionResponse {
id: aggregator.id,
created: aggregator.created,
usage: aggregator.usage,
model: aggregator.model,
object: "chat.completion".to_string(),
system_fingerprint: aggregator.system_fingerprint,
choices,
service_tier: aggregator.service_tier,
},
nvext: aggregator.nvext,
};
Ok(response)
}
}
#[allow(deprecated)]
impl From<DeltaChoice> for dynamo_protocols::types::ChatChoice {
/// Converts a [`DeltaChoice`] into an [`dynamo_protocols::types::ChatChoice`].
///
/// # Note
/// The `function_call` field is deprecated.
fn from(delta: DeltaChoice) -> Self {
// TODO: Revisit whether tool calls produced at the output-token limit should
// preserve Length and yield an incomplete Responses result.
let finish_reason = if delta
.tool_calls
.as_ref()
.is_some_and(|calls| !calls.is_empty())
{
Some(dynamo_protocols::types::FinishReason::ToolCalls)
} else {
delta.finish_reason
};
// Determine content format based on what we accumulated
let content = if !delta.content_parts.is_empty() {
// Multimodal response with content parts
Some(ChatCompletionMessageContent::Parts(delta.content_parts))
} else if !delta.text.is_empty() {
// Text-only response (backward compatible)
Some(ChatCompletionMessageContent::Text(delta.text))
} else {
None
};
dynamo_protocols::types::ChatChoice {
message: dynamo_protocols::types::ChatCompletionResponseMessage {
role: delta
.role
.unwrap_or(dynamo_protocols::types::Role::Assistant),
content,
tool_calls: delta.tool_calls,
refusal: None,
function_call: None,
audio: None,
reasoning_content: delta.reasoning_content,
},
index: delta.index,
finish_reason,
logprobs: delta.logprobs,
}
}
}
/// Trait for aggregating chat completion responses from streams.
/// Setting this macro because our async functions are not used outside of the library
#[allow(async_fn_in_trait)]
pub trait ChatCompletionAggregator {
/// Aggregates an annotated stream of chat completion responses into a final response.
///
/// # Arguments
/// * `stream` - A stream of annotated chat completion responses.
///
/// # Returns
/// * `Ok(NvCreateChatCompletionResponse)` if aggregation succeeds.
/// * `Err(DynamoError)` if an error occurs.
async fn from_annotated_stream(
stream: impl Stream<Item = Annotated<NvCreateChatCompletionStreamResponse>>,
parsing_options: ParsingOptions,
) -> Result<NvCreateChatCompletionResponse, DynamoError>;
/// Converts an SSE stream into a [`NvCreateChatCompletionResponse`].
///
/// # Arguments
/// * `stream` - A stream of SSE messages containing chat completion responses.
///
/// # Returns
/// * `Ok(NvCreateChatCompletionResponse)` if aggregation succeeds.
/// * `Err(DynamoError)` if an error occurs.
async fn from_sse_stream(
stream: DataStream<Result<Message, SseCodecError>>,
parsing_options: ParsingOptions,
) -> Result<NvCreateChatCompletionResponse, DynamoError>;
}
impl ChatCompletionAggregator for NvCreateChatCompletionResponse {
async fn from_annotated_stream(
stream: impl Stream<Item = Annotated<NvCreateChatCompletionStreamResponse>>,
parsing_options: ParsingOptions,
) -> Result<NvCreateChatCompletionResponse, DynamoError> {
DeltaAggregator::apply(stream, parsing_options).await
}
async fn from_sse_stream(
stream: DataStream<Result<Message, SseCodecError>>,
parsing_options: ParsingOptions,
) -> Result<NvCreateChatCompletionResponse, DynamoError> {
let stream = convert_sse_stream::<NvCreateChatCompletionStreamResponse>(stream);
NvCreateChatCompletionResponse::from_annotated_stream(stream, parsing_options).await
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::protocols::openai::token_to_utf8_bytes;
use futures::stream;
#[allow(deprecated)]
fn create_test_delta(
index: u32,
text: &str,
role: Option<dynamo_protocols::types::Role>,
finish_reason: Option<dynamo_protocols::types::FinishReason>,
logprob: Option<f32>,
tool_calls: Option<&str>,
) -> Annotated<NvCreateChatCompletionStreamResponse> {
// ALLOW: function_call is deprecated
let tool_calls: Option<serde_json::Value> =
tool_calls.map(|tool_calls| serde_json::from_str(tool_calls).unwrap());
let tool_call_chunks = tool_calls.map(|tool_calls| {
vec![
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: 0,
id: Some("test_id".to_string()),
r#type: Some(dynamo_protocols::types::FunctionType::Function),
function: Some(dynamo_protocols::types::FunctionCallStream {
name: tool_calls["name"].as_str().map(|s| s.to_string()),
arguments: Some(serde_json::to_string(&tool_calls["arguments"]).unwrap()),
}),
},
]
});
let delta = dynamo_protocols::types::ChatCompletionStreamResponseDelta {
content: Some(ChatCompletionMessageContent::Text(text.to_string())),
function_call: None,
tool_calls: tool_call_chunks,
role,
refusal: None,
reasoning_content: None,
};
let logprobs = logprob.map(|lp| {
let token = text.to_string();
dynamo_protocols::types::ChatChoiceLogprobs {
content: Some(vec![dynamo_protocols::types::ChatCompletionTokenLogprob {
token: token.clone(),
logprob: lp,
token_id: None,
bytes: token_to_utf8_bytes(&token),
top_logprobs: vec![],
}]),
refusal: None,
}
});
let choice = dynamo_protocols::types::ChatChoiceStream {
index,
delta,
finish_reason,
logprobs,
};
let data = NvCreateChatCompletionStreamResponse {
inner: dynamo_protocols::types::CreateChatCompletionStreamResponse {
id: "test_id".to_string(),
model: "meta/llama-3.1-8b-instruct".to_string(),
created: 1234567890,
service_tier: None,
usage: None,
system_fingerprint: None,
choices: vec![choice],
object: "chat.completion".to_string(),
},
nvext: None,
llm_metrics: None,
};
Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
}
}
/// Build a stream delta with `reasoning_content` set and optional (possibly
/// empty) text content — mirrors what the reasoning parser emits after
/// splitting think tags. Used by the force_nonempty_content test.
fn create_reasoning_delta(
index: u32,
content: &str,
reasoning_content: &str,
) -> Annotated<NvCreateChatCompletionStreamResponse> {
// ALLOW: function_call is deprecated
#[allow(deprecated)]
let delta = dynamo_protocols::types::ChatCompletionStreamResponseDelta {
content: Some(ChatCompletionMessageContent::Text(content.to_string())),
function_call: None,
tool_calls: None,
role: Some(dynamo_protocols::types::Role::Assistant),
refusal: None,
reasoning_content: Some(reasoning_content.to_string()),
};
let choice = dynamo_protocols::types::ChatChoiceStream {
index,
delta,
finish_reason: Some(dynamo_protocols::types::FinishReason::Stop),
logprobs: None,
};
let data = NvCreateChatCompletionStreamResponse {
inner: dynamo_protocols::types::CreateChatCompletionStreamResponse {
id: "test_id".to_string(),
model: "nvidia/nvidia-nemotron-3-ultra".to_string(),
created: 1234567890,
service_tier: None,
usage: None,
system_fingerprint: None,
choices: vec![choice],
object: "chat.completion".to_string(),
},
nvext: None,
llm_metrics: None,
};
Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
}
}
/// with Nemotron `force_nonempty_content=true`, a non-streaming
/// reasoning-only turn must surface its reasoning as `content` (the chat
/// template promised non-empty content), but only when no content was
/// generated. Gated by `ParsingOptions::move_reasoning_to_content_when_empty`.
#[tokio::test]
async fn test_move_reasoning_to_content_when_empty() {
let reasoning_only = || {
Box::pin(stream::iter(vec![create_reasoning_delta(
0,
"",
"Let me think.",
)]))
};
// Repro: without the flag, a reasoning-only turn leaves content empty
// (None) even though force_nonempty_content promised non-empty content.
let resp = DeltaAggregator::apply(reasoning_only(), ParsingOptions::default())
.await
.unwrap();
let msg = &resp.inner.choices[0].message;
assert!(
msg.content.is_none(),
"repro: content empty without the flag"
);
assert_eq!(msg.reasoning_content.as_deref(), Some("Let me think."));
// Fixed: with the flag, reasoning is moved into content and cleared.
let opts = ParsingOptions::default().with_move_reasoning_to_content_when_empty(true);
let resp = DeltaAggregator::apply(reasoning_only(), opts.clone())
.await
.unwrap();
let msg = &resp.inner.choices[0].message;
assert_eq!(
msg.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Let me think.".to_string()),
);
assert_eq!(msg.reasoning_content, None);
// Whitespace-only content counts as empty (a trailing newline after
// `</think>` from the incremental parser) — matches vLLM's
// `not final_content.strip()` check; the move must still fire.
let whitespace_content = Box::pin(stream::iter(vec![create_reasoning_delta(
0,
"\n",
"Let me think.",
)]));
let resp = DeltaAggregator::apply(whitespace_content, opts.clone())
.await
.unwrap();
let msg = &resp.inner.choices[0].message;
assert_eq!(
msg.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Let me think.".to_string()),
);
assert_eq!(msg.reasoning_content, None);
// When content WAS generated, reasoning stays in reasoning_content.
let with_content = Box::pin(stream::iter(vec![create_reasoning_delta(
0,
"The answer is 42.",
"Let me think.",
)]));
let resp = DeltaAggregator::apply(with_content, opts).await.unwrap();
let msg = &resp.inner.choices[0].message;
assert_eq!(
msg.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("The answer is 42.".to_string()),
);
assert_eq!(msg.reasoning_content.as_deref(), Some("Let me think."));
}
/// Multimodal content lives in `content_parts`, and `From<DeltaChoice>` prefers
/// parts over `text` — so reasoning must NOT be moved when parts are present
/// (it would be silently dropped). Guards the `content_parts` half of the
/// no-content check.
#[tokio::test]
async fn test_move_reasoning_skips_when_content_parts_present() {
#[allow(deprecated)]
let delta = dynamo_protocols::types::ChatCompletionStreamResponseDelta {
content: Some(ChatCompletionMessageContent::Parts(vec![
dynamo_protocols::types::ChatCompletionResponseContentPart::Text(
dynamo_protocols::types::ChatCompletionResponseContentPartText {
text: "an image".to_string(),
},
),
])),
function_call: None,
tool_calls: None,
role: Some(dynamo_protocols::types::Role::Assistant),
refusal: None,
reasoning_content: Some("thinking".to_string()),
};
let choice = dynamo_protocols::types::ChatChoiceStream {
index: 0,
delta,
finish_reason: Some(dynamo_protocols::types::FinishReason::Stop),
logprobs: None,
};
let data = NvCreateChatCompletionStreamResponse {
inner: dynamo_protocols::types::CreateChatCompletionStreamResponse {
id: "test_id".to_string(),
model: "m".to_string(),
created: 1,
service_tier: None,
usage: None,
system_fingerprint: None,
choices: vec![choice],
object: "chat.completion".to_string(),
},
nvext: None,
llm_metrics: None,
};
let annotated = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let opts = ParsingOptions::default().with_move_reasoning_to_content_when_empty(true);
let resp = DeltaAggregator::apply(Box::pin(stream::iter(vec![annotated])), opts)
.await
.unwrap();
let msg = &resp.inner.choices[0].message;
assert!(matches!(
msg.content.as_ref().unwrap(),
ChatCompletionMessageContent::Parts(_)
));
assert_eq!(msg.reasoning_content.as_deref(), Some("thinking"));
}
/// Build a stream delta carrying a raw list of tool-call chunks (no content).
/// Used by multi-chunk tests that mimic vLLM hermes' streaming emission:
/// the first chunk carries `id` + `function.name` only, subsequent chunks
/// carry `function.arguments` fragments with neither `id` nor `name`.
fn create_test_delta_with_tool_chunks(
index: u32,
tool_chunks: Vec<dynamo_protocols::types::ChatCompletionMessageToolCallChunk>,
finish_reason: Option<dynamo_protocols::types::FinishReason>,
role: Option<dynamo_protocols::types::Role>,
) -> Annotated<NvCreateChatCompletionStreamResponse> {
#[allow(deprecated)]
let delta = dynamo_protocols::types::ChatCompletionStreamResponseDelta {
content: None,
function_call: None,
tool_calls: Some(tool_chunks),
role,
refusal: None,
reasoning_content: None,
};
let choice = dynamo_protocols::types::ChatChoiceStream {
index,
delta,
finish_reason,
logprobs: None,
};
let data = NvCreateChatCompletionStreamResponse {
inner: dynamo_protocols::types::CreateChatCompletionStreamResponse {
id: "test_id".to_string(),
model: "meta/llama-3.1-8b-instruct".to_string(),
created: 1234567890,
service_tier: None,
usage: None,
system_fingerprint: None,
choices: vec![choice],
object: "chat.completion".to_string(),
},
nvext: None,
llm_metrics: None,
};
Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
}
}
/// Repro for [#8640](https://github.com/ai-dynamo/dynamo/issues/8640):
/// vLLM hermes (and any spec-compliant OpenAI tool-call streaming producer)
/// splits a single tool call across multiple deltas:
/// delta 1: `{index: 0, id: "tc1", type: function, function: {name: "get_weather"}}`
/// delta 2: `{index: 0, function: {arguments: "{\"city\":"}}`
/// delta 3: `{index: 0, function: {arguments: "\"Tokyo\"}"}}`
/// The aggregated non-stream response must reconstruct
/// `arguments = "{\"city\":\"Tokyo\"}"`. Before the fix,
/// `convert_tool_chunk_to_message_tool_call` requires id/name/arguments all
/// set on the *same* chunk and drops the argument-fragment chunks — so the
/// client sees `arguments: ""`.
#[tokio::test]
async fn test_issue_8640_split_tool_call_arguments_reconstructed() {
let name_chunk = dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: 0,
id: Some("tc1".to_string()),
r#type: Some(dynamo_protocols::types::FunctionType::Function),
function: Some(dynamo_protocols::types::FunctionCallStream {
name: Some("get_weather".to_string()),
arguments: None,
}),
};
let args_chunk_1 = dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: 0,
id: None,
r#type: None,
function: Some(dynamo_protocols::types::FunctionCallStream {
name: None,
arguments: Some("{\"city\":".to_string()),
}),
};
let args_chunk_2 = dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: 0,
id: None,
r#type: None,
function: Some(dynamo_protocols::types::FunctionCallStream {
name: None,
arguments: Some("\"Tokyo\"}".to_string()),
}),
};
let deltas = vec![
create_test_delta_with_tool_chunks(
0,
vec![name_chunk],
None,
Some(dynamo_protocols::types::Role::Assistant),
),
create_test_delta_with_tool_chunks(0, vec![args_chunk_1], None, None),
create_test_delta_with_tool_chunks(
0,
vec![args_chunk_2],
Some(dynamo_protocols::types::FinishReason::ToolCalls),
None,
),
];
let stream = Box::pin(stream::iter(deltas));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok(), "aggregation should not error");
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
let tool_calls = choice
.message
.tool_calls
.as_ref()
.expect("tool_calls should be Some after aggregation");
assert_eq!(
tool_calls.len(),
1,
"must produce exactly one aggregated tool_call, got {}",
tool_calls.len()
);
let tc = &tool_calls[0];
assert_eq!(tc.id, "tc1");
assert_eq!(tc.function.name, "get_weather");
assert_eq!(
tc.function.arguments, "{\"city\":\"Tokyo\"}",
"#8640: arguments must be reconstructed from split fragments, \
not dropped (got {:?})",
tc.function.arguments
);
}
/// Two parallel tool calls (index=0 and index=1), their chunks interleaved
/// in emission order. Exercises that the per-index accumulator correctly
/// keeps the two calls separate — not just that split args get merged
/// within one call (which [`test_issue_8640_split_tool_call_arguments_reconstructed`]
/// already covers). Related: [#8636](https://github.com/ai-dynamo/dynamo/issues/8636)
/// is about the streaming path dropping the second call; the non-stream
/// aggregator now handles the parallel case too, and this test pins it.
#[tokio::test]
async fn test_parallel_tool_calls_interleaved_chunks_aggregate_independently() {
let make_name = |idx: u32, id: &str, name: &str| {
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: idx,
id: Some(id.to_string()),
r#type: Some(dynamo_protocols::types::FunctionType::Function),
function: Some(dynamo_protocols::types::FunctionCallStream {
name: Some(name.to_string()),
arguments: None,
}),
}
};
let make_args = |idx: u32, fragment: &str| {
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: idx,
id: None,
r#type: None,
function: Some(dynamo_protocols::types::FunctionCallStream {
name: None,
arguments: Some(fragment.to_string()),
}),
}
};
// Emission order mimics a hermes-style parser:
// open call 0 → open call 1 → args-frag-0a → args-frag-1a →
// args-frag-0b → args-frag-1b → finish
let deltas = vec![
create_test_delta_with_tool_chunks(
0,
vec![make_name(0, "tc0", "get_weather")],
None,
Some(dynamo_protocols::types::Role::Assistant),
),
create_test_delta_with_tool_chunks(
0,
vec![make_name(1, "tc1", "get_time")],
None,
None,
),
create_test_delta_with_tool_chunks(0, vec![make_args(0, "{\"city\":")], None, None),
create_test_delta_with_tool_chunks(0, vec![make_args(1, "{\"tz\":")], None, None),
create_test_delta_with_tool_chunks(0, vec![make_args(0, "\"Tokyo\"}")], None, None),
create_test_delta_with_tool_chunks(
0,
vec![make_args(1, "\"JST\"}")],
Some(dynamo_protocols::types::FinishReason::ToolCalls),
None,
),
];
let stream = Box::pin(stream::iter(deltas));
let response = DeltaAggregator::apply(stream, ParsingOptions::default())
.await
.expect("aggregation should succeed");
assert_eq!(response.inner.choices.len(), 1);
let tool_calls = response.inner.choices[0]
.message
.tool_calls
.as_ref()
.expect("tool_calls should be Some");
assert_eq!(tool_calls.len(), 2, "must produce both parallel tool calls");
// BTreeMap iteration is index-ordered, so [0] is tc0, [1] is tc1.
assert_eq!(tool_calls[0].id, "tc0");
assert_eq!(tool_calls[0].function.name, "get_weather");
assert_eq!(tool_calls[0].function.arguments, "{\"city\":\"Tokyo\"}");
assert_eq!(tool_calls[1].id, "tc1");
assert_eq!(tool_calls[1].function.name, "get_time");
assert_eq!(tool_calls[1].function.arguments, "{\"tz\":\"JST\"}");
}
/// When parallel_tool_calls == false, the aggregator limits the
/// response to the first tool call, even if the model emitted multiple calls.
#[tokio::test]
async fn test_parallel_tool_calls_false_caps_to_first_call() {
let make_name = |idx: u32, id: &str, name: &str| {
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: idx,
id: Some(id.to_string()),
r#type: Some(dynamo_protocols::types::FunctionType::Function),
function: Some(dynamo_protocols::types::FunctionCallStream {
name: Some(name.to_string()),
arguments: None,
}),
}
};
let make_args = |idx: u32, fragment: &str| {
dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: idx,
id: None,
r#type: None,
function: Some(dynamo_protocols::types::FunctionCallStream {
name: None,
arguments: Some(fragment.to_string()),
}),
}
};
let deltas = vec![
create_test_delta_with_tool_chunks(
0,
vec![make_name(0, "tc0", "get_weather")],
None,
Some(dynamo_protocols::types::Role::Assistant),
),
create_test_delta_with_tool_chunks(
0,
vec![make_name(1, "tc1", "get_time")],
None,
None,
),
create_test_delta_with_tool_chunks(
0,
vec![make_args(0, "{\"city\":\"Tokyo\"}")],
None,
None,
),
create_test_delta_with_tool_chunks(
0,
vec![make_args(1, "{\"tz\":\"JST\"}")],
Some(dynamo_protocols::types::FinishReason::ToolCalls),
None,
),
];
let stream = Box::pin(stream::iter(deltas));
let response = DeltaAggregator::apply(
stream,
ParsingOptions::default().with_parallel_tool_calls(Some(false)),
)
.await
.expect("aggregation should succeed");
assert_eq!(response.inner.choices.len(), 1);
let tool_calls = response.inner.choices[0]
.message
.tool_calls
.as_ref()
.expect("tool_calls should be Some");
assert_eq!(
tool_calls.len(),
1,
"parallel_tool_calls=false must cap to a single tool call"
);
// The first-emitted call (index 0) is the one retained.
assert_eq!(tool_calls[0].id, "tc0");
assert_eq!(tool_calls[0].function.name, "get_weather");
}
/// When fragment-only chunks arrive but no id/name ever establishes the
/// call opener (producer bug), `finalize_merged_tool_chunk` drops the
/// chunk with a warn! log instead of emitting a malformed tool call.
/// This test just pins the "no panic, no phantom tool call" half — the
/// warn! is observable via tracing subscriber in prod, not asserted here.
#[tokio::test]
async fn test_fragment_only_chunks_without_opener_drop_cleanly() {
let args_only = dynamo_protocols::types::ChatCompletionMessageToolCallChunk {
index: 0,
id: None,
r#type: None,
function: Some(dynamo_protocols::types::FunctionCallStream {
name: None,
arguments: Some("{\"orphaned\":true}".to_string()),
}),
};
let deltas = vec![create_test_delta_with_tool_chunks(
0,
vec![args_only],
Some(dynamo_protocols::types::FinishReason::Stop),
Some(dynamo_protocols::types::Role::Assistant),
)];
let stream = Box::pin(stream::iter(deltas));
let response = DeltaAggregator::apply(stream, ParsingOptions::default())
.await
.expect("aggregation should succeed even with dropped chunk");
// Finalization only assigns `tool_calls` when the finalized vec is
// non-empty, so the strict post-condition here is `None`. Tight
// assertion catches a regression that flips to `Some(vec![])`.
assert!(
response.inner.choices[0].message.tool_calls.is_none(),
"orphaned fragment must not produce a tool call (got {:?})",
response.inner.choices[0].message.tool_calls,
);
}
#[tokio::test]
async fn test_empty_stream() {
// Create an empty stream
let stream: DataStream<Annotated<NvCreateChatCompletionStreamResponse>> =
Box::pin(stream::empty());
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let response = result.unwrap();
// Verify that the response is empty and has default values
assert_eq!(response.inner.id, "");
assert_eq!(response.inner.model, "");
assert_eq!(response.inner.created, 0);
assert!(response.inner.usage.is_none());
assert!(response.inner.system_fingerprint.is_none());
assert_eq!(response.inner.choices.len(), 0);
assert!(response.inner.service_tier.is_none());
}
#[tokio::test]
async fn test_single_delta() {
// Create a sample delta
let annotated_delta = create_test_delta(
0,
"Hello,",
Some(dynamo_protocols::types::Role::User),
None,
None,
None,
);
// Create a stream
let stream = Box::pin(stream::iter(vec![annotated_delta]));
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let response = result.unwrap();
// Verify the response fields
assert_eq!(response.inner.id, "test_id");
assert_eq!(response.inner.model, "meta/llama-3.1-8b-instruct");
assert_eq!(response.inner.created, 1234567890);
assert!(response.inner.usage.is_none());
assert!(response.inner.system_fingerprint.is_none());
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
assert_eq!(choice.index, 0);
assert_eq!(
choice.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Hello,".to_string())
);
assert!(choice.finish_reason.is_none());
assert_eq!(choice.message.role, dynamo_protocols::types::Role::User);
assert!(response.inner.service_tier.is_none());
}
#[tokio::test]
async fn test_multiple_deltas_same_choice() {
// Create multiple deltas with the same choice index
// One will have a MessageRole and no FinishReason,
// the other will have a FinishReason and no MessageRole
let annotated_delta1 = create_test_delta(
0,
"Hello,",
Some(dynamo_protocols::types::Role::User),
None,
Some(-0.1),
None,
);
let annotated_delta2 = create_test_delta(
0,
" world!",
None,
Some(dynamo_protocols::types::FinishReason::Stop),
Some(-0.2),
None,
);
// Create a stream
let annotated_deltas = vec![annotated_delta1, annotated_delta2];
let stream = Box::pin(stream::iter(annotated_deltas));
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let response = result.unwrap();
// Verify the response fields
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
assert_eq!(choice.index, 0);
assert_eq!(
choice.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Hello, world!".to_string())
);
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
assert_eq!(choice.message.role, dynamo_protocols::types::Role::User);
assert_eq!(
choice
.logprobs
.as_ref()
.unwrap()
.content
.as_ref()
.unwrap()
.len(),
2
);
assert_eq!(
choice.logprobs.as_ref().unwrap().content.as_ref().unwrap()[0].logprob,
-0.1
);
assert_eq!(
choice.logprobs.as_ref().unwrap().content.as_ref().unwrap()[1].logprob,
-0.2
);
}
#[tokio::test]
async fn test_missing_stream_role_defaults_to_assistant_without_panic() {
let deltas = vec![
create_test_delta(0, "Hello,", None, None, None, None),
create_test_delta(
0,
" world!",
None,
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
),
];
let stream = Box::pin(stream::iter(deltas));
let response = DeltaAggregator::apply(stream, ParsingOptions::default())
.await
.expect("aggregation should not panic or error when stream role is missing");
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
assert_eq!(
choice.message.role,
dynamo_protocols::types::Role::Assistant
);
assert_eq!(
choice.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Hello, world!".to_string())
);
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
#[tokio::test]
async fn test_preserves_intermediate_whitespace_chunks() {
// This validates behavior before/after removing trim_end():
// If a whitespace-only chunk (" ") arrives between tokens, it must be preserved.
// With trim_end(), that chunk was dropped, yielding "Helloworld" instead of "Hello world".
let annotated_delta1 = create_test_delta(
0,
"Hello",
Some(dynamo_protocols::types::Role::User),
None,
None,
None,
);
// A whitespace-only chunk
let annotated_delta2 = create_test_delta(0, " ", None, None, None, None);
let annotated_delta3 = create_test_delta(
0,
"world",
None,
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![
annotated_delta1,
annotated_delta2,
annotated_delta3,
]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
assert_eq!(choice.index, 0);
assert_eq!(
choice.message.content.as_ref(),
Some(&ChatCompletionMessageContent::Text(
"Hello world".to_string()
))
);
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
assert_eq!(choice.message.role, dynamo_protocols::types::Role::User);
}
#[tokio::test]
async fn test_multiple_deltas_merge_nvext_fields() {
let mut annotated_delta1 = create_test_delta(
0,
"Hello",
Some(dynamo_protocols::types::Role::Assistant),
None,
None,
None,
);
annotated_delta1.data.as_mut().expect("delta data").nvext =
Some(serde_json::json!({ "engine_data": { "trace_id": "abc" } }));
let mut annotated_delta2 = create_test_delta(
0,
" world",
None,
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
annotated_delta2.data.as_mut().expect("delta data").nvext =
Some(serde_json::json!({ "stop_reason": 128001 }));
let mut metadata = annotated_delta2.clone();
let metadata_data = metadata.data.as_mut().expect("metadata data");
metadata_data.inner.choices.clear();
metadata_data.nvext = Some(serde_json::json!({
"engine_data": {
"prompt_token_ids": [1, 2],
"completion_token_ids": [10, 11],
"completion_logprobs": [-0.1, -0.2],
}
}));
let mut usage = metadata.clone();
let usage_data = usage.data.as_mut().expect("usage data");
usage_data.nvext = None;
usage_data.inner.usage = Some(dynamo_protocols::types::CompletionUsage {
prompt_tokens: 2,
completion_tokens: 2,
total_tokens: 4,
..Default::default()
});
let stream = Box::pin(stream::iter(vec![
annotated_delta1,
annotated_delta2,
metadata,
usage,
]));
let response = DeltaAggregator::apply(stream, ParsingOptions::default())
.await
.expect("aggregate stream");
assert_eq!(
response.nvext,
Some(serde_json::json!({
"engine_data": {
"prompt_token_ids": [1, 2],
"completion_token_ids": [10, 11],
"completion_logprobs": [-0.1, -0.2],
},
"stop_reason": 128001,
}))
);
assert_eq!(response.inner.choices.len(), 1);
assert_eq!(
response.inner.usage.expect("aggregated usage").total_tokens,
4
);
}
#[allow(deprecated)]
#[tokio::test]
async fn test_multiple_choices() {
// Create a delta with multiple choices
// ALLOW: function_call is deprecated
let data = NvCreateChatCompletionStreamResponse {
inner: dynamo_protocols::types::CreateChatCompletionStreamResponse {
id: "test_id".to_string(),
model: "test_model".to_string(),
created: 1234567890,
service_tier: None,
usage: None,
system_fingerprint: None,
choices: vec![
dynamo_protocols::types::ChatChoiceStream {
index: 0,
delta: dynamo_protocols::types::ChatCompletionStreamResponseDelta {
role: Some(dynamo_protocols::types::Role::Assistant),
content: Some(ChatCompletionMessageContent::Text(
"Choice 0".to_string(),
)),
function_call: None,
tool_calls: None,
refusal: None,
reasoning_content: None,
},
finish_reason: Some(dynamo_protocols::types::FinishReason::Stop),
logprobs: None,
},
dynamo_protocols::types::ChatChoiceStream {
index: 1,
delta: dynamo_protocols::types::ChatCompletionStreamResponseDelta {
role: Some(dynamo_protocols::types::Role::Assistant),
content: Some(ChatCompletionMessageContent::Text(
"Choice 1".to_string(),
)),
function_call: None,
tool_calls: None,
refusal: None,
reasoning_content: None,
},
finish_reason: Some(dynamo_protocols::types::FinishReason::Stop),
logprobs: None,
},
],
object: "chat.completion".to_string(),
},
nvext: None,
llm_metrics: None,
};
// Wrap it in Annotated and create a stream
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let mut response = result.unwrap();
// Verify the response fields
assert_eq!(response.inner.choices.len(), 2);
response.inner.choices.sort_by_key(|a| a.index); // Ensure the choices are ordered
let choice0 = &response.inner.choices[0];
assert_eq!(choice0.index, 0);
assert_eq!(
choice0.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Choice 0".to_string())
);
assert_eq!(
choice0.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
assert_eq!(
choice0.message.role,
dynamo_protocols::types::Role::Assistant
);
let choice1 = &response.inner.choices[1];
assert_eq!(choice1.index, 1);
assert_eq!(
choice1.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text("Choice 1".to_string())
);
assert_eq!(
choice1.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
assert_eq!(
choice1.message.role,
dynamo_protocols::types::Role::Assistant
);
}
#[tokio::test]
async fn test_tool_calling_finish_reason_override_from_stop() {
// Test that when tool calls are present but finish reason is Stop, it gets overridden to ToolCalls
let tool_call_json =
r#"{"name": "get_weather", "arguments": {"location": "New York", "unit": "celsius"}}"#;
let annotated_delta = create_test_delta(
0,
"I'll check the weather for you.",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop), // Original finish reason is Stop
None,
Some(tool_call_json),
);
let data = annotated_delta.data.unwrap();
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// Verify tool calls are present
assert!(choice.message.tool_calls.is_some());
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
assert_eq!(
tool_calls[0].r#type,
dynamo_protocols::types::FunctionType::Function
);
// Most importantly, verify that finish reason was overridden to ToolCalls despite original being Stop
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
}
#[tokio::test]
async fn test_tool_calling_finish_reason_override_from_length() {
// Test that when tool calls are present but finish reason is Length, it gets overridden to ToolCalls
let tool_call_json = r#"{"name": "search", "arguments": {"query": "rust programming"}}"#;
let annotated_delta = create_test_delta(
0,
"Let me search for that.",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Length), // Original finish reason is Length
None,
Some(tool_call_json),
);
let data = annotated_delta.data.unwrap();
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// Verify tool calls are present
assert!(choice.message.tool_calls.is_some());
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
assert_eq!(
tool_calls[0].r#type,
dynamo_protocols::types::FunctionType::Function
);
// Verify that finish reason was overridden to ToolCalls despite original being Length
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
}
#[tokio::test]
async fn test_tool_calling_finish_reason_override_from_none() {
// Test that when tool calls are present but finish reason is None, it gets set to ToolCalls
let tool_call_json = r#"{"name": "calculate", "arguments": {"expression": "2+2"}}"#;
let annotated_delta = create_test_delta(
0,
"I'll calculate that for you.",
Some(dynamo_protocols::types::Role::Assistant),
None, // Original finish reason is None
None,
Some(tool_call_json),
);
let data = annotated_delta.data.unwrap();
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// Verify tool calls are present
assert!(choice.message.tool_calls.is_some());
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
// Verify that finish reason was set to ToolCalls despite original being None
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
}
#[tokio::test]
async fn test_no_tool_calling_preserves_original_finish_reason() {
// Test that when no tool calls are present, the original finish reason is preserved
let annotated_delta = create_test_delta(
0,
"This is a regular response without tool calls.",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None, // No tool calls
);
let data = annotated_delta.data.unwrap();
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// Verify no tool calls are present
assert!(choice.message.tool_calls.is_none());
// Verify that original finish reason (Stop) is preserved
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
#[tokio::test]
async fn test_empty_tool_calls_preserves_original_finish_reason() {
// Test that when tool calls array is empty, the original finish reason is preserved
// Create a delta with empty tool calls by modifying the create_test_delta output
let mut annotated_delta = create_test_delta(
0,
"Response with empty tool calls array.",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Length),
None,
None,
);
// Manually set empty tool calls array
if let Some(ref mut data) = annotated_delta.data {
data.inner.choices[0].delta.tool_calls = Some(vec![]); // Empty tool calls array
}
let data = annotated_delta.data.unwrap();
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
assert!(result.is_ok());
let response = result.unwrap();
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// Verify tool calls array is empty
assert!(choice.message.tool_calls.is_none());
// Verify that original finish reason (Length) is preserved since tool calls are empty
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Length)
);
}
#[tokio::test]
async fn test_tool_calling_output() {
// Simulate a delta with a tool call in the content
let tool_call_json = r#"{"name": "get_weather", "arguments": {"location": "San Francisco, CA", "unit": "fahrenheit"}}"#;
// Use create_test_delta to generate the annotated delta, then extract the inner delta for the test
let annotated_delta = create_test_delta(
0,
"Hey Dude ! What's the weather in San Francisco in Fahrenheit?",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::ToolCalls),
None,
Some(tool_call_json),
);
let data = annotated_delta.data.unwrap();
// Wrap it in Annotated and create a stream
let annotated_delta = Annotated {
data: Some(data),
id: Some("test_id".to_string()),
event: None,
comment: None,
error: None,
};
let stream = Box::pin(stream::iter(vec![annotated_delta]));
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let response = result.unwrap();
// There should be one choice
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// The tool_calls field should be present and parsed
assert!(choice.message.tool_calls.is_some());
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
let tool_call = &tool_calls[0];
assert_eq!(tool_call.function.name, "get_weather");
// The arguments should be a JSON string containing the expected keys
let args: serde_json::Value = serde_json::from_str(&tool_call.function.arguments).unwrap();
assert_eq!(args["location"], "San Francisco, CA");
assert_eq!(args["unit"], "fahrenheit");
assert_eq!(
choice.message.content.as_ref().unwrap(),
&ChatCompletionMessageContent::Text(
"Hey Dude ! What's the weather in San Francisco in Fahrenheit?".to_string()
)
);
// The finish_reason should be ToolCalls
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
assert_eq!(
choice.message.role,
dynamo_protocols::types::Role::Assistant
);
}
#[tokio::test]
async fn test_tool_calling_finish_reason_override_from_stop_alternative() {
// Test that when tool calls are present but finish reason is Stop, it gets overridden to ToolCalls
let tool_call_json =
r#"{"name": "get_weather", "arguments": {"location": "New York", "unit": "celsius"}}"#;
let annotated_delta = create_test_delta(
0,
"Getting weather for New York",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop), // This should be overridden
None,
Some(tool_call_json),
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
// Call DeltaAggregator::apply
let result = DeltaAggregator::apply(stream, ParsingOptions::default()).await;
// Check the result
assert!(result.is_ok());
let response = result.unwrap();
// There should be one choice
assert_eq!(response.inner.choices.len(), 1);
let choice = &response.inner.choices[0];
// The finish_reason should be ToolCalls, not Stop, because tool calls are present
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
// Verify tool calls are present
assert!(choice.message.tool_calls.is_some());
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
assert_eq!(tool_calls[0].function.name, "get_weather");
}
#[tokio::test]
async fn test_parses_aggregated_tool_call_text_into_tool_calls() {
let annotated_delta = create_test_delta(
0,
"<tool_call>\n{\"name\":\"get_weather\",\"arguments\":{\"location\":\"SF\"}}\n</tool_call>",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(
stream,
ParsingOptions::new(Some("hermes".to_string()), None),
)
.await;
assert!(result.is_ok());
let response = result.unwrap();
let choice = &response.inner.choices[0];
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
assert_eq!(choice.message.content, None);
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(tool_calls.len(), 1);
assert_eq!(
tool_calls[0].r#type,
dynamo_protocols::types::FunctionType::Function
);
assert_eq!(tool_calls[0].function.name, "get_weather");
assert_eq!(tool_calls[0].function.arguments, "{\"location\":\"SF\"}");
}
#[tokio::test]
async fn test_disabled_tool_parsing_preserves_structured_content_with_name() {
let json = r#"{"name":"Science Fair","date":"Friday","participants":["Alice","Bob"]}"#;
let annotated_delta = create_test_delta(
0,
json,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let response = DeltaAggregator::apply(
stream,
ParsingOptions::new(Some("hermes".to_string()), None)
.with_tool_call_parsing_enabled(false),
)
.await
.expect("aggregation should preserve assistant content");
let choice = &response.inner.choices[0];
assert_eq!(
choice.message.content,
Some(ChatCompletionMessageContent::Text(json.to_string()))
);
assert!(choice.message.tool_calls.is_none());
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
#[tokio::test]
async fn test_preserves_non_tool_content_when_parsing_aggregated_tool_calls() {
let annotated_delta = create_test_delta(
0,
"hello\n<tool_call>\n{\"name\":\"get_weather\",\"arguments\":{\"location\":\"SF\"}}\n</tool_call>",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(
stream,
ParsingOptions::new(Some("hermes".to_string()), None),
)
.await;
assert!(result.is_ok());
let response = result.unwrap();
let choice = &response.inner.choices[0];
assert_eq!(
choice.message.content,
Some(ChatCompletionMessageContent::Text("hello".to_string()))
);
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
assert_eq!(
choice.message.tool_calls.as_ref().unwrap()[0].r#type,
dynamo_protocols::types::FunctionType::Function
);
}
#[tokio::test]
async fn test_disabled_harmony_aggregate_drops_internal_analysis() {
let annotated_delta = create_test_delta(
0,
r#"<|channel|>analysis<|message|>Need current weather.<|end|><|start|>assistant<|channel|>commentary to=functions.get_current_weather <|constrain|>json<|message|>{"location":"Hidden City"}"#,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(
stream,
ParsingOptions::new(Some("harmony".to_string()), None)
.with_tool_call_parsing_enabled(false),
)
.await;
assert!(result.is_ok());
let response = result.unwrap();
let choice = &response.inner.choices[0];
assert_eq!(choice.message.content, None);
assert!(choice.message.tool_calls.is_none());
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
#[tokio::test]
async fn test_disabled_harmony_aggregate_suppresses_parsed_tool_call() {
let annotated_delta = create_test_delta(
0,
r#"<|channel|>commentary to=functions.get_weather <|constrain|>json<|message|>{"location":"Paris"}<|call|>"#,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::ToolCalls),
None,
None,
);
let response = DeltaAggregator::apply(
Box::pin(stream::iter(vec![annotated_delta])),
ParsingOptions::new(Some("harmony".to_string()), None)
.with_tool_call_parsing_enabled(false),
)
.await
.expect("Harmony decoding should succeed");
let choice = &response.inner.choices[0];
assert!(choice.message.tool_calls.is_none());
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
#[tokio::test]
async fn test_harmony_aggregate_plain_text_without_markers_stays_plain_text() {
let annotated_delta = create_test_delta(
0,
"plain response",
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![annotated_delta]));
let result = DeltaAggregator::apply(
stream,
ParsingOptions::new(Some("harmony".to_string()), None),
)
.await;
assert!(result.is_ok());
let response = result.unwrap();
let choice = &response.inner.choices[0];
assert_eq!(
choice.message.content,
Some(ChatCompletionMessageContent::Text(
"plain response".to_string()
))
);
assert!(choice.message.tool_calls.is_none());
}
#[tokio::test]
async fn test_disabled_kimi_k3_aggregate_decodes_tool_free_response() {
let raw = concat!(
"<|open|>response<|sep|>",
"323",
"<|close|>response<|sep|>",
"<|close|>message<|sep|>",
"<|end_of_msg|>"
);
for parser in ["kimi_k3", "kimi-k3"] {
let annotated_delta = create_test_delta(
0,
raw,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let response = DeltaAggregator::apply(
Box::pin(stream::iter(vec![annotated_delta])),
ParsingOptions::new(Some(parser.to_string()), Some("kimi_k3".to_string()))
.with_tool_call_parsing_enabled(false),
)
.await
.expect("Kimi K3 response decoding should succeed");
let choice = &response.inner.choices[0];
assert_eq!(
choice.message.content,
Some(ChatCompletionMessageContent::Text("323".to_string())),
"parser alias {parser} must strip K3 XTML wrappers"
);
assert!(choice.message.tool_calls.is_none());
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Stop)
);
}
}
#[test]
fn test_reasoning_only_response_serializes_content_key_as_null() {
// DGH-651: when a response carries reasoning_content but no text or
// content parts, the `content` key must still be present in the
// serialized JSON (as `null`) so clients can rely on it alongside
// `reasoning_content`. Fixed by removing skip_serializing_if from
// ChatCompletionResponseMessage.content.
let delta = DeltaChoice {
index: 0,
text: String::new(),
role: Some(dynamo_protocols::types::Role::Assistant),
finish_reason: Some(dynamo_protocols::types::FinishReason::Stop),
logprobs: None,
tool_call_chunks: BTreeMap::new(),
tool_calls: None,
reasoning_content: Some("Analyzing the question.".to_string()),
content_parts: vec![],
};
let choice: dynamo_protocols::types::ChatChoice = delta.into();
assert!(choice.message.content.is_none());
assert_eq!(
choice.message.reasoning_content.as_deref(),
Some("Analyzing the question.")
);
let json = serde_json::to_value(&choice.message).unwrap();
assert_eq!(
json.get("content"),
Some(&serde_json::Value::Null),
"content key must be serialized as null when absent"
);
assert!(json.get("reasoning_content").is_some());
}
// --- glm47 truncation recovery tests ---
//
// Reproduces the drop confirmed on dynamo-parsers 5.1.3:
// in: <tool_call>get_weather<arg_key>city</arg_key><arg_value>Bos (finish_reason=length)
// out: finish=length tool_calls=None content=""
// The parser sees an incomplete XML block and returns no tool call and no
// content, so the client gets an empty turn. The recovery path appends the
// raw partial markup as content so the caller can at least surface it.
#[tokio::test]
async fn test_glm47_single_truncated_call_recovered_as_content() {
let text = "<tool_call>get_weather<arg_key>city</arg_key><arg_value>Bos";
let delta = create_test_delta(
0,
text,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Length),
None,
None,
);
let stream = Box::pin(stream::iter(vec![delta]));
let result =
DeltaAggregator::apply(stream, ParsingOptions::new(Some("glm47".to_string()), None))
.await
.unwrap();
let choice = &result.inner.choices[0];
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::Length)
);
assert!(
choice.message.tool_calls.is_none(),
"incomplete call must not produce a structured tool_call"
);
assert_eq!(
choice.message.content,
Some(ChatCompletionMessageContent::Text(text.to_string())),
"truncated markup must be returned as raw content"
);
}
#[tokio::test]
async fn test_glm47_complete_call_then_truncated_second_recovered() {
// First call complete, second truncated mid-argument.
let text = "<tool_call>get_weather<arg_key>city</arg_key><arg_value>Boston</arg_value></tool_call><tool_call>get_time<arg_key>tz</arg_key><arg_value>US/E";
let delta = create_test_delta(
0,
text,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Length),
None,
None,
);
let stream = Box::pin(stream::iter(vec![delta]));
let result =
DeltaAggregator::apply(stream, ParsingOptions::new(Some("glm47".to_string()), None))
.await
.unwrap();
let choice = &result.inner.choices[0];
// First complete call is parsed into tool_calls.
let tool_calls = choice.message.tool_calls.as_ref().unwrap();
assert_eq!(
tool_calls.len(),
1,
"first complete call must be structured"
);
assert_eq!(tool_calls[0].function.name, "get_weather");
// Truncated second block is in content, not dropped.
let content = choice
.message
.content
.as_ref()
.expect("truncated second call must be in content");
let ChatCompletionMessageContent::Text(t) = content else {
panic!("content must be Text")
};
assert!(
t.contains("<tool_call>get_time"),
"truncated second call markup must be in content"
);
assert!(!t.contains("</tool_call>"), "must not contain closing tag");
}
#[tokio::test]
async fn test_glm47_complete_call_stop_no_recovery() {
// Complete call with finish_reason=Stop: no recovery needed.
let text = "<tool_call>get_weather<arg_key>city</arg_key><arg_value>Boston</arg_value></tool_call>";
let delta = create_test_delta(
0,
text,
Some(dynamo_protocols::types::Role::Assistant),
Some(dynamo_protocols::types::FinishReason::Stop),
None,
None,
);
let stream = Box::pin(stream::iter(vec![delta]));
let result =
DeltaAggregator::apply(stream, ParsingOptions::new(Some("glm47".to_string()), None))
.await
.unwrap();
let choice = &result.inner.choices[0];
assert_eq!(
choice.finish_reason,
Some(dynamo_protocols::types::FinishReason::ToolCalls)
);
assert!(choice.message.tool_calls.is_some());
assert!(
choice.message.content.is_none(),
"no content for a clean complete call"
);
}
#[tokio::test]
async fn preserves_typed_error_after_partial_output() {
use dynamo_runtime::error::{BackendError, ErrorType};
let partial = create_test_delta(
0,
"partial",
Some(dynamo_protocols::types::Role::Assistant),
None,
None,
None,
);
let error = DynamoError::builder()
.error_type(ErrorType::Backend(BackendError::InvalidArgument))
.message("invalid sampling parameter")
.build();
let stream = stream::iter(vec![
partial,
Annotated {
data: None,
id: None,
event: Some("error".to_string()),
comment: None,
error: Some(error),
},
]);
let error = DeltaAggregator::apply(stream, ParsingOptions::default())
.await
.unwrap_err();
assert_eq!(
error.error_type(),
ErrorType::Backend(BackendError::InvalidArgument)
);
assert_eq!(error.message(), "invalid sampling parameter");
}
}