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
|
- import fs from 'fs';
- import path from 'path';
- import { loadFromJavaScriptFile } from '../src/assertions/utils';
- import cliState from '../src/cliState';
- import { importModule } from '../src/esm';
- import {
- getAndCheckProvider,
- getGradingProvider,
- matchesClassification,
- matchesModeration,
- matchesSimilarity,
- matchesLlmRubric,
- matchesFactuality,
- matchesClosedQa,
- matchesAnswerRelevance,
- matchesContextRelevance,
- matchesContextRecall,
- matchesContextFaithfulness,
- renderLlmRubricPrompt,
- matchesGEval,
- } from '../src/matchers';
- import { ANSWER_RELEVANCY_GENERATE } from '../src/prompts';
- import { HuggingfaceTextClassificationProvider } from '../src/providers/huggingface';
- import { OpenAiChatCompletionProvider } from '../src/providers/openai/chat';
- import { DefaultEmbeddingProvider, DefaultGradingProvider } from '../src/providers/openai/defaults';
- import { OpenAiEmbeddingProvider } from '../src/providers/openai/embedding';
- import { OpenAiModerationProvider } from '../src/providers/openai/moderation';
- import { ReplicateModerationProvider } from '../src/providers/replicate';
- import { LLAMA_GUARD_REPLICATE_PROVIDER } from '../src/redteam/constants';
- import * as remoteGrading from '../src/remoteGrading';
- import type {
- ApiProvider,
- Assertion,
- GradingConfig,
- ProviderClassificationResponse,
- ProviderResponse,
- ProviderTypeMap,
- } from '../src/types';
- import { TestGrader } from './util/utils';
- jest.mock('../src/database', () => ({
- getDb: jest.fn().mockImplementation(() => {
- throw new TypeError('The "original" argument must be of type function. Received undefined');
- }),
- }));
- jest.mock('../src/esm');
- jest.mock('../src/cliState');
- jest.mock('../src/remoteGrading', () => ({
- doRemoteGrading: jest.fn(),
- }));
- jest.mock('../src/redteam/remoteGeneration', () => ({
- shouldGenerateRemote: jest.fn().mockReturnValue(true),
- }));
- jest.mock('proxy-agent', () => ({
- ProxyAgent: jest.fn().mockImplementation(() => ({})),
- }));
- jest.mock('glob', () => ({
- globSync: jest.fn(),
- }));
- jest.mock('better-sqlite3');
- jest.mock('fs', () => ({
- ...jest.requireActual('fs'),
- readFileSync: jest.fn(),
- existsSync: jest.fn(),
- }));
- jest.mock('../src/esm', () => ({
- importModule: jest.fn(),
- }));
- const Grader = new TestGrader();
- describe('matchesSimilarity', () => {
- beforeEach(() => {
- jest.spyOn(DefaultEmbeddingProvider, 'callEmbeddingApi').mockImplementation((text) => {
- if (text === 'Expected output' || text === 'Sample output') {
- return Promise.resolve({
- embedding: [1, 0, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- } else if (text === 'Different output') {
- return Promise.resolve({
- embedding: [0, 1, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- }
- return Promise.reject(new Error('Unexpected input'));
- });
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should pass when similarity is above the threshold', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const threshold = 0.5;
- await expect(matchesSimilarity(expected, output, threshold)).resolves.toEqual({
- pass: true,
- reason: 'Similarity 1.00 is greater than threshold 0.5',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when similarity is below the threshold', async () => {
- const expected = 'Expected output';
- const output = 'Different output';
- const threshold = 0.9;
- await expect(matchesSimilarity(expected, output, threshold)).resolves.toEqual({
- pass: false,
- reason: 'Similarity 0.00 is less than threshold 0.9',
- score: 0,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when inverted similarity is above the threshold', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const threshold = 0.5;
- await expect(
- matchesSimilarity(expected, output, threshold, true /* invert */),
- ).resolves.toEqual({
- pass: false,
- reason: 'Similarity 1.00 is greater than threshold 0.5',
- score: 0,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should pass when inverted similarity is below the threshold', async () => {
- const expected = 'Expected output';
- const output = 'Different output';
- const threshold = 0.9;
- await expect(
- matchesSimilarity(expected, output, threshold, true /* invert */),
- ).resolves.toEqual({
- pass: true,
- reason: 'Similarity 0.00 is less than threshold 0.9',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should use the overridden similarity grading config', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const threshold = 0.5;
- const grading: GradingConfig = {
- provider: {
- id: 'openai:embedding:text-embedding-ada-9999999',
- config: {
- apiKey: 'abc123',
- temperature: 3.1415926,
- },
- },
- };
- const mockCallApi = jest.spyOn(OpenAiEmbeddingProvider.prototype, 'callEmbeddingApi');
- mockCallApi.mockImplementation(function (this: OpenAiChatCompletionProvider) {
- expect(this.config.temperature).toBe(3.1415926);
- expect(this.getApiKey()).toBe('abc123');
- return Promise.resolve({
- embedding: [1, 0, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- });
- await expect(matchesSimilarity(expected, output, threshold, false, grading)).resolves.toEqual({
- pass: true,
- reason: 'Similarity 1.00 is greater than threshold 0.5',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- expect(mockCallApi).toHaveBeenCalledWith('Expected output');
- mockCallApi.mockRestore();
- });
- it('should throw an error when API call fails', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const threshold = 0.5;
- const grading: GradingConfig = {
- provider: {
- id: 'openai:embedding:text-embedding-ada-9999999',
- config: {
- apiKey: 'abc123',
- temperature: 3.1415926,
- },
- },
- };
- jest
- .spyOn(OpenAiEmbeddingProvider.prototype, 'callEmbeddingApi')
- .mockRejectedValueOnce(new Error('API call failed'));
- await expect(async () => {
- await matchesSimilarity(expected, output, threshold, false, grading);
- }).rejects.toThrow('API call failed');
- });
- it('should use Nunjucks templating when PROMPTFOO_DISABLE_TEMPLATING is set', async () => {
- process.env.PROMPTFOO_DISABLE_TEMPLATING = 'true';
- const expected = 'Expected {{ var }}';
- const output = 'Output {{ var }}';
- const threshold = 0.8;
- const grading: GradingConfig = {
- provider: DefaultEmbeddingProvider,
- };
- jest.spyOn(DefaultEmbeddingProvider, 'callEmbeddingApi').mockResolvedValue({
- embedding: [1, 2, 3],
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await matchesSimilarity(expected, output, threshold, false, grading);
- expect(DefaultEmbeddingProvider.callEmbeddingApi).toHaveBeenCalledWith('Expected {{ var }}');
- expect(DefaultEmbeddingProvider.callEmbeddingApi).toHaveBeenCalledWith('Output {{ var }}');
- process.env.PROMPTFOO_DISABLE_TEMPLATING = undefined;
- });
- });
- describe('matchesLlmRubric', () => {
- const mockFilePath = path.join('path', 'to', 'external', 'rubric.txt');
- const mockFileContent = 'This is an external rubric prompt';
- beforeEach(() => {
- jest.clearAllMocks();
- jest.mocked(fs.existsSync).mockReturnValue(true);
- jest.mocked(fs.readFileSync).mockReturnValue(mockFileContent);
- });
- it('should pass when the grading provider returns a passing result', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: Grader,
- };
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- pass: true,
- reason: 'Test grading output',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should handle when provider returns direct object output instead of string', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: { pass: true, score: 0.85, reason: 'Direct object output' },
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- pass: true,
- score: 0.85,
- reason: 'Direct object output',
- assertion: undefined,
- tokensUsed: {
- total: 10,
- prompt: 5,
- completion: 5,
- cached: 0,
- completionDetails: {
- reasoning: 0,
- acceptedPrediction: 0,
- rejectedPrediction: 0,
- },
- },
- });
- });
- it('should fail when output is neither string nor object', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: 42, // Numeric output
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- assertion: undefined,
- pass: false,
- score: 0,
- reason: 'llm-rubric produced malformed response - output must be string or object',
- tokensUsed: {
- total: 10,
- prompt: 5,
- completion: 5,
- cached: 0,
- completionDetails: undefined,
- },
- });
- });
- it('should handle string output with invalid JSON format', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: '{ "pass": true, "reason": "Invalid JSON missing closing brace',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- assertion: undefined,
- pass: false,
- score: 0,
- reason: expect.stringContaining('Could not extract JSON from llm-rubric response'),
- tokensUsed: {
- total: 10,
- prompt: 5,
- completion: 5,
- cached: 0,
- completionDetails: undefined,
- },
- });
- });
- it('should fail when string output contains no JSON objects', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: 'This is a valid text response but contains no JSON objects',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- assertion: undefined,
- pass: false,
- score: 0,
- reason: 'Could not extract JSON from llm-rubric response',
- tokensUsed: {
- total: 10,
- prompt: 5,
- completion: 5,
- cached: 0,
- completionDetails: undefined,
- },
- });
- });
- it('should fail when the grading provider returns a failing result', async () => {
- const expected = 'Expected output';
- const output = 'Different output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: Grader,
- };
- jest.spyOn(Grader, 'callApi').mockResolvedValueOnce({
- output: JSON.stringify({ pass: false, reason: 'Grading failed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- pass: false,
- reason: 'Grading failed',
- score: 0,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should throw error when throwOnError is true and provider returns an error', async () => {
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- error: 'Provider error',
- output: null,
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- // With throwOnError: true - should throw
- await expect(
- matchesLlmRubric(rubric, llmOutput, grading, {}, null, { throwOnError: true }),
- ).rejects.toThrow('Provider error');
- });
- it('should throw error when throwOnError is true and provider returns no result', async () => {
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- error: null,
- output: null,
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- // With throwOnError: true - should throw
- await expect(
- matchesLlmRubric(rubric, llmOutput, grading, {}, null, { throwOnError: true }),
- ).rejects.toThrow('No output');
- });
- it('should use the overridden llm rubric grading config', async () => {
- const expected = 'Expected output';
- const output = 'Sample output';
- const options: GradingConfig = {
- rubricPrompt: 'Grading prompt',
- provider: {
- id: 'openai:gpt-4o-mini',
- config: {
- apiKey: 'abc123',
- temperature: 3.1415926,
- },
- },
- };
- const mockCallApi = jest.spyOn(OpenAiChatCompletionProvider.prototype, 'callApi');
- mockCallApi.mockImplementation(function (this: OpenAiChatCompletionProvider) {
- expect(this.config.temperature).toBe(3.1415926);
- expect(this.getApiKey()).toBe('abc123');
- return Promise.resolve({
- output: JSON.stringify({ pass: true, reason: 'Grading passed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- await expect(matchesLlmRubric(expected, output, options)).resolves.toEqual({
- reason: 'Grading passed',
- pass: true,
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- expect(mockCallApi).toHaveBeenCalledWith('Grading prompt');
- mockCallApi.mockRestore();
- });
- it('should use provided score threshold if llm does not return pass', async () => {
- const rubricPrompt = 'Rubric prompt';
- const llmOutput = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.5,
- };
- const lowScoreResponse = { score: 0.25, reason: 'Low score' };
- const lowScoreProvider: ApiProvider = {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(lowScoreResponse),
- }),
- };
- await expect(
- matchesLlmRubric(
- rubricPrompt,
- llmOutput,
- { rubricPrompt, provider: lowScoreProvider },
- {},
- assertion,
- ),
- ).resolves.toEqual(expect.objectContaining({ assertion, pass: false, ...lowScoreResponse }));
- const highScoreResponse = { score: 0.75, reason: 'High score' };
- const highScoreProvider: ApiProvider = {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(highScoreResponse),
- }),
- };
- await expect(
- matchesLlmRubric(
- rubricPrompt,
- llmOutput,
- { rubricPrompt, provider: highScoreProvider },
- {},
- assertion,
- ),
- ).resolves.toEqual(expect.objectContaining({ assertion, pass: true, ...highScoreResponse }));
- });
- it('should ignore the score threshold if llm returns pass', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.1,
- };
- const lowScoreResult = { score: 0.25, reason: 'Low score but pass', pass: true };
- const lowScoreOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(lowScoreResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, lowScoreOptions, {}, assertion),
- ).resolves.toEqual(expect.objectContaining({ assertion, ...lowScoreResult }));
- });
- it('should respect both threshold and explicit pass/fail when both are present', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.8,
- };
- // Case 1: Pass is true but score is below threshold
- const failingResult = { score: 0.7, reason: 'Score below threshold', pass: true };
- const failingOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(failingResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, failingOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 0.7,
- pass: false,
- reason: 'Score below threshold',
- }),
- );
- // Case 2: Pass is false but score is above threshold
- const passingResult = {
- score: 0.9,
- reason: 'Score above threshold but explicit fail',
- pass: false,
- };
- const passingOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(passingResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, passingOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 0.9,
- pass: false,
- reason: 'Score above threshold but explicit fail',
- }),
- );
- });
- it('should handle edge cases around threshold value', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.8,
- };
- // Exactly at threshold should pass
- const exactThresholdResult = { score: 0.8, reason: 'Exactly at threshold' };
- const exactOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(exactThresholdResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, exactOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 0.8,
- pass: true,
- reason: 'Exactly at threshold',
- }),
- );
- // Just below threshold should fail
- const justBelowResult = { score: 0.799, reason: 'Just below threshold' };
- const belowOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(justBelowResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, belowOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 0.799,
- pass: false,
- reason: 'Just below threshold',
- }),
- );
- });
- it('should handle missing or invalid scores when threshold is present', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.8,
- };
- // Missing score should default to pass value
- const missingScoreResult = { pass: true, reason: 'No score provided' };
- const missingScoreOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(missingScoreResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, missingScoreOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 1.0,
- pass: true,
- reason: 'No score provided',
- }),
- );
- // Invalid score type should be handled gracefully
- const invalidScoreResult = { score: 'high', reason: 'Invalid score type', pass: true };
- const invalidScoreOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(invalidScoreResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, invalidScoreOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 1.0,
- pass: true,
- reason: 'Invalid score type',
- }),
- );
- });
- it('should handle string scores', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.8,
- };
- const stringScoreResult = { score: '0.9', reason: 'String score' };
- const stringScoreOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(stringScoreResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, stringScoreOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- score: 0.9,
- pass: true,
- reason: 'String score',
- }),
- );
- });
- it('should handle string pass values', async () => {
- const rubricPrompt = 'Rubric prompt';
- const output = 'Sample output';
- const assertion: Assertion = {
- type: 'llm-rubric',
- value: rubricPrompt,
- threshold: 0.8,
- };
- const stringPassResult = { reason: 'String pass', pass: 'true' };
- const stringPassOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(stringPassResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, stringPassOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- pass: true,
- reason: 'String pass',
- }),
- );
- const stringFailResult = { reason: 'String fail', pass: 'false' };
- const stringFailOptions: GradingConfig = {
- rubricPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify(stringFailResult),
- }),
- },
- };
- await expect(
- matchesLlmRubric(rubricPrompt, output, stringFailOptions, {}, assertion),
- ).resolves.toEqual(
- expect.objectContaining({
- assertion,
- pass: false,
- reason: 'String fail',
- }),
- );
- });
- it('should load rubric prompt from external file when specified', async () => {
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading = {
- rubricPrompt: `file://${mockFilePath}`,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({ pass: true, score: 1, reason: 'Test passed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- const result = await matchesLlmRubric(rubric, llmOutput, grading);
- expect(fs.existsSync).toHaveBeenCalledWith(
- expect.stringContaining(path.join('path', 'to', 'external', 'rubric.txt')),
- );
- expect(fs.readFileSync).toHaveBeenCalledWith(
- expect.stringContaining(path.join('path', 'to', 'external', 'rubric.txt')),
- 'utf8',
- );
- expect(grading.provider.callApi).toHaveBeenCalledWith(expect.stringContaining(mockFileContent));
- expect(result).toEqual({
- pass: true,
- score: 1,
- reason: 'Test passed',
- tokensUsed: {
- total: 10,
- prompt: 5,
- completion: 5,
- cached: 0,
- completionDetails: { reasoning: 0, acceptedPrediction: 0, rejectedPrediction: 0 },
- },
- });
- });
- it('should load rubric prompt from js file when specified', async () => {
- const filePath = path.join('path', 'to', 'external', 'file.js');
- const mockImportModule = jest.mocked(importModule);
- const mockFunction = jest.fn(() => 'Do this: {{ rubric }}');
- mockImportModule.mockResolvedValue(mockFunction);
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading = {
- rubricPrompt: `file://${filePath}`,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({ pass: true, score: 1, reason: 'Test passed' }),
- }),
- },
- };
- const result = await matchesLlmRubric(rubric, llmOutput, grading);
- await expect(loadFromJavaScriptFile(filePath, undefined, [])).resolves.toBe(
- 'Do this: {{ rubric }}',
- );
- expect(grading.provider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Do this: Test rubric'),
- );
- expect(mockImportModule).toHaveBeenCalledWith(filePath, undefined);
- expect(result).toEqual(
- expect.objectContaining({ pass: true, score: 1, reason: 'Test passed' }),
- );
- });
- it('should throw an error when the external file is not found', async () => {
- jest.mocked(fs.existsSync).mockReturnValue(false);
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading = {
- rubricPrompt: `file://${mockFilePath}`,
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({ pass: true, score: 1, reason: 'Test passed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- await expect(matchesLlmRubric(rubric, llmOutput, grading)).rejects.toThrow(
- 'File does not exist',
- );
- expect(fs.existsSync).toHaveBeenCalledWith(
- expect.stringContaining(path.join('path', 'to', 'external', 'rubric.txt')),
- );
- expect(fs.readFileSync).not.toHaveBeenCalled();
- expect(grading.provider.callApi).not.toHaveBeenCalled();
- });
- it('should not call remote when rubric prompt is overridden, even if redteam is enabled', async () => {
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading = {
- rubricPrompt: 'Custom prompt',
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({ pass: true, score: 1, reason: 'Test passed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- // Give it a redteam config
- cliState.config = { redteam: {} };
- await matchesLlmRubric(rubric, llmOutput, grading);
- const { doRemoteGrading } = remoteGrading;
- expect(doRemoteGrading).not.toHaveBeenCalled();
- expect(grading.provider.callApi).toHaveBeenCalledWith(expect.stringContaining('Custom prompt'));
- });
- it('should call remote when redteam is enabled and rubric prompt is not overridden', async () => {
- const rubric = 'Test rubric';
- const llmOutput = 'Test output';
- const grading = {
- provider: {
- id: () => 'test-provider',
- callApi: jest.fn().mockResolvedValue({
- output: JSON.stringify({ pass: true, score: 1, reason: 'Test passed' }),
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }),
- },
- };
- // Give it a redteam config
- cliState.config = { redteam: {} };
- await matchesLlmRubric(rubric, llmOutput, grading);
- const { doRemoteGrading } = remoteGrading;
- expect(doRemoteGrading).toHaveBeenCalledWith({
- task: 'llm-rubric',
- rubric,
- output: llmOutput,
- vars: {},
- });
- expect(grading.provider.callApi).not.toHaveBeenCalled();
- });
- });
- describe('matchesFactuality', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should pass when the factuality check passes with legacy format', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output:
- '(A) The submitted answer is a subset of the expert answer and is fully consistent with it.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason:
- 'The submitted answer is a subset of the expert answer and is fully consistent with it.',
- score: 1,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should pass when the factuality check passes with JSON format', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output:
- '{"category": "A", "reason": "The submitted answer is a subset of the expert answer and is fully consistent with it."}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason:
- 'The submitted answer is a subset of the expert answer and is fully consistent with it.',
- score: 1,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should fall back to pattern match response', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output: '(A) This is a custom reason for category A.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason: 'This is a custom reason for category A.',
- score: 1,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should fail when the factuality check fails with legacy format', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output: '(D) There is a disagreement between the submitted answer and the expert answer.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: false,
- reason: 'There is a disagreement between the submitted answer and the expert answer.',
- score: 0,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should fail when the factuality check fails with JSON format', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output:
- '{"category": "D", "reason": "There is a disagreement between the submitted answer and the expert answer."}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: false,
- reason: 'There is a disagreement between the submitted answer and the expert answer.',
- score: 0,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should use the overridden factuality grading config', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {
- factuality: {
- subset: 0.8,
- superset: 0.9,
- agree: 1,
- disagree: 0,
- differButFactual: 0.7,
- },
- };
- const mockCallApi = jest.fn().mockResolvedValue({
- output:
- '{"category": "A", "reason": "The submitted answer is a subset of the expert answer and is fully consistent with it."}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason:
- 'The submitted answer is a subset of the expert answer and is fully consistent with it.',
- score: 0.8,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should use category description as fallback when no reason is provided in JSON', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output: '{"category": "A"}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason:
- 'Category A: The submitted answer is a subset of the expert answer and is fully consistent with it.',
- score: 1,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should fail when JSON has invalid category', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- const mockCallApi = jest.fn().mockResolvedValue({
- output: '{"category": "Z", "reason": "Invalid category"}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesFactuality(input, expected, output, grading)).resolves.toEqual({
- pass: false,
- score: 0,
- reason: 'Invalid category value: Z',
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- });
- it('should use custom prompt override when provided', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const customPrompt = JSON.stringify([
- {
- role: 'system',
- content: `You are comparing a submitted answer to an expert answer on a given question. Here is the data:
- [BEGIN DATA]
- ************
- [Question]: {{input}}
- ************
- [Expert]: {{ideal}}
- ************
- [Submission]: {{completion}}
- ************
- [END DATA]
- Compare the factual content of the submitted answer with the expert answer. Ignore any differences in style, grammar, or punctuation.
- The submitted answer may either be a subset or superset of the expert answer, or it may conflict with it. Determine which case applies. Answer the question by selecting one of the following options:
- (A) The submitted answer is a subset of the expert answer and is fully consistent with it.
- (B) The submitted answer is a superset of the expert answer and is fully consistent with it.
- (C) The submitted answer contains all the same details as the expert answer.
- (D) There is a disagreement between the submitted answer and the expert answer.
- (E) The answers differ, but these differences don't matter from the perspective of factuality.`,
- },
- ]);
- const mockCallApi = jest.fn().mockResolvedValue({
- output: '(B) The submitted answer is a superset of the expert answer.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- const grading = {
- rubricPrompt: customPrompt,
- provider: {
- id: () => 'test-provider',
- callApi: mockCallApi,
- },
- };
- const result = await matchesFactuality(input, expected, output, grading);
- expect(result).toEqual({
- pass: true,
- reason: 'The submitted answer is a superset of the expert answer.',
- score: 1,
- tokensUsed: expect.objectContaining({
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- }),
- });
- // Verify the custom prompt was used
- expect(mockCallApi).toHaveBeenCalledWith(
- expect.stringContaining(
- 'The submitted answer may either be a subset or superset of the expert answer',
- ),
- );
- });
- it('should throw an error when an error occurs', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(() => {
- throw new Error('An error occurred');
- });
- await expect(matchesFactuality(input, expected, output, grading)).rejects.toThrow(
- 'An error occurred',
- );
- });
- it('should use Nunjucks templating when PROMPTFOO_DISABLE_TEMPLATING is set', async () => {
- process.env.PROMPTFOO_DISABLE_TEMPLATING = 'true';
- const input = 'Input {{ var }}';
- const expected = 'Expected {{ var }}';
- const output = 'Output {{ var }}';
- const grading: GradingConfig = {
- provider: DefaultGradingProvider,
- };
- jest.spyOn(DefaultGradingProvider, 'callApi').mockResolvedValue({
- output: '{"category": "A", "reason": "The submitted answer is correct."}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await matchesFactuality(input, expected, output, grading);
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Input {{ var }}'),
- );
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Expected {{ var }}'),
- );
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Output {{ var }}'),
- );
- process.env.PROMPTFOO_DISABLE_TEMPLATING = undefined;
- });
- });
- describe('matchesClosedQa', () => {
- it('should pass when the closed QA check passes', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- jest.spyOn(DefaultGradingProvider, 'callApi').mockResolvedValueOnce({
- output: 'foo \n \n bar\n Y Y \n',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await expect(matchesClosedQa(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason: 'The submission meets the criterion',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when the closed QA check fails', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- jest.spyOn(DefaultGradingProvider, 'callApi').mockResolvedValueOnce({
- output: 'foo bar N \n',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await expect(matchesClosedQa(input, expected, output, grading)).resolves.toEqual({
- pass: false,
- reason: 'The submission does not meet the criterion:\nfoo bar N \n',
- score: 0,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should throw an error when an error occurs', async () => {
- const input = 'Input text';
- const expected = 'Expected output';
- const output = 'Sample output';
- const grading = {};
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(() => {
- throw new Error('An error occurred');
- });
- await expect(matchesClosedQa(input, expected, output, grading)).rejects.toThrow(
- 'An error occurred',
- );
- });
- it('should handle input, criteria, and completion that need escaping', async () => {
- const input = 'Input "text" with \\ escape characters and \\"nested\\" escapes';
- const expected = 'Expected "output" with \\\\ escape characters and \\"nested\\" escapes';
- const output = 'Sample "output" with \\\\ escape characters and \\"nested\\" escapes';
- const grading = {};
- let isJson = false;
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation((prompt) => {
- try {
- JSON.parse(prompt);
- isJson = true;
- } catch {
- isJson = false;
- }
- return Promise.resolve({
- output: 'foo \n \n bar\n Y Y',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- await expect(matchesClosedQa(input, expected, output, grading)).resolves.toEqual({
- pass: true,
- reason: 'The submission meets the criterion',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- expect(isJson).toBeTruthy();
- });
- it('should use Nunjucks templating when PROMPTFOO_DISABLE_TEMPLATING is set', async () => {
- process.env.PROMPTFOO_DISABLE_TEMPLATING = 'true';
- const input = 'Input {{ var }}';
- const expected = 'Expected {{ var }}';
- const output = 'Output {{ var }}';
- const grading: GradingConfig = {
- provider: DefaultGradingProvider,
- };
- jest.spyOn(DefaultGradingProvider, 'callApi').mockResolvedValue({
- output: 'Y',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- await matchesClosedQa(input, expected, output, grading);
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Input {{ var }}'),
- );
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Expected {{ var }}'),
- );
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledWith(
- expect.stringContaining('Output {{ var }}'),
- );
- process.env.PROMPTFOO_DISABLE_TEMPLATING = undefined;
- });
- });
- describe('getGradingProvider', () => {
- it('should return the correct provider when provider is a string', async () => {
- const provider = await getGradingProvider(
- 'text',
- 'openai:chat:gpt-4o-mini-foobar',
- DefaultGradingProvider,
- );
- // ok for this not to match exactly when the string is parsed
- expect(provider?.id()).toBe('openai:gpt-4o-mini-foobar');
- });
- it('should return the correct provider when provider is an ApiProvider', async () => {
- const provider = await getGradingProvider(
- 'embedding',
- DefaultEmbeddingProvider,
- DefaultGradingProvider,
- );
- expect(provider).toBe(DefaultEmbeddingProvider);
- });
- it('should return the correct provider when provider is ProviderOptions', async () => {
- const providerOptions = {
- id: 'openai:chat:gpt-4o-mini-foobar',
- config: {
- apiKey: 'abc123',
- temperature: 3.1415926,
- },
- };
- const provider = await getGradingProvider('text', providerOptions, DefaultGradingProvider);
- expect(provider?.id()).toBe('openai:chat:gpt-4o-mini-foobar');
- });
- it('should return the default provider when provider is not provided', async () => {
- const provider = await getGradingProvider('text', undefined, DefaultGradingProvider);
- expect(provider).toBe(DefaultGradingProvider);
- });
- });
- describe('getAndCheckProvider', () => {
- it('should return the default provider when provider is not defined', async () => {
- await expect(
- getAndCheckProvider('text', undefined, DefaultGradingProvider, 'test check'),
- ).resolves.toBe(DefaultGradingProvider);
- });
- it('should return the default provider when provider does not support type', async () => {
- const provider = {
- id: () => 'test-provider',
- callApi: () => Promise.resolve({ output: 'test' }),
- };
- await expect(
- getAndCheckProvider('embedding', provider, DefaultEmbeddingProvider, 'test check'),
- ).resolves.toBe(DefaultEmbeddingProvider);
- });
- it('should return the provider if it implements the required method', async () => {
- const provider = {
- id: () => 'test-provider',
- callApi: () => Promise.resolve({ output: 'test' }),
- callEmbeddingApi: () => Promise.resolve({ embedding: [] }),
- };
- const result = await getAndCheckProvider(
- 'embedding',
- provider,
- DefaultEmbeddingProvider,
- 'test check',
- );
- expect(result).toBe(provider);
- });
- it('should return the default provider when no provider is specified', async () => {
- const provider = await getGradingProvider('text', undefined, DefaultGradingProvider);
- expect(provider).toBe(DefaultGradingProvider);
- });
- it('should return a specific provider when a provider id is specified', async () => {
- const provider = await getGradingProvider('text', 'openai:chat:foo', DefaultGradingProvider);
- // loadApiProvider removes `chat` from the id
- expect(provider?.id()).toBe('openai:foo');
- });
- it('should return a provider from ApiProvider when specified', async () => {
- const providerOptions: ApiProvider = {
- id: () => 'custom-provider',
- callApi: async () => ({}),
- };
- const provider = await getGradingProvider('text', providerOptions, DefaultGradingProvider);
- expect(provider?.id()).toBe('custom-provider');
- });
- it('should return a provider from ProviderTypeMap when specified', async () => {
- const providerTypeMap: ProviderTypeMap = {
- text: {
- id: 'openai:chat:foo',
- },
- embedding: {
- id: 'openai:embedding:bar',
- },
- };
- const provider = await getGradingProvider('text', providerTypeMap, DefaultGradingProvider);
- expect(provider?.id()).toBe('openai:chat:foo');
- });
- it('should return a provider from ProviderTypeMap with basic strings', async () => {
- const providerTypeMap: ProviderTypeMap = {
- text: 'openai:chat:foo',
- embedding: 'openai:embedding:bar',
- };
- const provider = await getGradingProvider('text', providerTypeMap, DefaultGradingProvider);
- expect(provider?.id()).toBe('openai:foo');
- });
- it('should throw an error when the provider does not match the type', async () => {
- const providerTypeMap: ProviderTypeMap = {
- embedding: {
- id: 'openai:embedding:foo',
- },
- };
- await expect(
- getGradingProvider('text', providerTypeMap, DefaultGradingProvider),
- ).rejects.toThrow(
- new Error(
- `Invalid provider definition for output type 'text': ${JSON.stringify(
- providerTypeMap,
- null,
- 2,
- )}`,
- ),
- );
- });
- });
- describe('matchesAnswerRelevance', () => {
- it('should pass when the relevance score is above the threshold', async () => {
- const input = 'Input text';
- const output = 'Sample output';
- const threshold = 0.5;
- const mockCallApi = jest.spyOn(DefaultGradingProvider, 'callApi');
- mockCallApi.mockImplementation(() => {
- return Promise.resolve({
- output: 'foobar',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- const mockCallEmbeddingApi = jest.spyOn(DefaultEmbeddingProvider, 'callEmbeddingApi');
- mockCallEmbeddingApi.mockImplementation(function (this: OpenAiEmbeddingProvider) {
- return Promise.resolve({
- embedding: [1, 0, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- });
- await expect(matchesAnswerRelevance(input, output, threshold)).resolves.toEqual({
- pass: true,
- reason: 'Relevance 1.00 is greater than threshold 0.5',
- score: 1,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- expect(mockCallApi).toHaveBeenCalledWith(
- expect.stringContaining(ANSWER_RELEVANCY_GENERATE.slice(0, 50)),
- );
- expect(mockCallEmbeddingApi).toHaveBeenCalledWith('Input text');
- mockCallApi.mockRestore();
- mockCallEmbeddingApi.mockRestore();
- });
- it('should fail when the relevance score is below the threshold', async () => {
- const input = 'Input text';
- const output = 'Different output';
- const threshold = 0.5;
- const mockCallApi = jest.spyOn(DefaultGradingProvider, 'callApi');
- mockCallApi.mockImplementation((text) => {
- return Promise.resolve({
- output: text,
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- const mockCallEmbeddingApi = jest.spyOn(DefaultEmbeddingProvider, 'callEmbeddingApi');
- mockCallEmbeddingApi.mockImplementation((text) => {
- if (text.includes('Input text')) {
- return Promise.resolve({
- embedding: [1, 0, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- } else if (text.includes('Different output')) {
- return Promise.resolve({
- embedding: [0, 1, 0],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- });
- }
- return Promise.reject(new Error(`Unexpected input ${text}`));
- });
- await expect(matchesAnswerRelevance(input, output, threshold)).resolves.toEqual({
- pass: false,
- reason: 'Relevance 0.00 is less than threshold 0.5',
- score: 0,
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- expect(mockCallApi).toHaveBeenCalledWith(
- expect.stringContaining(ANSWER_RELEVANCY_GENERATE.slice(0, 50)),
- );
- expect(mockCallEmbeddingApi).toHaveBeenCalledWith(
- expect.stringContaining(ANSWER_RELEVANCY_GENERATE.slice(0, 50)),
- );
- mockCallApi.mockRestore();
- mockCallEmbeddingApi.mockRestore();
- });
- });
- describe('matchesClassification', () => {
- class TestGrader implements ApiProvider {
- async callApi(): Promise<ProviderResponse> {
- throw new Error('Not implemented');
- }
- async callClassificationApi(): Promise<ProviderClassificationResponse> {
- return {
- classification: {
- classA: 0.6,
- classB: 0.5,
- },
- };
- }
- id(): string {
- return 'TestClassificationProvider';
- }
- }
- it('should pass when the classification score is above the threshold', async () => {
- const expected = 'classA';
- const output = 'Sample output';
- const threshold = 0.5;
- const grader = new TestGrader();
- const grading: GradingConfig = {
- provider: grader,
- };
- await expect(matchesClassification(expected, output, threshold, grading)).resolves.toEqual({
- pass: true,
- reason: `Classification ${expected} has score 0.60 >= ${threshold}`,
- score: 0.6,
- });
- });
- it('should fail when the classification score is below the threshold', async () => {
- const expected = 'classA';
- const output = 'Different output';
- const threshold = 0.9;
- const grader = new TestGrader();
- const grading: GradingConfig = {
- provider: grader,
- };
- await expect(matchesClassification(expected, output, threshold, grading)).resolves.toEqual({
- pass: false,
- reason: `Classification ${expected} has score 0.60 < ${threshold}`,
- score: 0.6,
- });
- });
- it('should pass when the maximum classification score is above the threshold with undefined expected', async () => {
- const expected = undefined;
- const output = 'Sample output';
- const threshold = 0.55;
- const grader = new TestGrader();
- const grading: GradingConfig = {
- provider: grader,
- };
- await expect(matchesClassification(expected, output, threshold, grading)).resolves.toEqual({
- pass: true,
- reason: `Maximum classification score 0.60 >= ${threshold}`,
- score: 0.6,
- });
- });
- it('should use the overridden classification grading config', async () => {
- const expected = 'classA';
- const output = 'Sample output';
- const threshold = 0.5;
- const grading: GradingConfig = {
- provider: {
- id: 'hf:text-classification:foobar',
- },
- };
- const mockCallApi = jest.spyOn(
- HuggingfaceTextClassificationProvider.prototype,
- 'callClassificationApi',
- );
- mockCallApi.mockImplementation(function (this: HuggingfaceTextClassificationProvider) {
- return Promise.resolve({
- classification: { [expected]: 0.6 },
- });
- });
- await expect(matchesClassification(expected, output, threshold, grading)).resolves.toEqual({
- pass: true,
- reason: `Classification ${expected} has score 0.60 >= ${threshold}`,
- score: 0.6,
- });
- expect(mockCallApi).toHaveBeenCalledWith('Sample output');
- mockCallApi.mockRestore();
- });
- });
- describe('matchesContextRelevance', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should pass when the relevance score is above the threshold', async () => {
- const input = 'Input text';
- const context = 'Context text';
- const threshold = 0.5;
- const mockCallApi = jest.fn().mockImplementation(() => {
- return Promise.resolve({
- output: 'foo\nbar\nbaz Insufficient Information\n',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextRelevance(input, context, threshold)).resolves.toEqual({
- pass: true,
- reason: 'Relevance 0.67 is >= 0.5',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when the relevance score is below the threshold', async () => {
- const input = 'Input text';
- const context = 'Context text';
- const threshold = 0.9;
- const mockCallApi = jest.fn().mockImplementation(() => {
- return Promise.resolve({
- output: 'foo\nbar\nbaz Insufficient Information',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextRelevance(input, context, threshold)).resolves.toEqual({
- pass: false,
- reason: 'Relevance 0.67 is < 0.9',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- });
- describe('matchesContextFaithfulness', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should pass when the faithfulness score is above the threshold', async () => {
- const query = 'Query text';
- const output = 'Output text';
- const context = 'Context text';
- const threshold = 0.5;
- const mockCallApi = jest
- .fn()
- .mockImplementationOnce(() => {
- return Promise.resolve({
- output: 'Statement 1\nStatement 2\nStatement 3\n',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- })
- .mockImplementationOnce(() => {
- return Promise.resolve({
- output: 'Final verdict for each statement in order: Yes. No. Yes.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextFaithfulness(query, output, context, threshold)).resolves.toEqual({
- pass: true,
- reason: 'Faithfulness 0.67 is >= 0.5',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when the faithfulness score is below the threshold', async () => {
- const query = 'Query text';
- const output = 'Output text';
- const context = 'Context text';
- const threshold = 0.7;
- const mockCallApi = jest
- .fn()
- .mockImplementationOnce(() => {
- return Promise.resolve({
- output: 'Statement 1\nStatement 2\nStatement 3',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- })
- .mockImplementationOnce(() => {
- return Promise.resolve({
- output: 'Final verdict for each statement in order: Yes. Yes. No.',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextFaithfulness(query, output, context, threshold)).resolves.toEqual({
- pass: false,
- reason: 'Faithfulness 0.67 is < 0.7',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- });
- describe('matchesContextRecall', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should pass when the recall score is above the threshold', async () => {
- const context = 'Context text';
- const groundTruth = 'Ground truth text';
- const threshold = 0.5;
- const mockCallApi = jest.fn().mockImplementation(() => {
- return Promise.resolve({
- output: 'foo [Attributed]\nbar [Not attributed]\nbaz [Attributed]\n',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextRecall(context, groundTruth, threshold)).resolves.toEqual({
- pass: true,
- reason: 'Recall 0.67 is >= 0.5',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- it('should fail when the recall score is below the threshold', async () => {
- const context = 'Context text';
- const groundTruth = 'Ground truth text';
- const threshold = 0.9;
- const mockCallApi = jest.fn().mockImplementation(() => {
- return Promise.resolve({
- output: 'foo [Attributed]\nbar [Not attributed]\nbaz [Attributed]',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- });
- });
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(mockCallApi);
- await expect(matchesContextRecall(context, groundTruth, threshold)).resolves.toEqual({
- pass: false,
- reason: 'Recall 0.67 is < 0.9',
- score: expect.closeTo(0.67, 0.01),
- tokensUsed: {
- total: expect.any(Number),
- prompt: expect.any(Number),
- completion: expect.any(Number),
- cached: expect.any(Number),
- completionDetails: expect.any(Object),
- },
- });
- });
- });
- describe('matchesModeration', () => {
- const mockModerationResponse = {
- flags: [],
- tokenUsage: { total: 5, prompt: 2, completion: 3 },
- };
- beforeEach(() => {
- // Clear all environment variables
- delete process.env.OPENAI_API_KEY;
- delete process.env.REPLICATE_API_KEY;
- delete process.env.REPLICATE_API_TOKEN;
- });
- afterEach(() => {
- jest.restoreAllMocks();
- });
- it('should skip moderation when assistant response is empty', async () => {
- const openAiSpy = jest
- .spyOn(OpenAiModerationProvider.prototype, 'callModerationApi')
- .mockResolvedValue(mockModerationResponse);
- const result = await matchesModeration({
- userPrompt: 'test prompt',
- assistantResponse: '',
- });
- expect(result).toEqual({
- pass: true,
- score: 1,
- reason: expect.any(String),
- });
- expect(openAiSpy).not.toHaveBeenCalled();
- });
- it('should use OpenAI when OPENAI_API_KEY is present', async () => {
- process.env.OPENAI_API_KEY = 'test-key';
- const openAiSpy = jest
- .spyOn(OpenAiModerationProvider.prototype, 'callModerationApi')
- .mockResolvedValue(mockModerationResponse);
- await matchesModeration({
- userPrompt: 'test prompt',
- assistantResponse: 'test response',
- });
- expect(openAiSpy).toHaveBeenCalledWith('test prompt', 'test response');
- });
- it('should fallback to Replicate when only REPLICATE_API_KEY is present', async () => {
- process.env.REPLICATE_API_KEY = 'test-key';
- const replicateSpy = jest
- .spyOn(ReplicateModerationProvider.prototype, 'callModerationApi')
- .mockResolvedValue(mockModerationResponse);
- await matchesModeration({
- userPrompt: 'test prompt',
- assistantResponse: 'test response',
- });
- expect(replicateSpy).toHaveBeenCalledWith('test prompt', 'test response');
- });
- it('should respect provider override in grading config', async () => {
- process.env.OPENAI_API_KEY = 'test-key';
- const replicateSpy = jest
- .spyOn(ReplicateModerationProvider.prototype, 'callModerationApi')
- .mockResolvedValue(mockModerationResponse);
- await matchesModeration(
- {
- userPrompt: 'test prompt',
- assistantResponse: 'test response',
- },
- {
- provider: LLAMA_GUARD_REPLICATE_PROVIDER,
- },
- );
- expect(replicateSpy).toHaveBeenCalledWith('test prompt', 'test response');
- });
- });
- describe('tryParse and renderLlmRubricPrompt', () => {
- let tryParse: (content: string | null | undefined) => any;
- beforeAll(async () => {
- const context: { capturedFn: null | Function } = { capturedFn: null };
- await renderLlmRubricPrompt('{"test":"value"}', {
- __capture(fn: Function) {
- context.capturedFn = fn;
- return 'captured';
- },
- });
- tryParse = function (content: string | null | undefined) {
- try {
- if (content === null || content === undefined) {
- return content;
- }
- return JSON.parse(content);
- } catch {}
- return content;
- };
- });
- it('should parse valid JSON', () => {
- const input = '{"key": "value"}';
- expect(tryParse(input)).toEqual({ key: 'value' });
- });
- it('should return original string for invalid JSON', () => {
- const input = 'not json';
- expect(tryParse(input)).toBe('not json');
- });
- it('should handle empty string', () => {
- const input = '';
- expect(tryParse(input)).toBe('');
- });
- it('should handle null and undefined', () => {
- expect(tryParse(null)).toBeNull();
- expect(tryParse(undefined)).toBeUndefined();
- });
- it('should render strings inside JSON objects', async () => {
- const template = '{"role": "user", "content": "Hello {{name}}"}';
- const result = await renderLlmRubricPrompt(template, { name: 'World' });
- const parsed = JSON.parse(result);
- expect(parsed).toEqual({ role: 'user', content: 'Hello World' });
- });
- it('should preserve JSON structure while rendering only strings', async () => {
- const template = '{"nested": {"text": "{{var}}", "number": 42}}';
- const result = await renderLlmRubricPrompt(template, { var: 'test' });
- const parsed = JSON.parse(result);
- expect(parsed).toEqual({ nested: { text: 'test', number: 42 } });
- });
- it('should handle non-JSON templates with legacy rendering', async () => {
- const template = 'Hello {{name}}';
- const result = await renderLlmRubricPrompt(template, { name: 'World' });
- expect(result).toBe('Hello World');
- });
- it('should handle complex objects in context', async () => {
- const template = '{"text": "{{object}}"}';
- const complexObject = { foo: 'bar', baz: [1, 2, 3] };
- const result = await renderLlmRubricPrompt(template, { object: complexObject });
- const parsed = JSON.parse(result);
- expect(typeof parsed.text).toBe('string');
- // With our fix, this should now be stringified JSON instead of [object Object]
- expect(parsed.text).toBe(JSON.stringify(complexObject));
- });
- it('should properly stringify objects', async () => {
- const template = 'Source Text:\n{{input}}';
- // Create objects that would typically cause the [object Object] issue
- const objects = [
- { name: 'Object 1', properties: { color: 'red', size: 'large' } },
- { name: 'Object 2', properties: { color: 'blue', size: 'small' } },
- ];
- const result = await renderLlmRubricPrompt(template, { input: objects });
- // With our fix, this should properly stringify the objects
- expect(result).not.toContain('[object Object]');
- expect(result).toContain(JSON.stringify(objects[0]));
- expect(result).toContain(JSON.stringify(objects[1]));
- });
- it('should handle mixed arrays of objects and primitives', async () => {
- const template = 'Items: {{items}}';
- const mixedArray = ['string item', { name: 'Object item' }, 42, [1, 2, 3]];
- const result = await renderLlmRubricPrompt(template, { items: mixedArray });
- // Objects in array should be stringified
- expect(result).not.toContain('[object Object]');
- expect(result).toContain('string item');
- expect(result).toContain(JSON.stringify({ name: 'Object item' }));
- expect(result).toContain('42');
- expect(result).toContain(JSON.stringify([1, 2, 3]));
- });
- it('should render arrays of objects correctly', async () => {
- const template = '{"items": [{"name": "{{name1}}"}, {"name": "{{name2}}"}]}';
- const result = await renderLlmRubricPrompt(template, { name1: 'Alice', name2: 'Bob' });
- const parsed = JSON.parse(result);
- expect(parsed).toEqual({
- items: [{ name: 'Alice' }, { name: 'Bob' }],
- });
- });
- it('should handle multiline strings', async () => {
- const template = `{"content": "Line 1\\nLine {{number}}\\nLine 3"}`;
- const result = await renderLlmRubricPrompt(template, { number: '2' });
- const parsed = JSON.parse(result);
- expect(parsed).toEqual({
- content: 'Line 1\nLine 2\nLine 3',
- });
- });
- it('should handle nested templates', async () => {
- const template = '{"outer": "{{value1}}", "inner": {"value": "{{value2}}"}}';
- const result = await renderLlmRubricPrompt(template, {
- value1: 'outer value',
- value2: 'inner value',
- });
- const parsed = JSON.parse(result);
- expect(parsed).toEqual({
- outer: 'outer value',
- inner: { value: 'inner value' },
- });
- });
- it('should handle escaping in JSON strings', async () => {
- const template = '{"content": "This needs \\"escaping\\" and {{var}} too"}';
- const result = await renderLlmRubricPrompt(template, { var: 'var with "quotes"' });
- const parsed = JSON.parse(result);
- expect(parsed.content).toBe('This needs "escaping" and var with "quotes" too');
- });
- it('should work with nested arrays and objects', async () => {
- const template = JSON.stringify({
- role: 'system',
- content: 'Process this: {{input}}',
- config: {
- options: [
- { id: 1, label: '{{option1}}' },
- { id: 2, label: '{{option2}}' },
- ],
- },
- });
- const evalResult = await renderLlmRubricPrompt(template, {
- input: 'test input',
- option1: 'First Option',
- option2: 'Second Option',
- });
- const parsed = JSON.parse(evalResult);
- expect(parsed.content).toBe('Process this: test input');
- expect(parsed.config.options[0].label).toBe('First Option');
- expect(parsed.config.options[1].label).toBe('Second Option');
- });
- it('should handle rendering statements with join filter', async () => {
- const statements = ['Statement 1', 'Statement 2', 'Statement 3'];
- const template = 'statements:\n{{statements|join("\\n")}}';
- const result = await renderLlmRubricPrompt(template, { statements });
- const expected = 'statements:\nStatement 1\nStatement 2\nStatement 3';
- expect(result).toBe(expected);
- });
- });
- describe('matchesGEval', () => {
- let originalCallApi: typeof DefaultGradingProvider.callApi;
- beforeEach(() => {
- originalCallApi = DefaultGradingProvider.callApi;
- jest.spyOn(DefaultGradingProvider, 'callApi').mockImplementation(async (prompt) => {
- if (prompt.includes('generate 3-4 concise evaluation steps')) {
- return {
- output: '{"steps": ["Check clarity", "Evaluate coherence", "Assess grammar"]}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- };
- } else {
- return {
- output: '{"score": 8, "reason": "The response is well-structured and clear"}',
- tokenUsage: { total: 15, prompt: 8, completion: 7 },
- };
- }
- });
- });
- afterEach(() => {
- DefaultGradingProvider.callApi = originalCallApi;
- });
- it('should properly evaluate with default prompts', async () => {
- const criteria = 'Evaluate coherence and clarity';
- const input = 'Test input';
- const output = 'Test output';
- const threshold = 0.7;
- const result = await matchesGEval(criteria, input, output, threshold);
- expect(result).toEqual({
- pass: true,
- score: 0.8,
- reason: 'The response is well-structured and clear',
- });
- expect(DefaultGradingProvider.callApi).toHaveBeenCalledTimes(2);
- });
- it('should handle custom rubric prompts', async () => {
- jest.resetAllMocks();
- const mockCallApi = jest
- .fn()
- .mockImplementationOnce(() => ({
- output: '{"steps": ["Custom step 1", "Custom step 2"]}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- }))
- .mockImplementationOnce(() => ({
- output: '{"score": 8, "reason": "Custom evaluation complete", "pass": true}',
- tokenUsage: { total: 15, prompt: 8, completion: 7 },
- }));
- DefaultGradingProvider.callApi = mockCallApi;
- const criteria = 'Evaluate coherence and clarity';
- const input = 'Test input';
- const output = 'Test output';
- const threshold = 0.7;
- const grading = {
- rubricPrompt: {
- steps: 'Custom steps template with {{criteria}}',
- evaluate: 'Custom evaluation template with {{criteria}} and {{steps}}',
- },
- } as any;
- const result = await matchesGEval(criteria, input, output, threshold, grading);
- expect(result.score).toBe(0.8);
- expect(mockCallApi).toHaveBeenCalledTimes(2);
- expect(mockCallApi).toHaveBeenNthCalledWith(
- 1,
- expect.stringContaining('Custom steps template with'),
- );
- expect(mockCallApi).toHaveBeenNthCalledWith(
- 2,
- expect.stringContaining('Custom evaluation template with'),
- );
- DefaultGradingProvider.callApi = originalCallApi;
- });
- it('should fail when score is below threshold', async () => {
- jest
- .spyOn(DefaultGradingProvider, 'callApi')
- .mockImplementationOnce(async () => {
- return {
- output: '{"steps": ["Check clarity", "Evaluate coherence", "Assess grammar"]}',
- tokenUsage: { total: 10, prompt: 5, completion: 5 },
- };
- })
- .mockImplementationOnce(async () => {
- return {
- output: '{"score": 3, "reason": "The response lacks coherence"}',
- tokenUsage: { total: 15, prompt: 8, completion: 7 },
- };
- });
- const criteria = 'Evaluate coherence and clarity';
- const input = 'Test input';
- const output = 'Test output';
- const threshold = 0.7;
- const result = await matchesGEval(criteria, input, output, threshold);
- expect(result).toEqual({
- pass: false,
- score: 0.3,
- reason: 'The response lacks coherence',
- });
- });
- });
|