File size: 242,509 Bytes
14dc175 | 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 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 | [
{
"name": "inspect_evals/agie_aqua_rat - Sample 0",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nA car is being driven, in a straight line and at a uniform speed, towards the base of a vertical tower. The top of the tower is observed from the car and, in the process, it takes 10 minutes for the angle of elevation to change from 45\u00b0 to 60\u00b0. After how much more time will this car reach the base of the tower?\n\nA) 5(\u221a3 + 1)\nB) 6(\u221a3 + \u221a2)\nC) 7(\u221a3 \u2013 1)\nD) 8(\u221a3 \u2013 2)\nE) None of these",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 1",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nThe original price of an item is discounted 22%. A customer buys the item at this discounted price using a $20-off coupon. There is no tax on the item, and this was the only item the customer bought. If the customer paid $1.90 more than half the original price of the item, what was the original price of the item?\n\nA) $61\nB) $65\nC) $67.40\nD) $70\nE) $78.20",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 2",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nFind out which of the following values is the multiple of X, if it is divisible by 9 and 12?\n\nA) 36\nB) 15\nC) 17\nD) 5\nE) 7",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 3",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIf the probability that Stock A will increase in value during the next month is 0.56, and the probability that Stock B will increase in value during the next month is 0.74. What is the greatest value for the probability that neither of these two events will occur?\n\nA) 0.22\nB) 0.26\nC) 0.37\nD) 0.46\nE) 0.63",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 4",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nA trader sold an article at a profit of 20% for Rs.360. What is the cost price of the article?\n\nA) 270\nB) 300\nC) 280\nD) 320\nE) 315",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 5",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\n20 marbles were pulled out of a bag of only white marbles, painted black, and then put back in. Then, another 20 marbles were pulled out, of which 1 was black, after which they were all returned to the bag. If the percentage of black marbles pulled out the second time represents their percentage in the bag, how many marbles in total Q does the bag currently hold?\n\nA) 40\nB) 200\nC) 380\nD) 400\nE) 3200",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 6",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nFind the total no. of distinct bike no.'s that can beformed using 2 letters followed by 2 no.'s. How many letters need to be distinct?\n\nA) 74453\nB) 64543\nC) 74325\nD) 65000\nE) 97656",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 7",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nA train running at a speed of 100 miles/hour, takes 10 hours to reach its destination. After covering quarter of the distance, it starts raining and the train has to be slowed to speed of 75 miles/hour. What is the total journey duration?\n\nA) 10\nB) 11.5\nC) 12.5\nD) 13.5\nE) 15",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 8",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the 200 students in a school, at least 45% attended the prom night and at least 35% took part in the debating session. What is the maximum number of students who could have neither attended the prom night nor the debating session?\n\nA) 27\nB) 81\nC) 90\nD) 99\nE) 110",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_aqua_rat - Sample 9",
"description": "Task from inspect_evals/agie_aqua_rat dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nA sales person gets a 10% commission on each sale he makes. How many sales of $250 each must he make in order to reach a salary of at least $1000?\n\nA) 15\nB) 24\nC) 25\nD) 40\nE) 52",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_aqua_rat",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 0",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nIn the planning of a new district in a township, it was decided to build a special community in the southeast, northwest, centered on the citizen park.These four communities are designated as cultural area, leisure area, commercial area and administrative service area.It is known that the administrative service area is southwest of the cultural area, and the cultural area is southeast of the leisure area.\n\nBased on the above statement, which of the following can be derived?\n\nA) Civic Park is north of the administrative service area\nB) The leisure area is southwest of the cultural area\nC) The cultural district is in the northeast of the business district\nD) The business district is southeast of the leisure area",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 1",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe company sent three young staff members to the South for business trip.The three of them happened to be sitting in a row.At least one of the two people sitting on the right side of 24 years old was 20 years old.20 years old.At least one of the two people sitting on the left of the accountant is a salesperson, and one of the two people sitting on the right of the salesperson is also a salesperson.\n\nSo what are the three young people on business?\n\nA) 20-year-old accountant, 20-year-old salesperson, 24-year-old salesperson\nB) 20-year-old accountant, 24-year-old salesperson, 24-year-old salesperson\nC) 24-year-old accountant, 20-year-old salesperson, 20-year-old salesperson\nD) 20-year-old accountant, 20-year-old accountant, 24-year-old salesperson",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 2",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nIn a traditional Chinese medicine preparation, there must be at least one kind of ginseng or codonopsis, and the following conditions must also be met? 1) If there is codonopsis, there must be atractylodes.2) Atractylodes macrocephala and ginseng can only have at most one.You must have Shouwu.4) If you have Shouwu, you must have Atractylodes.\n\nAccording to the above statement, which of the following can be drawn about this Chinese medicine preparation?\n\nA) o dangshen\nB) o Shouwu\nC) \u767d \u672f\nD) \u767d \u672f",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 3",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nIn recent years, graduate entrance examinations have continued to heat up.Correspondingly, a variety of postgraduate counseling classes have emerged, especially English and political counseling classes are almost a must for the postgraduates.Xiaozhuang, who has just started working, also intends to take the postgraduate entrance exam, so Xiaozhuang must take English tutoring classes\n\nWhich of the following can best strengthen the above argument\n\nA) If you take an English tutoring class, you can pass the graduate entrance exam\nB) Only those who intend to take the graduate entrance exam will participate in the English tutoring class\nC) Even if you take an English tutoring class, you may not be able to pass the graduate entrance exam\nD) If you do not participate in the English tutoring class, you cannot pass the graduate entrance exam",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 4",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nA unit conducted the year-end assessment and after democratic voting, five people were identified as candidates for the first prize.In the selection of five in four, the following factors need to be considered? 1) At least one person of Bingding is selected.2) If E is selected, then A and B are also selected.3) A maximum of 2 people are selected.\n\nAccording to the above statement, it can be concluded that who is not in the fourth?\n\nA) A.\nB) B.\nC) C.\nD) Ding.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 5",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nZhang Ming, Li Ying, Wang Jia and Chen Rui work in a team.They come from four provinces of Jiangsu, Anhui, Fujian and Shandong.Each person can only speak a dialect of their origin.Speaking of southern Fujian dialects, Shandong people have the highest educational level and can speak Central Plains Mandarin.Wang Jia has a lower education level than Fujianese.Li Ying can speak Huizhou dialect and is a colleague with his classmates from Jiangsu.Chen Rui does not understand the dialect of southern Fujian.\n\nAccording to the above statement, you can get which of the following?\n\nA) hen Rui can't speak the Central Plains Mandarin\nB) hang Ming speaks Minnan dialect\nC) i Ying is from Shandong\nD) ang Jia can speak Huizhou dialect",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 6",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe person in charge of the relevant department said that pilots will be carried out in some areas this year to prepare for the system and policy preparations for the comprehensive clean-up of \"small property houses\", and require all localities to confirm the registration and certification of rural collective land.All small-property houses are not subject to registration and are not protected by law.Therefore, this newly built house in Hexi Village is not protected by law.\n\nWhich of the following is true will most weaken the above argument\n\nA) This newly built house in Hexi Village has been tacitly approved by relevant departments\nB) This newly built house in Hexi Village is a small property house\nC) This newly built house in Hexi Village is built on rural collective land\nD) Some of the newly built houses in Hexi Village are not small property houses",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 7",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThere are five teams participating in the game.The audience had the following comments on the results? (1) The champion is either the Shannan team or the Jiangbei team.(2) The champion is neither Shanbei nor Jiangnan.(3) The champion is Jiangnan Team.(4) The champion is not the Shannan team.\n\nThe result of the match showed that only one argument was correct, so who won the championship?\n\nA) hannan\nB) iangnan\nC) hanbei\nD) iangbei",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 8",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nCompared with small and medium-sized cities, especially small cities and towns, large cities have higher living costs, which inevitably limits the entry of rural population.Therefore, the development of large cities alone cannot actually achieve urbanization\n\nWhich of the following is the conclusion must be assumed\n\nA) Urbanization is the only way for China's development\nB) Simple development of large cities is not conducive to the promotion of urbanization\nC) To achieve urbanization, the city must fully absorb the rural population\nD) The attractiveness of large cities to the rural population in the outside world is significantly lower than that of small and medium-sized cities",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_logiqa_en - Sample 9",
"description": "Task from inspect_evals/agie_logiqa_en dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nResearchers recently discovered that there is an area called the thalamus pillow deep in the human brain, which is like an information desk operator, responsible for sorting out the external stimulus information and focusing human attention on the most important for behavior and survival Information.The researchers pointed out that this discovery is expected to bring new treatments for disorders such as attention deficit hyperactivity disorder and schizophrenia caused by lack of attention.\n\nWhich of the following is assumed by the above argument\n\nA) Some schizophrenia are not caused by lack of attention\nB) Visual information is only transmitted through the visual cortex to obtain a neural network to transmit\nC) Researchers have developed a new technology that can directly track the communication between the nerve cortex in the visual cortex and thalamus occipital region\nD) The brain cannot process too much information in detail at the same time, and will only selectively focus on the things most relevant to the behavior",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_logiqa_en",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 0",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nWhich one of the following could be the schedule of the students' reports?\n\nA) Mon. morning: Helen; Mon. afternoon: Robert Tues. morning: Olivia; Tues. afternoon: Irving Wed. morning: Lenore; Wed. afternoon: Kyle\nB) Mon. morning: Irving; Mon. afternoon: Olivia Tues. morning: Helen; Tues. afternoon: Kyle Wed. morning: Nina; Wed. afternoon: Lenore\nC) Mon. morning: Lenore; Mon. afternoon: Helen Tues. morning: George; Tues. afternoon: Kyle Wed. morning: Robert; Wed. afternoon: Irving\nD) Mon. morning: Nina; Mon. afternoon: Helen Tues. morning: Robert; Tues. afternoon: Irving Wed. morning: Olivia; Wed. afternoon: Lenore\nE) Mon. morning: Olivia; Mon. afternoon: Nina Tues. morning: Irving; Tues. afternoon: Helen Wed. morning: Kyle; Wed. afternoon: George",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 1",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nIf Kyle and Lenore do not give reports, then the morning reports on Monday, Tuesday, and Wednesday, respectively, could be given by\n\nA) Helen, George, and Nina\nB) Irving, Robert, and Helen\nC) Nina, Helen, and Olivia\nD) Olivia, Robert, and Irving\nE) Robert, George, and Helen",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 2",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nWhich one of the following is a pair of students who, if they give reports on the same day as each other, must give reports on Wednesday?\n\nA) George and Lenore\nB) Helen and Nina\nC) Irving and Robert\nD) Kyle and Nina\nE) Olivia and Kyle",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 3",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nIf George, Nina, and Robert give reports and they do so on different days from one another, which one of the following could be true?\n\nA) Helen gives a report on Wednesday.\nB) Nina gives a report on Monday.\nC) Nina gives a report on Tuesday.\nD) Olivia gives a report on Monday.\nE) Robert gives a report on Wednesday.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 4",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nIf Kyle gives the afternoon report on Tuesday, and Helen gives the afternoon report on Wednesday, which one of the following could be the list of the students who give the morning reports on Monday, Tuesday, and Wednesday, respectively?\n\nA) Irving, Lenore, and Nina\nB) Lenore, George, and Irving\nC) Nina, Irving, and Lenore\nD) Robert, George, and Irving\nE) Robert, Irving, and Lenore",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 5",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nOf the eight students\u2014George, Helen, Irving, Kyle, Lenore, Nina, Olivia, and Robert\u2014in a seminar, exactly six will give individual oral reports during three consecutive days\u2014Monday, Tuesday, and Wednesday. Exactly two reports will be given each day\u2014one in the morning and one in the afternoon\u2014according to the following conditions: Tuesday is the only day on which George can give a report. Neither Olivia nor Robert can give an afternoon report. If Nina gives a report, then on the next day Helen and Irving must both give reports, unless Nina's report is given on Wednesday.\n\nIf Helen, Kyle, and Lenore, not necessarily in that order, give the three morning reports, which one of the following must be true?\n\nA) Helen gives a report on Monday.\nB) Irving gives a report on Monday.\nC) Irving gives a report on Wednesday.\nD) Kyle gives a report on Tuesday.\nE) Kyle gives a report on Wednesday.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 6",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nThe organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.\n\nWhich one of the following could be the organizer's selection of works?\n\nA) one French novel, two Russian novels, one French play, one Russian play\nB) two French novels, one Russian novel, two French plays, one Russian play\nC) two French novels, two Russian novels, two French plays\nD) three French novels, one Russian novel, two French plays\nE) three French novels, two Russian novels, one Russian play",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 7",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nThe organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.\n\nWhich one of the following could be true about the organizer's selection of works?\n\nA) No Russian novels are selected.\nB) Exactly one French novel is selected.\nC) All three plays are selected.\nD) All three Russian novels are selected.\nE) All five French works are selected.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 8",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nThe organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.\n\nIf the works selected include three French novels, which one of the following could be a complete and accurate list of the remaining works selected?\n\nA) one Russian novel\nB) two French plays\nC) one Russian novel, one Russian play\nD) one Russian novel, two French plays\nE) two Russian novels, one French play",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_ar - Sample 9",
"description": "Task from inspect_evals/agie_lsat_ar dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nThe organizer of a reading club will select at least five and at most six works from a group of nine works. The group consists of three French novels, three Russian novels, two French plays, and one Russian play. The organizer's selection of works must conform to the following requirements: No more than four French works are selected. At least three but no more than four novels are selected. At least as many French novels as Russian novels are selected. If both French plays are selected, then the Russian play is not selected.\n\nThe organizer must at least select\n\nA) one French novel and one French play\nB) one French novel and one Russian play\nC) one Russian novel and one French play\nD) two French novels\nE) two Russian novels",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_ar",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 0",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nEditorial: The structure of the present school calendar was established to satisfy the requirements of early-twentieth-century agricultural life. In those days, farmers needed their children to have long breaks during which they could remain at home and help with the harvest. The contemporary school year is thus made up of periods of study interspersed with long breaks. But agricultural life no longer occupies most of our citizens, so we can now make changes that serve the interests of children. Therefore, long breaks should be removed from the school calendar.\n\nWhich one of the following is an assumption on which the editorial's argument depends?\n\nA) During long breaks children have a tendency to forget what they have learned.\nB) Children of farmers need to continue observing a school calendar made up of periods of study interspersed with long breaks.\nC) Long breaks in the school calendar should be replaced with breaks that are no longer than workers' average vacations.\nD) A change in the present school calendar that shortened breaks would serve the interests of agricultural life.\nE) A school calendar made up of periods of study without long breaks would serve the interests of children more than a school calendar with long breaks.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 1",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nLeatherbacks, the largest of the sea turtles, when subjected to the conditions of captivity, are susceptible to a wide variety of fatal diseases with which they would never come in contact if they lived in the wild. It is surprising, therefore, that the likelihood that a leatherback will reach its theoretical maximum life expectancy is about the same whether that animal is living in captivity or in the wild.\n\nWhich one of the following, if true, most helps to resolve the apparent discrepancy?\n\nA) Fewer diseases attach leatherbacks than attack other large aquatic reptiles.\nB) The average life expectancy of sea turtles in general is longer than that of almost all other marine animals.\nC) Most leatherbacks that perish in the wild are killed by predators.\nD) Few zoologists have sufficient knowledge to establish an artificial environment that is conducive to the well-being of captive leatherbacks.\nE) The size of a leatherback is an untrustworthy indicator of its age.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 2",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nChairperson: The board of directors of our corporation should not allow the incentives being offered by two foreign governments to entice us to expand our operations into their countries without further consideration of the issue. Although there is an opportunity to increase our profits by expanding our operations there, neither of these countries is politically stable.\n\nThe chairperson's reasoning most closely conforms to which one of the following principles?\n\nA) A corporation should never expand operations into countries that are politically unstable.\nB) Corporations should expand operations into countries when there is a chance of increasing profits.\nC) Political stability is the most important consideration in deciding whether to expand operations into a country.\nD) Corporations should always be cautious about expanding operations into politically unstable countries.\nE) Boards of directors should always disregard governmental incentives when considering where to expand corporate operations.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 3",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nMaria: Thomas Edison was one of the most productive inventors of his time, perhaps of all time. His contributions significantly shaped the development of modern lighting and communication systems. Yet he had only a few months of formal schooling. Therefore, you do not need a formal education to make crucial contributions to technological advancement. Frank: That is definitely not true anymore. Since Edison's day there have been many new developments in technology; to make crucial contributions today you need much more extensive technical knowledge than was needed then.\n\nFrank's reasoning in his response to Maria is most vulnerable to criticism on the grounds that it\n\nA) fails to address the possibility that technical knowledge may be acquired without formal education\nB) does not consider whether there have been improvements in formal education since Edison's day\nC) relies on using the term \"crucial\" differently from the way Maria used it\nD) presumes that no other inventor of Edison's time could have been as productive as Edison\nE) fails to criticize or question any of Maria's statements about Edison",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 4",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIn some countries, there is a free flow of information about infrastructure, agriculture, and industry, whereas in other countries, this information is controlled by a small elite. In the latter countries, the vast majority of the population is denied vital information about factors that determine their welfare. Thus, these countries are likely to experience more frequent economic crises than other countries do.\n\nThe conclusion follows logically if which one of the following is assumed?\n\nA) It is more likely that people without political power will suffer from economic crises than it is that people in power will.\nB) Economic crises become more frequent as the amount of information available to the population about factors determining its welfare decreases.\nC) In nations in which the government controls access to information about infrastructure, agriculture, and industry, economic crises are common.\nD) The higher the percentage of the population that participates in economic decisions, the better those decisions are.\nE) A small elite that controls information about infrastructure, agriculture, and industry is likely to manipulate that information for its own benefit.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 5",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nHana said she was not going to invite her brothers to her birthday party. However, among the gifts Hana received at her party was a recording in which she had expressed an interest. Since her brothers had planned to give her that recording, at least some of Hana's brothers must have been among the guests at Hana's birthday party after all.\n\nA reasoning error in the argument is that the argument\n\nA) disregards the possibility that a change of mind might be justified by a change in circumstances\nB) treats the fact of someone's presence at a given event as a guarantee that that person had a legitimate reason to be at that event\nC) uses a term that is intrinsically evaluative as though that term was purely descriptive\nD) fails to establish that something true of some people is true of only those people\nE) overlooks the possibility that a person's interest in one kind of thing is compatible with that person's interest in a different kind of thing",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 6",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIf you have no keyboarding skills at all, you will not be able to use a computer. And if you are not able to use a computer, you will not be able to write your essays using a word processing program.\n\nIf the statements above are true, which one of the following must be true?\n\nA) If you have some keyboarding skills, you will be able to write your essays using a word processing program.\nB) If you are not able to write your essays using a word processing program, you have no keyboarding skills.\nC) If you are able to write your essays using a word processing program, you have at least some keyboarding skills.\nD) If you are able to use a computer, you will probably be able to write your essays using a word processing program.\nE) If you are not able to write your essays using a word processing program, you are not able to use a computer.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 7",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nRossi: It is undemocratic for people to live under a government in which their interests are not represented. So children should have the right to vote, since sometimes the interests of children are different from those of their parents. Smith: Granted, children's interests are not always the same as their parents'; governmental deficits incurred by their parents' generation will later affect their own generation's standard of living. But even if children are told about the issues affecting them, which is not generally the case, their conceptions of what can or should be done are too simple, and their time horizons are radically different from those of adults, so we cannot give them the responsibility of voting.\n\nWhich one of the following most accurately describes Rossi's argument?\n\nA) It makes an appeal to a general principle.\nB) It denies the good faith of an opponent.\nC) It relies on evaluating the predictable consequences of a proposal.\nD) It substitutes description for giving a rationale for a policy.\nE) It employs a term on two different occasions in different senses.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 8",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nRossi: It is undemocratic for people to live under a government in which their interests are not represented. So children should have the right to vote, since sometimes the interests of children are different from those of their parents. Smith: Granted, children's interests are not always the same as their parents'; governmental deficits incurred by their parents' generation will later affect their own generation's standard of living. But even if children are told about the issues affecting them, which is not generally the case, their conceptions of what can or should be done are too simple, and their time horizons are radically different from those of adults, so we cannot give them the responsibility of voting.\n\nSmith's statements can most directly be used as part of an argument for which one of the following views?\n\nA) A democratic government does not infringe on the rights of any of its citizens.\nB) Children have rights that must be respected by any political authority that rules over them.\nC) News programs for children would give them enough information to enable them to vote in an informed way.\nD) If there are any limitations on full democracy that result from denying the vote to children, such limitations must be accepted.\nE) If parents do not adequately represent their children's interests in the political sphere, those interests will be adequately represented by someone else.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_lr - Sample 9",
"description": "Task from inspect_evals/agie_lsat_lr dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nTo accommodate the personal automobile, houses are built on widely scattered lots far from places of work and shopping malls are equipped with immense parking lots that leave little room for wooded areas. Hence, had people generally not used personal automobiles, the result would have to have been a geography of modern cities quite different from the one we have now.\n\nThe argument's reasoning is questionable because the argument\n\nA) infers from the idea that the current geography of modern cities resulted from a particular cause that it could only have resulted from that cause\nB) infers from the idea that the current geography of modern cities resulted from a particular cause that other facets of modern life resulted from that cause\nC) overlooks the fact that many technological innovations other than the personal automobile have had some effect on the way people live\nD) takes for granted that shopping malls do not need large parking lots even given the use of the personal automobile\nE) takes for granted that people ultimately want to live without personal automobiles",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_lr",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 0",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nWhich one of the following most accurately expresses the main idea of the passage?\n\nA) Some legal scholars defend a morally questionable view that defense lawyers' sole obligation to their clients is to provide the best defense, while it is the court's job to determine guilt or innocence.\nB) Defense lawyers should put aside personal judgments about their clients' guilt when determining how best to proceed when representing a client.\nC) In a democracy, all persons accused of crimes have a right to an attorney who will state the facts, construct sound arguments, and identify flaws in the arguments of opposing counsel.\nD) Lawyers should be mindful of their duty to society as well as to their clients and base the decision as to whether, and how, to defend a client on the facts of the case.\nE) Defense attorneys are obligated to defend clients who request their professional services, especially when the attorney is absolutely convinced of the client's innocence.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 1",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nWhich one of the following most accurately describes the author's attitude toward the twofold obligation introduced in lines 20\u201323?\n\nA) confident that it enables defense lawyers to balance their competing responsibilities to the court and to society\nB) certain that it prevents defense lawyers from representing clients whom they know to be guilty\nC) satisfied that it helps defense lawyers to uncover the relevant facts of a case\nD) pleased that it does not interfere with common defense strategies used by defense lawyers\nE) convinced that it does not represent a conflict of interest for defense lawyers",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 2",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nWhich one of the following sentences would most logically begin a paragraph immediately following the end of the passage?\n\nA) In keeping with this role, defense lawyers should base their cases upon the foundations of honesty, substantive accuracy and selectivity.\nB) Therefore, the practice of law remains morally dubious, in that misrepresentation may achieve acquittal for an attorney's client.\nC) Consequently, the defendant's right to legal representation varies from case to case, depending on the severity of the alleged crime and the defense lawyer's personal interpretation of the case.\nD) Thus, the lawyers' obligations are threefold\u2014 to be faithful to the dictates of the court, society, and themselves by proving their professional worth in securing acquittal for the clients whom they represent.\nE) Therefore, judges or other officials of the court should interrogate defense attorneys regarding any prior knowledge they may have of their clients' innocence or guilt.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 3",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nAccording to the passage, the legal scholars mentioned in lines 15\u201319 believe that it is a defense lawyer's role to be\n\nA) a source of legal information that can help a jury to reach decisions that are fair and equitable\nB) a thorough investigator of all relevant evidence\nC) a diligent representative of the client's position\nD) a facilitator and expediter of the cause of justice\nE) an energetic advocate of the client's right to legal representation",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 4",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nThe relationship of the information contained in the two sentences at lines 28\u201331 to that in the sentence at lines 7\u201311 can most accurately be described as\n\nA) no significant relationship because they represent two unrelated factual statements\nB) the author's opinion opposing another opinion reported by the author in the earlier lines\nC) a hypothetical situation supporting a statement reported by the author in the earlier lines\nD) agreement in general with the earlier position but disagreement over the particulars\nE) essentially equivalent assertions arising from different perspectives",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 5",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nIt can be inferred from the passage that the author holds that a defense attorney who argues in court that a client is innocent\n\nA) should sincerely believe that the client may be innocent\nB) would be right to do so even if the attorney knows that the client is actually guilty\nC) is assuming that role of mouthpiece for the client\nD) has favored the obligation to the client over that to society\nE) has typically not researched the facts of the case thoroughly",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 6",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nIs it necessary for defense lawyers to believe that the clients they defend are innocent of the charges against them? Some legal scholars hold that lawyers' sole obligation is to provide the best defense they are capable of, claiming that in democratic societies all people accused of crimes are entitled to the best possible legal representation. They argue that lawyers have no right to judge defendants because it is the job of the courts to determine guilt or innocence and the job of the lawyer to represent the defendant before the court. They believe that the lawyer's responsibility is to state those facts that will assist each client's case, construct sound arguments based on these facts, and identify flaws in the arguments of opposing counsel. According to these scholars, the lawyer's role is not to express or act on personal opinions but to act as an advocate, saying only what defendants would say if they possessed the proper training or resources with which to represent themselves. But such a position overlooks the fact that the defense lawyer's obligation is twofold: to the defendant, certainly, but no less so to the court and, by extension, to society. For this reason, lawyers, great as their obligation to defendants is, should not, as officers of the court, present to the court assertions that they know to be false. But by the same principle, lawyers who are convinced that their clients are guilty should not undertake to demonstrate their innocence. Guilty defendants should not be entitled to false or insincere representation. When lawyers know with certainty that a defendant is guilty, it is their duty not to deny this. Rather, they should appraise the case as much as possible in their client's favor, after giving due consideration to the facts on the other side, and then present any extenuating circumstances and argue for whatever degree of leniency in sentencing they sincerely believe is warranted. In cases where it is uncertain whether the client is guilty but the lawyer sincerely believes the client may well be innocent, the lawyer should of course try to prove that the client is innocent. The lawyer's obligation to the court and to society also ultimately benefits the defendant, because the \"best defense\" can only truly be provided by an advocate who, after a careful analysis of the facts, is convinced of the merits of the case. The fact that every client is entitled to a defense does not mean that defense lawyers should take every case they are offered. Lawyers should not be mere mouthpieces for a defendant but instead advocates for the rights of the defendant given the facts of the case.\n\nThe primary purpose of the passage is to\n\nA) show that ethical dilemmas in the legal profession can complicate the defense lawyer's role\nB) argue that the defense lawyer's duty to the court and society complements effective legal representation for the client\nC) explain why the actual guilt or innocence of a defendant is not an important issue to many defense attorneys\nD) discuss some of the issues that a defense lawyer must resolve prior to accepting a case\nE) reveal how the practice of law strengthens the values and principles of democratic societies",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 7",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nMany educators in Canada and the United States advocate multicultural education as a means of achieving multicultural understanding. There are, however, a variety of proposals as to what multicultural education should consist of. The most modest of these proposals holds that schools and colleges should promote multicultural understanding by teaching about other cultures, teaching which proceeds from within the context of the majority culture. Students should learn about other cultures, proponents claim, but examination of these cultures should operate with the methods, perspectives, and values of the majority culture. These values are typically those of liberalism: democracy, tolerance, and equality of persons. Critics of this first proposal have argued that genuine understanding of other cultures is impossible if the study of other cultures is refracted through the distorting lens of the majority culture's perspective. Not all cultures share liberal values. Their value systems have arisen in often radically different social and historical circumstances, and thus, these critics argue, cannot be understood and adequately appreciated if one insists on approaching them solely from within the majority culture's perspective. In response to this objection, a second version of multicultural education has developed that differs from the first in holding that multicultural education ought to adopt a neutral stance with respect to the value differences among cultures. The values of one culture should not be standards by which others are judged; each culture should be taken on its own terms. However, the methods of examination, study, and explanation of cultures in this second version of multicultural education are still identifiably Western. They are the methods of anthropology, social psychology, political science, and sociology. They are, that is, methods which derive from the Western scientific perspective and heritage. Critics of this second form of multicultural education argue as follows: The Western scientific heritage is founded upon an epistemological system that prizes the objective over the subjective, the logical over the intuitive, and the empirically verifiable over the mystical. The methods of social-scientific examination of cultures are thus already value laden; the choice to examine and understand other cultures by these methods involves a commitment to certain values such as objectivity. Thus, the second version of multicultural education is not essentially different from the first. Scientific discourse has a privileged place in Western cultures, but the discourses of myth, tradition, religion, and mystical insight are often the dominant forms of thought and language of non-Western cultures. To insist on trying to understand nonscientific cultures by the methods of Western science is not only distorting, but is also an expression of an attempt to maintain a Eurocentric cultural chauvinism: the chauvinism of science. According to this objection, it is only by adopting the (often nonscientific) perspectives and methods of the cultures studied that real understanding can be achieved.\n\nWhich one of the following most accurately states the main point of the passage?\n\nA) Proponents of two proposals for promoting multicultural understanding disagree about both the goal of multicultural education and the means for achieving this goal.\nB) Proponents of two proposals for promoting multicultural understanding claim that education should be founded upon an epistemological system that recognizes the importance of the subjective, the intuitive, and the mystical.\nC) Proponents of two proposals for promoting multicultural understanding claim that it is not enough to refrain from judging non-Western cultures if the methods used to study these cultures are themselves Western.\nD) Critics of two proposals for promoting multicultural understanding disagree about the extent to which a culture's values are a product of its social and historical circumstances.\nE) Critics of two proposals for promoting multicultural understanding claim these proposals are not value neutral and are therefore unable to yield a genuine understanding of cultures with a different value system.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 8",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nMany educators in Canada and the United States advocate multicultural education as a means of achieving multicultural understanding. There are, however, a variety of proposals as to what multicultural education should consist of. The most modest of these proposals holds that schools and colleges should promote multicultural understanding by teaching about other cultures, teaching which proceeds from within the context of the majority culture. Students should learn about other cultures, proponents claim, but examination of these cultures should operate with the methods, perspectives, and values of the majority culture. These values are typically those of liberalism: democracy, tolerance, and equality of persons. Critics of this first proposal have argued that genuine understanding of other cultures is impossible if the study of other cultures is refracted through the distorting lens of the majority culture's perspective. Not all cultures share liberal values. Their value systems have arisen in often radically different social and historical circumstances, and thus, these critics argue, cannot be understood and adequately appreciated if one insists on approaching them solely from within the majority culture's perspective. In response to this objection, a second version of multicultural education has developed that differs from the first in holding that multicultural education ought to adopt a neutral stance with respect to the value differences among cultures. The values of one culture should not be standards by which others are judged; each culture should be taken on its own terms. However, the methods of examination, study, and explanation of cultures in this second version of multicultural education are still identifiably Western. They are the methods of anthropology, social psychology, political science, and sociology. They are, that is, methods which derive from the Western scientific perspective and heritage. Critics of this second form of multicultural education argue as follows: The Western scientific heritage is founded upon an epistemological system that prizes the objective over the subjective, the logical over the intuitive, and the empirically verifiable over the mystical. The methods of social-scientific examination of cultures are thus already value laden; the choice to examine and understand other cultures by these methods involves a commitment to certain values such as objectivity. Thus, the second version of multicultural education is not essentially different from the first. Scientific discourse has a privileged place in Western cultures, but the discourses of myth, tradition, religion, and mystical insight are often the dominant forms of thought and language of non-Western cultures. To insist on trying to understand nonscientific cultures by the methods of Western science is not only distorting, but is also an expression of an attempt to maintain a Eurocentric cultural chauvinism: the chauvinism of science. According to this objection, it is only by adopting the (often nonscientific) perspectives and methods of the cultures studied that real understanding can be achieved.\n\nCritics who raise the objection discussed in the second paragraph would be most likely to agree with which one of the following?\n\nA) The social and historical circumstances that give rise to a culture's values cannot be understood by members of a culture with different values.\nB) The historical and social circumstances of a culture can play an important role in the development of that culture's values.\nC) It is impossible for one culture to successfully study another culture unless it does so from more than one cultural perspective.\nD) Genuine understanding of another culture is impossible unless that culture shares the same cultural values.\nE) The values of liberalism cannot be adequately understood if we approach them solely through the methods of Western science.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_lsat_rc - Sample 9",
"description": "Task from inspect_evals/agie_lsat_rc dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D,E. \n\nMany educators in Canada and the United States advocate multicultural education as a means of achieving multicultural understanding. There are, however, a variety of proposals as to what multicultural education should consist of. The most modest of these proposals holds that schools and colleges should promote multicultural understanding by teaching about other cultures, teaching which proceeds from within the context of the majority culture. Students should learn about other cultures, proponents claim, but examination of these cultures should operate with the methods, perspectives, and values of the majority culture. These values are typically those of liberalism: democracy, tolerance, and equality of persons. Critics of this first proposal have argued that genuine understanding of other cultures is impossible if the study of other cultures is refracted through the distorting lens of the majority culture's perspective. Not all cultures share liberal values. Their value systems have arisen in often radically different social and historical circumstances, and thus, these critics argue, cannot be understood and adequately appreciated if one insists on approaching them solely from within the majority culture's perspective. In response to this objection, a second version of multicultural education has developed that differs from the first in holding that multicultural education ought to adopt a neutral stance with respect to the value differences among cultures. The values of one culture should not be standards by which others are judged; each culture should be taken on its own terms. However, the methods of examination, study, and explanation of cultures in this second version of multicultural education are still identifiably Western. They are the methods of anthropology, social psychology, political science, and sociology. They are, that is, methods which derive from the Western scientific perspective and heritage. Critics of this second form of multicultural education argue as follows: The Western scientific heritage is founded upon an epistemological system that prizes the objective over the subjective, the logical over the intuitive, and the empirically verifiable over the mystical. The methods of social-scientific examination of cultures are thus already value laden; the choice to examine and understand other cultures by these methods involves a commitment to certain values such as objectivity. Thus, the second version of multicultural education is not essentially different from the first. Scientific discourse has a privileged place in Western cultures, but the discourses of myth, tradition, religion, and mystical insight are often the dominant forms of thought and language of non-Western cultures. To insist on trying to understand nonscientific cultures by the methods of Western science is not only distorting, but is also an expression of an attempt to maintain a Eurocentric cultural chauvinism: the chauvinism of science. According to this objection, it is only by adopting the (often nonscientific) perspectives and methods of the cultures studied that real understanding can be achieved.\n\nWhich one of the following most accurately describes the organization of the passage as a whole?\n\nA) Difficulties in achieving a goal are contrasted with the benefits of obtaining that goal.\nB) A goal is argued to be unrealizable by raising objections to the means proposed to achieve it.\nC) Two means for achieving a goal are presented along with an objection to each.\nD) Difficulties in achieving a goal are used to defend several radical revisions to that goal.\nE) The desirability of a goal is used to defend against a number of objections to its feasibility.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_lsat_rc",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 0",
"description": "Task from inspect_evals/agie_math dataset, sample 0",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nLet $\\lambda$ be a constant, $0 \\le \\lambda \\le 4,$ and let $f : [0,1] \\to [0,1]$ be defined by\n\\[f(x) = \\lambda x(1 - x).\\]Find the values of $\\lambda,$ $0 \\le \\lambda \\le 4,$ for which there exists an $x \\in [0,1]$ such that $f(x) \\neq x$ but $f(f(x)) = x.$\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 1",
"description": "Task from inspect_evals/agie_math dataset, sample 1",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nWhat is the coefficient of $x^2y^2$ in the expansion of $(x+y)^4+(x+2y)^4$?\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 2",
"description": "Task from inspect_evals/agie_math dataset, sample 2",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nIn triangle $ABC$, $\\tan \\angle CAB = \\frac{22}{7}$, and the altitude from $A$ divides $\\overline{BC}$ into segments of length $3$ and $17$. What is the area of triangle $ABC$?\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 3",
"description": "Task from inspect_evals/agie_math dataset, sample 3",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nLet $\\mathbf{w} = \\begin{pmatrix} 1 \\\\ 0 \\\\ -3 \\end{pmatrix}.$ The set of vectors $\\mathbf{v}$ such that\n\\[\\operatorname{proj}_{\\mathbf{w}} \\mathbf{v} = \\mathbf{0}\\]lie on a plane. Enter the equation of this plane in the form\n\\[Ax + By + Cz + D = 0,\\]where $A,$ $B,$ $C,$ $D$ are integers such that $A > 0$ and $\\gcd(|A|,|B|,|C|,|D|) = 1.$\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 4",
"description": "Task from inspect_evals/agie_math dataset, sample 4",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nEvaluate $2911_{11}-1392_{11}$. Express your answer in base 11, using A as the digit representing 10 in base 11.\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 5",
"description": "Task from inspect_evals/agie_math dataset, sample 5",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nThe foci of the ellipse $\\frac{x^2}{49} + \\frac{y^2}{33} = 1$ are $F_1$ and $F_2,$ as shown below. Let $P$ be a point on the circle $x^2 + (y - 3)^2 = 4.$ Line $F_2 P$ intersects the ellipse again at $Q,$ where the $y$-coordinate of $Q$ is positive. Find the maximum value of $PQ + F_1 Q.$\n\n[asy]\nunitsize(0.4 cm);\n\npair P, Q;\npair[] F;\n\npath ell = yscale(sqrt(33))*xscale(7)*Circle((0,0),1);\nF[1] = (4,0);\nF[2] = (-4,0);\nP = (0,3) + 2*dir(240);\nQ = intersectionpoint(P--interp(F[2],P,5),ell);\n\ndraw(ell);\ndraw((-8,0)--(8,0));\ndraw((0,-7)--(0,7));\ndraw(Circle((0,3),2));\ndraw(F[1]--Q--F[2]);\n\ndot(\"$F_1$\", F[1], S);\ndot(\"$F_2$\", F[2], S);\ndot(\"$P$\", P, S);\nlabel(\"$Q$\", Q, NE);\n[/asy]\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 6",
"description": "Task from inspect_evals/agie_math dataset, sample 6",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nCompute the area of the region that lies above the graph of $y = |x - 1| + |x - 3|$ but below the graph of $y = 8.$\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 7",
"description": "Task from inspect_evals/agie_math dataset, sample 7",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nIf $f(x)$ is a polynomial of degree 7, and $g(x)$ is a polynomial of degree 7, then what is the product of the minimum and the maximum possible degrees of $f(x) + g(x)$?\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 8",
"description": "Task from inspect_evals/agie_math dataset, sample 8",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nFind the minimum value of $x(x + 1)(x + 2)(x + 3),$ over all real numbers $x.$\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_math - Sample 9",
"description": "Task from inspect_evals/agie_math dataset, sample 9",
"prompt": "\n\nSolve the following math problem step by step. The last line of your response should be of the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem. \n\nFor what ordered pair $(a,b)$ are there infinite solutions $(x,y)$ to the system \\begin{align*}\n3ax+3y&=5b,\\\\\n2x+y&=5.\n\\end{align*}\n\nRemember to put your answer on its own line at the end in the form \"ANSWER: $ANSWER\" (without quotes) where $ANSWER is the answer to the problem, and you do not need to use a \\\\boxed command.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_math",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 0",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAkira came directly, breaking all tradition. Was that it? Had he followed form-had he asked his mother to speak to his father to approach a go-between-would Chie have been more receptive?He came on a winter's eve. He pounded on the door while a cold rain beat on the shuttered veranda, so at first Chie thought him only the wind. The maid knew better. Chie heard her soft scuttling footsteps, the creak of the door. Then the maid brought acalling card to the drawing room, for Chie.Chie was reluctant to go to her guest; perhaps she was feeling too cozy. She and Naomi were reading at a low table set atop a charcoal brazier. A thick quilt spread over the sides of the table so their legs were tucked inside with the heat.\"Who is it at this hour, in this weather?\" Chie questioned as she picked the name card off the maid's lacquer tray.\"Shinoda, Akira. Kobe Dental College,\" she read. Naomi recognized the name. Chie heard a soft intake of air.\"I think you should go,\" said Naomi. twenties, slim and serious, wearing the blackmilitary-style uniform of a student. As he bowed-his hands hanging straight down, a black cap in one, a yellow oil-paper umbrella in the other-Chie glanced beyond him. In the glistening surface of the courtyard's rain-drenched paving 30 stones, she saw his reflection like a dark double.\"Madame,\" said Akira, \"forgive my disruption, but I come with a matter of urgency.\"His voice was soft, refined. He straightened and stole a deferential peek at her face.35 In the dim light his eyes shone with sincerity. Chie felt herself starting to like him.\"Come inside, get out of this nasty night. Surely your business can wait for a moment or two.\"\"I don't want to trouble you. Normally I would 40 approach you more properly but I've received word of a position. I've an opportunity to go to America, as dentist for Seattle's Japanese community.\"\"Congratulations,\" Chie said with amusement. \"That is an opportunity, I'm sure. But how am I 45 involved?\"Even noting Naomi's breathless reaction to the name card, Chie had no idea. Akira's message, delivered like a formal speech, filled her with maternal amusement. You know how children speak50 so earnestly, so hurriedly, so endearingly about things that have no importance in an adult's mind? That's how she viewed him, as a child. It was how she viewed Naomi. Even though Naomi was eighteen and training endlessly in the arts 55 needed to make a good marriage, Chie had made no effort to find her a husband.Akira blushed.\"Depending on your response, I may stay in Japan. I've come to ask for Naomi's hand.\"60 Suddenly Chie felt the dampness of the night.\"Does Naomi know anything of your... ambitions?\"\"We have an understanding. Please don't judge my candidacy by the unseemliness of this proposal. I65 ask directly because the use of a go-between takes much time. Either method comes down to the same thing: a matter of parental approval. If you give your consent, I become Naomi's yoshi. ${ }^{*}$ We'll live in the House of Fuji. Without your consent, I must go to 70 America, to secure a new home for my bride.\"Eager to make his point, he'd been looking her full in the face. Abruptly, his voice turned gentle. \"I see I've startled you. My humble apologies. I'll take no more of your evening. My address is on my card. If 75 you don't wish to contact me, I'll reapproach you in two weeks' time. Until then, good night.\"He bowed and left. Taking her ease, with effortless grace, like a cat making off with a fish.\"Mother?\" Chie heard Naomi's low voice and 80 turned from the door. \"He has asked you?\"The sight of Naomi's clear eyes, her dark brows gave Chie strength. Maybe his hopes were preposterous.\"Where did you meet such a fellow? Imagine! $\\mathrm{He}$ 85 thinks he can marry the Fuji heir and take her to America all in the snap of his fingers!\"Chie waited for Naomi's ripe laughter.Naomi was silent. She stood a full half minute looking straight into Chie's eyes. Finally, she spoke.90 \"I met him at my literary meeting.\"Naomi turned to go back into the house, then stopped.\"Mother.\"\"Yes?\"95 \"I mean to have him.\"\\begin{itemize}\\item a man who marries a woman of higher status and takes her family's name\\end{itemize}\n\nWhich choice best describes what happens in the passage?\n\nA) One character argues with another character who intrudes on her home.\nB) One character receives a surprising request from another character.\nC) One character reminisces about choices she has made over the years.\nD) One character criticizes another character for pursuing an unexpected course of action.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 1",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAkira came directly, breaking all tradition. Was that it? Had he followed form-had he asked his mother to speak to his father to approach a go-between-would Chie have been more receptive?He came on a winter's eve. He pounded on the door while a cold rain beat on the shuttered veranda, so at first Chie thought him only the wind. The maid knew better. Chie heard her soft scuttling footsteps, the creak of the door. Then the maid brought acalling card to the drawing room, for Chie.Chie was reluctant to go to her guest; perhaps she was feeling too cozy. She and Naomi were reading at a low table set atop a charcoal brazier. A thick quilt spread over the sides of the table so their legs were tucked inside with the heat.\"Who is it at this hour, in this weather?\" Chie questioned as she picked the name card off the maid's lacquer tray.\"Shinoda, Akira. Kobe Dental College,\" she read. Naomi recognized the name. Chie heard a soft intake of air.\"I think you should go,\" said Naomi. twenties, slim and serious, wearing the blackmilitary-style uniform of a student. As he bowed-his hands hanging straight down, a black cap in one, a yellow oil-paper umbrella in the other-Chie glanced beyond him. In the glistening surface of the courtyard's rain-drenched paving 30 stones, she saw his reflection like a dark double.\"Madame,\" said Akira, \"forgive my disruption, but I come with a matter of urgency.\"His voice was soft, refined. He straightened and stole a deferential peek at her face.35 In the dim light his eyes shone with sincerity. Chie felt herself starting to like him.\"Come inside, get out of this nasty night. Surely your business can wait for a moment or two.\"\"I don't want to trouble you. Normally I would 40 approach you more properly but I've received word of a position. I've an opportunity to go to America, as dentist for Seattle's Japanese community.\"\"Congratulations,\" Chie said with amusement. \"That is an opportunity, I'm sure. But how am I 45 involved?\"Even noting Naomi's breathless reaction to the name card, Chie had no idea. Akira's message, delivered like a formal speech, filled her with maternal amusement. You know how children speak50 so earnestly, so hurriedly, so endearingly about things that have no importance in an adult's mind? That's how she viewed him, as a child. It was how she viewed Naomi. Even though Naomi was eighteen and training endlessly in the arts 55 needed to make a good marriage, Chie had made no effort to find her a husband.Akira blushed.\"Depending on your response, I may stay in Japan. I've come to ask for Naomi's hand.\"60 Suddenly Chie felt the dampness of the night.\"Does Naomi know anything of your... ambitions?\"\"We have an understanding. Please don't judge my candidacy by the unseemliness of this proposal. I65 ask directly because the use of a go-between takes much time. Either method comes down to the same thing: a matter of parental approval. If you give your consent, I become Naomi's yoshi. ${ }^{*}$ We'll live in the House of Fuji. Without your consent, I must go to 70 America, to secure a new home for my bride.\"Eager to make his point, he'd been looking her full in the face. Abruptly, his voice turned gentle. \"I see I've startled you. My humble apologies. I'll take no more of your evening. My address is on my card. If 75 you don't wish to contact me, I'll reapproach you in two weeks' time. Until then, good night.\"He bowed and left. Taking her ease, with effortless grace, like a cat making off with a fish.\"Mother?\" Chie heard Naomi's low voice and 80 turned from the door. \"He has asked you?\"The sight of Naomi's clear eyes, her dark brows gave Chie strength. Maybe his hopes were preposterous.\"Where did you meet such a fellow? Imagine! $\\mathrm{He}$ 85 thinks he can marry the Fuji heir and take her to America all in the snap of his fingers!\"Chie waited for Naomi's ripe laughter.Naomi was silent. She stood a full half minute looking straight into Chie's eyes. Finally, she spoke.90 \"I met him at my literary meeting.\"Naomi turned to go back into the house, then stopped.\"Mother.\"\"Yes?\"95 \"I mean to have him.\"\\begin{itemize}\\item a man who marries a woman of higher status and takes her family's name\\end{itemize}\n\nWhich choice best describes the developmental pattern of the passage?\n\nA) A careful analysis of a traditional practice\nB) A detailed depiction of a meaningful encounter\nC) A definitive response to a series of questions\nD) A cheerful recounting of an amusing anecdote",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 2",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAkira came directly, breaking all tradition. Was that it? Had he followed form-had he asked his mother to speak to his father to approach a go-between-would Chie have been more receptive?He came on a winter's eve. He pounded on the door while a cold rain beat on the shuttered veranda, so at first Chie thought him only the wind. The maid knew better. Chie heard her soft scuttling footsteps, the creak of the door. Then the maid brought acalling card to the drawing room, for Chie.Chie was reluctant to go to her guest; perhaps she was feeling too cozy. She and Naomi were reading at a low table set atop a charcoal brazier. A thick quilt spread over the sides of the table so their legs were tucked inside with the heat.\"Who is it at this hour, in this weather?\" Chie questioned as she picked the name card off the maid's lacquer tray.\"Shinoda, Akira. Kobe Dental College,\" she read. Naomi recognized the name. Chie heard a soft intake of air.\"I think you should go,\" said Naomi. twenties, slim and serious, wearing the blackmilitary-style uniform of a student. As he bowed-his hands hanging straight down, a black cap in one, a yellow oil-paper umbrella in the other-Chie glanced beyond him. In the glistening surface of the courtyard's rain-drenched paving 30 stones, she saw his reflection like a dark double.\"Madame,\" said Akira, \"forgive my disruption, but I come with a matter of urgency.\"His voice was soft, refined. He straightened and stole a deferential peek at her face.35 In the dim light his eyes shone with sincerity. Chie felt herself starting to like him.\"Come inside, get out of this nasty night. Surely your business can wait for a moment or two.\"\"I don't want to trouble you. Normally I would 40 approach you more properly but I've received word of a position. I've an opportunity to go to America, as dentist for Seattle's Japanese community.\"\"Congratulations,\" Chie said with amusement. \"That is an opportunity, I'm sure. But how am I 45 involved?\"Even noting Naomi's breathless reaction to the name card, Chie had no idea. Akira's message, delivered like a formal speech, filled her with maternal amusement. You know how children speak50 so earnestly, so hurriedly, so endearingly about things that have no importance in an adult's mind? That's how she viewed him, as a child. It was how she viewed Naomi. Even though Naomi was eighteen and training endlessly in the arts 55 needed to make a good marriage, Chie had made no effort to find her a husband.Akira blushed.\"Depending on your response, I may stay in Japan. I've come to ask for Naomi's hand.\"60 Suddenly Chie felt the dampness of the night.\"Does Naomi know anything of your... ambitions?\"\"We have an understanding. Please don't judge my candidacy by the unseemliness of this proposal. I65 ask directly because the use of a go-between takes much time. Either method comes down to the same thing: a matter of parental approval. If you give your consent, I become Naomi's yoshi. ${ }^{*}$ We'll live in the House of Fuji. Without your consent, I must go to 70 America, to secure a new home for my bride.\"Eager to make his point, he'd been looking her full in the face. Abruptly, his voice turned gentle. \"I see I've startled you. My humble apologies. I'll take no more of your evening. My address is on my card. If 75 you don't wish to contact me, I'll reapproach you in two weeks' time. Until then, good night.\"He bowed and left. Taking her ease, with effortless grace, like a cat making off with a fish.\"Mother?\" Chie heard Naomi's low voice and 80 turned from the door. \"He has asked you?\"The sight of Naomi's clear eyes, her dark brows gave Chie strength. Maybe his hopes were preposterous.\"Where did you meet such a fellow? Imagine! $\\mathrm{He}$ 85 thinks he can marry the Fuji heir and take her to America all in the snap of his fingers!\"Chie waited for Naomi's ripe laughter.Naomi was silent. She stood a full half minute looking straight into Chie's eyes. Finally, she spoke.90 \"I met him at my literary meeting.\"Naomi turned to go back into the house, then stopped.\"Mother.\"\"Yes?\"95 \"I mean to have him.\"\\begin{itemize}\\item a man who marries a woman of higher status and takes her family's name\\end{itemize}\n\nWhich reaction does Akira most fear from Chie?\n\nA) She will consider his proposal inappropriate.\nB) She will mistake his earnestness for immaturity.\nC) She will consider his unscheduled visit an imposition.\nD) She will underestimate the sincerity of his emotions",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 3",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAkira came directly, breaking all tradition. Was that it? Had he followed form-had he asked his mother to speak to his father to approach a go-between-would Chie have been more receptive?He came on a winter's eve. He pounded on the door while a cold rain beat on the shuttered veranda, so at first Chie thought him only the wind. The maid knew better. Chie heard her soft scuttling footsteps, the creak of the door. Then the maid brought acalling card to the drawing room, for Chie.Chie was reluctant to go to her guest; perhaps she was feeling too cozy. She and Naomi were reading at a low table set atop a charcoal brazier. A thick quilt spread over the sides of the table so their legs were tucked inside with the heat.\"Who is it at this hour, in this weather?\" Chie questioned as she picked the name card off the maid's lacquer tray.\"Shinoda, Akira. Kobe Dental College,\" she read. Naomi recognized the name. Chie heard a soft intake of air.\"I think you should go,\" said Naomi. twenties, slim and serious, wearing the blackmilitary-style uniform of a student. As he bowed-his hands hanging straight down, a black cap in one, a yellow oil-paper umbrella in the other-Chie glanced beyond him. In the glistening surface of the courtyard's rain-drenched paving 30 stones, she saw his reflection like a dark double.\"Madame,\" said Akira, \"forgive my disruption, but I come with a matter of urgency.\"His voice was soft, refined. He straightened and stole a deferential peek at her face.35 In the dim light his eyes shone with sincerity. Chie felt herself starting to like him.\"Come inside, get out of this nasty night. Surely your business can wait for a moment or two.\"\"I don't want to trouble you. Normally I would 40 approach you more properly but I've received word of a position. I've an opportunity to go to America, as dentist for Seattle's Japanese community.\"\"Congratulations,\" Chie said with amusement. \"That is an opportunity, I'm sure. But how am I 45 involved?\"Even noting Naomi's breathless reaction to the name card, Chie had no idea. Akira's message, delivered like a formal speech, filled her with maternal amusement. You know how children speak50 so earnestly, so hurriedly, so endearingly about things that have no importance in an adult's mind? That's how she viewed him, as a child. It was how she viewed Naomi. Even though Naomi was eighteen and training endlessly in the arts 55 needed to make a good marriage, Chie had made no effort to find her a husband.Akira blushed.\"Depending on your response, I may stay in Japan. I've come to ask for Naomi's hand.\"60 Suddenly Chie felt the dampness of the night.\"Does Naomi know anything of your... ambitions?\"\"We have an understanding. Please don't judge my candidacy by the unseemliness of this proposal. I65 ask directly because the use of a go-between takes much time. Either method comes down to the same thing: a matter of parental approval. If you give your consent, I become Naomi's yoshi. ${ }^{*}$ We'll live in the House of Fuji. Without your consent, I must go to 70 America, to secure a new home for my bride.\"Eager to make his point, he'd been looking her full in the face. Abruptly, his voice turned gentle. \"I see I've startled you. My humble apologies. I'll take no more of your evening. My address is on my card. If 75 you don't wish to contact me, I'll reapproach you in two weeks' time. Until then, good night.\"He bowed and left. Taking her ease, with effortless grace, like a cat making off with a fish.\"Mother?\" Chie heard Naomi's low voice and 80 turned from the door. \"He has asked you?\"The sight of Naomi's clear eyes, her dark brows gave Chie strength. Maybe his hopes were preposterous.\"Where did you meet such a fellow? Imagine! $\\mathrm{He}$ 85 thinks he can marry the Fuji heir and take her to America all in the snap of his fingers!\"Chie waited for Naomi's ripe laughter.Naomi was silent. She stood a full half minute looking straight into Chie's eyes. Finally, she spoke.90 \"I met him at my literary meeting.\"Naomi turned to go back into the house, then stopped.\"Mother.\"\"Yes?\"95 \"I mean to have him.\"\\begin{itemize}\\item a man who marries a woman of higher status and takes her family's name\\end{itemize}\n\nIn the passage, Akira addresses Chie with\n\nA) affection but not genuine love.\nB) objectivity but not complete impartiality.\nC) amusement but not mocking disparagement.\nD) respect but not utter deference.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 4",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAkira came directly, breaking all tradition. Was that it? Had he followed form-had he asked his mother to speak to his father to approach a go-between-would Chie have been more receptive?He came on a winter's eve. He pounded on the door while a cold rain beat on the shuttered veranda, so at first Chie thought him only the wind. The maid knew better. Chie heard her soft scuttling footsteps, the creak of the door. Then the maid brought acalling card to the drawing room, for Chie.Chie was reluctant to go to her guest; perhaps she was feeling too cozy. She and Naomi were reading at a low table set atop a charcoal brazier. A thick quilt spread over the sides of the table so their legs were tucked inside with the heat.\"Who is it at this hour, in this weather?\" Chie questioned as she picked the name card off the maid's lacquer tray.\"Shinoda, Akira. Kobe Dental College,\" she read. Naomi recognized the name. Chie heard a soft intake of air.\"I think you should go,\" said Naomi. twenties, slim and serious, wearing the blackmilitary-style uniform of a student. As he bowed-his hands hanging straight down, a black cap in one, a yellow oil-paper umbrella in the other-Chie glanced beyond him. In the glistening surface of the courtyard's rain-drenched paving 30 stones, she saw his reflection like a dark double.\"Madame,\" said Akira, \"forgive my disruption, but I come with a matter of urgency.\"His voice was soft, refined. He straightened and stole a deferential peek at her face.35 In the dim light his eyes shone with sincerity. Chie felt herself starting to like him.\"Come inside, get out of this nasty night. Surely your business can wait for a moment or two.\"\"I don't want to trouble you. Normally I would 40 approach you more properly but I've received word of a position. I've an opportunity to go to America, as dentist for Seattle's Japanese community.\"\"Congratulations,\" Chie said with amusement. \"That is an opportunity, I'm sure. But how am I 45 involved?\"Even noting Naomi's breathless reaction to the name card, Chie had no idea. Akira's message, delivered like a formal speech, filled her with maternal amusement. You know how children speak50 so earnestly, so hurriedly, so endearingly about things that have no importance in an adult's mind? That's how she viewed him, as a child. It was how she viewed Naomi. Even though Naomi was eighteen and training endlessly in the arts 55 needed to make a good marriage, Chie had made no effort to find her a husband.Akira blushed.\"Depending on your response, I may stay in Japan. I've come to ask for Naomi's hand.\"60 Suddenly Chie felt the dampness of the night.\"Does Naomi know anything of your... ambitions?\"\"We have an understanding. Please don't judge my candidacy by the unseemliness of this proposal. I65 ask directly because the use of a go-between takes much time. Either method comes down to the same thing: a matter of parental approval. If you give your consent, I become Naomi's yoshi. ${ }^{*}$ We'll live in the House of Fuji. Without your consent, I must go to 70 America, to secure a new home for my bride.\"Eager to make his point, he'd been looking her full in the face. Abruptly, his voice turned gentle. \"I see I've startled you. My humble apologies. I'll take no more of your evening. My address is on my card. If 75 you don't wish to contact me, I'll reapproach you in two weeks' time. Until then, good night.\"He bowed and left. Taking her ease, with effortless grace, like a cat making off with a fish.\"Mother?\" Chie heard Naomi's low voice and 80 turned from the door. \"He has asked you?\"The sight of Naomi's clear eyes, her dark brows gave Chie strength. Maybe his hopes were preposterous.\"Where did you meet such a fellow? Imagine! $\\mathrm{He}$ 85 thinks he can marry the Fuji heir and take her to America all in the snap of his fingers!\"Chie waited for Naomi's ripe laughter.Naomi was silent. She stood a full half minute looking straight into Chie's eyes. Finally, she spoke.90 \"I met him at my literary meeting.\"Naomi turned to go back into the house, then stopped.\"Mother.\"\"Yes?\"95 \"I mean to have him.\"\\begin{itemize}\\item a man who marries a woman of higher status and takes her family's name\\end{itemize}\n\nThe main purpose of the first paragraph is to\n\nA) describe a culture.\nB) criticize a tradition.\nC) question a suggestion.\nD) analyze a reaction.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 5",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe chemical formula of deoxyribonucleic acid (DNA) is now well established. The molecule is a very long chain, the backbone of which consists of a regular alternation of sugar and phosphate groups.To each sugar is attached a nitrogenous base, which can be of four different types. Two of the possible bases-adenine and guanine - are purines, and the other two-thymine and cytosine-are pyrimidines. So far as is known, the sequence of bases along the 10 chain is irregular. The monomer unit, consisting of phosphate, sugar and base, is known as a nucleotide.The first feature of our structure which is of biological interest is that it consists not of one chain, but of two. These two chains are both coiled around15 a common fiber axis. It has often been assumed that since there was only one chain in the chemical formula there would only be one in the structural unit. However, the density, taken with the X-ray evidence, suggests very strongly that there are two.The other biologically important feature is the manner in which the two chains are held together. This is done by hydrogen bonds between the bases. The bases are joined together in pairs, a single base from one chain being hydrogen-bonded to a single25 base from the other. The important point is that only certain pairs of bases will fit into the structure.One member of a pair must be a purine and the other a pyrimidine in order to bridge between the two chains. If a pair consisted of two purines, for 30 example, there would not be room for it.We believe that the bases will be present almost entirely in their most probable forms. If this is true, the conditions for forming hydrogen bonds are more restrictive, and the only pairs of bases possible are: 35 adenine with thymine, and guanine with cytosine. Adenine, for example, can occur on either chain; but when it does, its partner on the other chain must always be thymine.The phosphate-sugar backbone of our model is 40 completely regular, but any sequence of the pairs of bases can fit into the structure. It follows that in a long molecule many different permutations are possible, and it therefore seems likely that the precise sequence of bases is the code which carries the45 genetical information. If the actual order of the bases on one of the pair of chains were given, one could write down the exact order of the bases on the other one, because of the specific pairing. Thus one chain is, as it were, the complement of the other, and it is50 this feature which suggests how the deoxyribonucleic acid molecule might duplicate itself.The table shows, for various organisms, the percentage of each of the four types of nitrogenous bases in that organism's DNA.\\begin{center}\\begin{tabular}{|l|c|c|c|c|}\\hline\\multicolumn{5}{|c|}{Base Composition of DNA} \\\\\\hline\\multirow{3}{*}{Organism} & \\multicolumn{4}{|c|}{$\\begin{array}{c}\\text { Percentage of base } \\\\\\text { in organism's DNA }\\end{array}$} \\\\\\cline { 2 - 5 }& $\\begin{array}{c}\\text { adenine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { guanine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { cytosine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { thymine } \\\\ (\\%)\\end{array}$ \\\\\\hline& 26.8 & 22.8 & 23.2 & 27.2 \\\\\\hlineOctopus & 33.2 & 17.6 & 17.6 & 31.6 \\\\\\hlineChicken & 28.0 & 22.0 & 21.6 & 28.4 \\\\\\hlineRat & 28.6 & 21.4 & 20.5 & 28.4 \\\\\\hlineHuman & 29.3 & 20.7 & 20.0 & 30.0 \\\\\\hlineGrasshopper & 29.3 & 20.5 & 20.7 & 29.3 \\\\\\hlineSea urchin & 32.8 & 17.7 & 17.3 & 32.1 \\\\\\hlineWheat & 27.3 & 22.7 & 22.8 & 27.1 \\\\\\hlineYeast & 31.3 & 18.7 & 17.1 & 32.9 \\\\\\hlineE. coli & 24.7 & 26.0 & 25.7 & 23.6 \\\\\\hline\\end{tabular}\\end{center}\n\nThe authors' main purpose of including the information about $\\mathrm{X}$-ray evidence and density is to\n\nA) establish that DNA is the molecule that carries the genetic information.\nB) present an alternate hypothesis about the composition of a nucleotide.\nC) provide support for the authors' claim about the number of chains in a molecule of DNA.\nD) confirm the relationship between the density of DNA and the known chemical formula of DNA.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 6",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe chemical formula of deoxyribonucleic acid (DNA) is now well established. The molecule is a very long chain, the backbone of which consists of a regular alternation of sugar and phosphate groups.To each sugar is attached a nitrogenous base, which can be of four different types. Two of the possible bases-adenine and guanine - are purines, and the other two-thymine and cytosine-are pyrimidines. So far as is known, the sequence of bases along the 10 chain is irregular. The monomer unit, consisting of phosphate, sugar and base, is known as a nucleotide.The first feature of our structure which is of biological interest is that it consists not of one chain, but of two. These two chains are both coiled around15 a common fiber axis. It has often been assumed that since there was only one chain in the chemical formula there would only be one in the structural unit. However, the density, taken with the X-ray evidence, suggests very strongly that there are two.The other biologically important feature is the manner in which the two chains are held together. This is done by hydrogen bonds between the bases. The bases are joined together in pairs, a single base from one chain being hydrogen-bonded to a single25 base from the other. The important point is that only certain pairs of bases will fit into the structure.One member of a pair must be a purine and the other a pyrimidine in order to bridge between the two chains. If a pair consisted of two purines, for 30 example, there would not be room for it.We believe that the bases will be present almost entirely in their most probable forms. If this is true, the conditions for forming hydrogen bonds are more restrictive, and the only pairs of bases possible are: 35 adenine with thymine, and guanine with cytosine. Adenine, for example, can occur on either chain; but when it does, its partner on the other chain must always be thymine.The phosphate-sugar backbone of our model is 40 completely regular, but any sequence of the pairs of bases can fit into the structure. It follows that in a long molecule many different permutations are possible, and it therefore seems likely that the precise sequence of bases is the code which carries the45 genetical information. If the actual order of the bases on one of the pair of chains were given, one could write down the exact order of the bases on the other one, because of the specific pairing. Thus one chain is, as it were, the complement of the other, and it is50 this feature which suggests how the deoxyribonucleic acid molecule might duplicate itself.The table shows, for various organisms, the percentage of each of the four types of nitrogenous bases in that organism's DNA.\\begin{center}\\begin{tabular}{|l|c|c|c|c|}\\hline\\multicolumn{5}{|c|}{Base Composition of DNA} \\\\\\hline\\multirow{3}{*}{Organism} & \\multicolumn{4}{|c|}{$\\begin{array}{c}\\text { Percentage of base } \\\\\\text { in organism's DNA }\\end{array}$} \\\\\\cline { 2 - 5 }& $\\begin{array}{c}\\text { adenine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { guanine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { cytosine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { thymine } \\\\ (\\%)\\end{array}$ \\\\\\hline& 26.8 & 22.8 & 23.2 & 27.2 \\\\\\hlineOctopus & 33.2 & 17.6 & 17.6 & 31.6 \\\\\\hlineChicken & 28.0 & 22.0 & 21.6 & 28.4 \\\\\\hlineRat & 28.6 & 21.4 & 20.5 & 28.4 \\\\\\hlineHuman & 29.3 & 20.7 & 20.0 & 30.0 \\\\\\hlineGrasshopper & 29.3 & 20.5 & 20.7 & 29.3 \\\\\\hlineSea urchin & 32.8 & 17.7 & 17.3 & 32.1 \\\\\\hlineWheat & 27.3 & 22.7 & 22.8 & 27.1 \\\\\\hlineYeast & 31.3 & 18.7 & 17.1 & 32.9 \\\\\\hlineE. coli & 24.7 & 26.0 & 25.7 & 23.6 \\\\\\hline\\end{tabular}\\end{center}\n\nBased on the table and passage, which choice gives the correct percentages of the purines in yeast DNA?\n\nA) $17.1 \\%$ and $18.7 \\%$\nB) $17.1 \\%$ and $32.9 \\%$\nC) $18.7 \\%$ and $31.3 \\%$\nD) $31.3 \\%$ and $32.9 \\%$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 7",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe chemical formula of deoxyribonucleic acid (DNA) is now well established. The molecule is a very long chain, the backbone of which consists of a regular alternation of sugar and phosphate groups.To each sugar is attached a nitrogenous base, which can be of four different types. Two of the possible bases-adenine and guanine - are purines, and the other two-thymine and cytosine-are pyrimidines. So far as is known, the sequence of bases along the 10 chain is irregular. The monomer unit, consisting of phosphate, sugar and base, is known as a nucleotide.The first feature of our structure which is of biological interest is that it consists not of one chain, but of two. These two chains are both coiled around15 a common fiber axis. It has often been assumed that since there was only one chain in the chemical formula there would only be one in the structural unit. However, the density, taken with the X-ray evidence, suggests very strongly that there are two.The other biologically important feature is the manner in which the two chains are held together. This is done by hydrogen bonds between the bases. The bases are joined together in pairs, a single base from one chain being hydrogen-bonded to a single25 base from the other. The important point is that only certain pairs of bases will fit into the structure.One member of a pair must be a purine and the other a pyrimidine in order to bridge between the two chains. If a pair consisted of two purines, for 30 example, there would not be room for it.We believe that the bases will be present almost entirely in their most probable forms. If this is true, the conditions for forming hydrogen bonds are more restrictive, and the only pairs of bases possible are: 35 adenine with thymine, and guanine with cytosine. Adenine, for example, can occur on either chain; but when it does, its partner on the other chain must always be thymine.The phosphate-sugar backbone of our model is 40 completely regular, but any sequence of the pairs of bases can fit into the structure. It follows that in a long molecule many different permutations are possible, and it therefore seems likely that the precise sequence of bases is the code which carries the45 genetical information. If the actual order of the bases on one of the pair of chains were given, one could write down the exact order of the bases on the other one, because of the specific pairing. Thus one chain is, as it were, the complement of the other, and it is50 this feature which suggests how the deoxyribonucleic acid molecule might duplicate itself.The table shows, for various organisms, the percentage of each of the four types of nitrogenous bases in that organism's DNA.\\begin{center}\\begin{tabular}{|l|c|c|c|c|}\\hline\\multicolumn{5}{|c|}{Base Composition of DNA} \\\\\\hline\\multirow{3}{*}{Organism} & \\multicolumn{4}{|c|}{$\\begin{array}{c}\\text { Percentage of base } \\\\\\text { in organism's DNA }\\end{array}$} \\\\\\cline { 2 - 5 }& $\\begin{array}{c}\\text { adenine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { guanine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { cytosine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { thymine } \\\\ (\\%)\\end{array}$ \\\\\\hline& 26.8 & 22.8 & 23.2 & 27.2 \\\\\\hlineOctopus & 33.2 & 17.6 & 17.6 & 31.6 \\\\\\hlineChicken & 28.0 & 22.0 & 21.6 & 28.4 \\\\\\hlineRat & 28.6 & 21.4 & 20.5 & 28.4 \\\\\\hlineHuman & 29.3 & 20.7 & 20.0 & 30.0 \\\\\\hlineGrasshopper & 29.3 & 20.5 & 20.7 & 29.3 \\\\\\hlineSea urchin & 32.8 & 17.7 & 17.3 & 32.1 \\\\\\hlineWheat & 27.3 & 22.7 & 22.8 & 27.1 \\\\\\hlineYeast & 31.3 & 18.7 & 17.1 & 32.9 \\\\\\hlineE. coli & 24.7 & 26.0 & 25.7 & 23.6 \\\\\\hline\\end{tabular}\\end{center}\n\nDo the data in the table support the authors' proposed pairing of bases in DNA?\n\nA) Yes, because for each given organism, the percentage of adenine is closest to the percentage of thymine, and the percentage of guanine is closest to the percentage of cytosine.\nB) Yes, because for each given organism, the percentage of adenine is closest to the percentage of guanine, and the percentage of cytosine is closest to the percentage of thymine.\nC) No, because for each given organism, the percentage of adenine is closest to the percentage of thymine, and the percentage of guanine is closest to the percentage of cytosine.\nD) No, because for each given organism, the percentage of adenine is closest to the percentage of guanine, and the percentage of cytosine is closest to the percentage of thymine. 30",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 8",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe chemical formula of deoxyribonucleic acid (DNA) is now well established. The molecule is a very long chain, the backbone of which consists of a regular alternation of sugar and phosphate groups.To each sugar is attached a nitrogenous base, which can be of four different types. Two of the possible bases-adenine and guanine - are purines, and the other two-thymine and cytosine-are pyrimidines. So far as is known, the sequence of bases along the 10 chain is irregular. The monomer unit, consisting of phosphate, sugar and base, is known as a nucleotide.The first feature of our structure which is of biological interest is that it consists not of one chain, but of two. These two chains are both coiled around15 a common fiber axis. It has often been assumed that since there was only one chain in the chemical formula there would only be one in the structural unit. However, the density, taken with the X-ray evidence, suggests very strongly that there are two.The other biologically important feature is the manner in which the two chains are held together. This is done by hydrogen bonds between the bases. The bases are joined together in pairs, a single base from one chain being hydrogen-bonded to a single25 base from the other. The important point is that only certain pairs of bases will fit into the structure.One member of a pair must be a purine and the other a pyrimidine in order to bridge between the two chains. If a pair consisted of two purines, for 30 example, there would not be room for it.We believe that the bases will be present almost entirely in their most probable forms. If this is true, the conditions for forming hydrogen bonds are more restrictive, and the only pairs of bases possible are: 35 adenine with thymine, and guanine with cytosine. Adenine, for example, can occur on either chain; but when it does, its partner on the other chain must always be thymine.The phosphate-sugar backbone of our model is 40 completely regular, but any sequence of the pairs of bases can fit into the structure. It follows that in a long molecule many different permutations are possible, and it therefore seems likely that the precise sequence of bases is the code which carries the45 genetical information. If the actual order of the bases on one of the pair of chains were given, one could write down the exact order of the bases on the other one, because of the specific pairing. Thus one chain is, as it were, the complement of the other, and it is50 this feature which suggests how the deoxyribonucleic acid molecule might duplicate itself.The table shows, for various organisms, the percentage of each of the four types of nitrogenous bases in that organism's DNA.\\begin{center}\\begin{tabular}{|l|c|c|c|c|}\\hline\\multicolumn{5}{|c|}{Base Composition of DNA} \\\\\\hline\\multirow{3}{*}{Organism} & \\multicolumn{4}{|c|}{$\\begin{array}{c}\\text { Percentage of base } \\\\\\text { in organism's DNA }\\end{array}$} \\\\\\cline { 2 - 5 }& $\\begin{array}{c}\\text { adenine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { guanine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { cytosine } \\\\ (\\%)\\end{array}$ & $\\begin{array}{c}\\text { thymine } \\\\ (\\%)\\end{array}$ \\\\\\hline& 26.8 & 22.8 & 23.2 & 27.2 \\\\\\hlineOctopus & 33.2 & 17.6 & 17.6 & 31.6 \\\\\\hlineChicken & 28.0 & 22.0 & 21.6 & 28.4 \\\\\\hlineRat & 28.6 & 21.4 & 20.5 & 28.4 \\\\\\hlineHuman & 29.3 & 20.7 & 20.0 & 30.0 \\\\\\hlineGrasshopper & 29.3 & 20.5 & 20.7 & 29.3 \\\\\\hlineSea urchin & 32.8 & 17.7 & 17.3 & 32.1 \\\\\\hlineWheat & 27.3 & 22.7 & 22.8 & 27.1 \\\\\\hlineYeast & 31.3 & 18.7 & 17.1 & 32.9 \\\\\\hlineE. coli & 24.7 & 26.0 & 25.7 & 23.6 \\\\\\hline\\end{tabular}\\end{center}\n\nAccording to the table, which of the following pairs of base percentages in sea urchin DNA provides evidence in support of the answer to the previous question?\n\nA) $17.3 \\%$ and $17.7 \\%$\nB) $17.3 \\%$ and $32.1 \\%$\nC) $17.3 \\%$ and $32.8 \\%$\nD) $17.7 \\%$ and $32.8 \\%$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en - Sample 9",
"description": "Task from inspect_evals/agie_sat_en dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nClose at hand is a bridge over the River Thames, an admirable vantage ground for us to make a survey. The river flows beneath; barges pass, laden with timber, bursting with corn; there on one side are 5 the domes and spires of the city; on the other, Westminster and the Houses of Parliament. It is a place to stand on by the hour, dreaming. But not now. Now we are pressed for time. Now we are here to consider facts; now we must fix our eyes upon the10 procession-the procession of the sons of educated men.There they go, our brothers who have been educated at public schools and universities, mounting those steps, passing in and out of those15 doors, ascending those pulpits, preaching, teaching, administering justice, practising medicine, transacting business, making money. It is a solemn sight always - a procession, like a caravanserai crossing a desert. ... But now, for the past twenty20 years or so, it is no longer a sight merely, a photograph, or fresco scrawled upon the walls of time, at which we can look with merely an esthetic appreciation. For there, trapesing along at the tail end of the procession, we go ourselves. And that25 makes a difference. We who have looked so long at the pageant in books, or from a curtained window watched educated men leaving the house at about nine-thirty to go to an office, returning to the house at about six-thirty from an office, need look passively30 no longer. We too can leave the house, can mount those steps, pass in and out of those doors, ... make money, administer justice. ... We who now agitate these humble pens may in another century or two speak from a pulpit. Nobody will dare contradict us35 then; we shall be the mouthpieces of the divine spirit-a solemn thought, is it not? Who can say whether, as time goes on, we may not dress in military uniform, with gold lace on our breasts, swords at our sides, and something like the old40 family coal-scuttle on our heads, save that that venerable object was never decorated with plumes of white horsehair. You laugh-indeed the shadow of the private house still makes those dresses look a little queer. We have worn private clothes so 45 long. ... But we have not come here to laugh, or to talk of fashions-men's and women's. We are here, on the bridge, to ask ourselves certain questions. And they are very important questions; and we have very little time in which to answer them. The0 questions that we have to ask and to answer about that procession during this moment of transition are so important that they may well change the lives of all men and women for ever. For we have to ask ourselves, here and now, do we wish to join that55 procession, or don't we? On what terms shall we join that procession? Above all, where is it leading us, the procession of educated men? The moment is short; it may last five years; ten years, or perhaps only a matter of a few months longer. ... But, you will60 object, you have no time to think; you have your battles to fight, your rent to pay, your bazaars to organize. That excuse shall not serve you, Madam. As you know from your own experience, and there are facts that prove it, the daughters of educated men65 have always done their thinking from hand to mouth; not under green lamps at study tables in the cloisters of secluded colleges. They have thought while they stirred the pot, while they rocked the cradle. It was thus that they won us the right to our70 brand-new sixpence. It falls to us now to go on thinking; how are we to spend that sixpence? Think we must. Let us think in offices; in omnibuses; while we are standing in the crowd watching Coronations and Lord Mayor's Shows; let us think ... in the75 gallery of the House of Commons; in the Law Courts; let us think at baptisms and marriages and funerals. Let us never cease from thinking-what is this \"civilization\" in which we find ourselves? What are these ceremonies and why should we take part in80 them? What are these professions and why should we make money out of them? Where in short is it leading us, the procession of the sons of educated men?\n\nThe main purpose of the passage is to\n\nA) emphasize the value of a tradition.\nB) stress the urgency of an issue.\nC) highlight the severity of social divisions.\nD) question the feasibility of an undertaking",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 0",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nWhich choice best describes what happens in the passage?\n\nA) One character argues with another character who intrudes on her home.\nB) One character receives a surprising request from another character.\nC) One character reminisces about choices she has made over the years.\nD) One character criticizes another character for pursuing an unexpected course of action.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 1",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nWhich choice best describes the developmental pattern of the passage?\n\nA) A careful analysis of a traditional practice\nB) A detailed depiction of a meaningful encounter\nC) A definitive response to a series of questions\nD) A cheerful recounting of an amusing anecdote",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 2",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nWhich reaction does Akira most fear from Chie?\n\nA) She will consider his proposal inappropriate.\nB) She will mistake his earnestness for immaturity.\nC) She will consider his unscheduled visit an imposition.\nD) She will underestimate the sincerity of his emotions",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 3",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nIn the passage, Akira addresses Chie with\n\nA) affection but not genuine love.\nB) objectivity but not complete impartiality.\nC) amusement but not mocking disparagement.\nD) respect but not utter deference.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 4",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe main purpose of the first paragraph is to\n\nA) describe a culture.\nB) criticize a tradition.\nC) question a suggestion.\nD) analyze a reaction.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 5",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe authors' main purpose of including the information about $\\mathrm{X}$-ray evidence and density is to\n\nA) establish that DNA is the molecule that carries the genetic information.\nB) present an alternate hypothesis about the composition of a nucleotide.\nC) provide support for the authors' claim about the number of chains in a molecule of DNA.\nD) confirm the relationship between the density of DNA and the known chemical formula of DNA.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 6",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nBased on the table and passage, which choice gives the correct percentages of the purines in yeast DNA?\n\nA) $17.1 \\%$ and $18.7 \\%$\nB) $17.1 \\%$ and $32.9 \\%$\nC) $18.7 \\%$ and $31.3 \\%$\nD) $31.3 \\%$ and $32.9 \\%$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 7",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nDo the data in the table support the authors' proposed pairing of bases in DNA?\n\nA) Yes, because for each given organism, the percentage of adenine is closest to the percentage of thymine, and the percentage of guanine is closest to the percentage of cytosine.\nB) Yes, because for each given organism, the percentage of adenine is closest to the percentage of guanine, and the percentage of cytosine is closest to the percentage of thymine.\nC) No, because for each given organism, the percentage of adenine is closest to the percentage of thymine, and the percentage of guanine is closest to the percentage of cytosine.\nD) No, because for each given organism, the percentage of adenine is closest to the percentage of guanine, and the percentage of cytosine is closest to the percentage of thymine. 30",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 8",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nAccording to the table, which of the following pairs of base percentages in sea urchin DNA provides evidence in support of the answer to the previous question?\n\nA) $17.3 \\%$ and $17.7 \\%$\nB) $17.3 \\%$ and $32.1 \\%$\nC) $17.3 \\%$ and $32.8 \\%$\nD) $17.7 \\%$ and $32.8 \\%$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_en_without_passage - Sample 9",
"description": "Task from inspect_evals/agie_sat_en_without_passage dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\nThe main purpose of the passage is to\n\nA) emphasize the value of a tradition.\nB) stress the urgency of an issue.\nC) highlight the severity of social divisions.\nD) question the feasibility of an undertaking",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_en_without_passage",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 0",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 0",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\nIf $\\frac{x-1}{3}=k$ and $k=3$, what is the value of $x ?$\n\nA) 2\nB) 4\nC) 9\nD) 10",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "0",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 1",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 1",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\nFor $i=\\sqrt{-1}$, what is the sum $(7+3 i)+(-8+9 i) ?$\n\nA) $-1+12 i$\nB) $-1-6 i$\nC) $15+12 i$\nD) $15-6 i$ 3",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "1",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 2",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 2",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\nOn Saturday afternoon, Armand sent $m$ text messages each hour for 5 hours, and Tyrone sent $p$ text messages each hour for 4 hours. Which of the following represents the total number of messages sent by Armand and Tyrone on Saturday afternoon?\n\nA) $9 m p$\nB) $20 m p$\nC) $5 m+4 p$\nD) $4 m+5 p$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "2",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 3",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 3",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\nKathy is a repair technician for a phone company. Each week, she receives a batch of phones that need repairs. The number of phones that she has left to fix at the end of each day can be estimated with the equation $P=108-23 d$, where $P$ is the number of phones left and $d$ is the number of days she has worked that week. What is the meaning of the value 108 in this equation?\n\nA) Kathy will complete the repairs within 108 days.\nB) Kathy starts each week with 108 phones to fix.\nC) Kathy repairs phones at a rate of 108 per hour.\nD) Kathy repairs phones at a rate of 108 per day.",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "3",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 4",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 4",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\n$$\\left(x^{2} y-3 y^{2}+5 x y^{2}\\right)-\\left(-x^{2} y+3 x y^{2}-3 y^{2}\\right)$$Which of the following is equivalent to the expression above?\n\nA) $4 x^{2} y^{2}$\nB) $8 x y^{2}-6 y^{2}$\nC) $2 x^{2} y+2 x y^{2}$\nD) $2 x^{2} y+8 x y^{2}-6 y^{2}$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "4",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 5",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 5",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\n$$h=3 a+28.6$$A pediatrician uses the model above to estimate the height $h$ of a boy, in inches, in terms of the boy's age $a$, in years, between the ages of 2 and 5. Based on the model, what is the estimated increase, in inches, of a boy's height each year?\n\nA) 3\nB) $\\quad 5.7$\nC) 9.5\nD) 14.3",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "5",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 6",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 6",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\n$$m=\\frac{\\left(\\frac{r}{1,200}\\right)\\left(1+\\frac{r}{1,200}\\right)^{N}}{\\left(1+\\frac{r}{1,200}\\right)^{N}-1} P$$The formula above gives the monthly payment $m$ needed to pay off a loan of $P$ dollars at $r$ percent annual interest over $N$ months. Which of the following gives $P$ in terms of $m, r$, and $N$ ?\n\nA) $P=\\frac{\\left(\\frac{r}{1,200}\\right)\\left(1+\\frac{r}{1,200}\\right)^{N}}{\\left(1+\\frac{r}{1,200}\\right)^{N}-1} m$\nB) $P=\\frac{\\left(1+\\frac{r}{1,200}\\right)^{N}-1}{\\left(\\frac{r}{1,200}\\right)\\left(1+\\frac{r}{1,200}\\right)^{N}} m$\nC) $P=\\left(\\frac{r}{1,200}\\right) m$\nD) $P=\\left(\\frac{1,200}{r}\\right) m$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "6",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 7",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 7",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\nIf $\\frac{a}{b}=2$, what is the value of $\\frac{4 b}{a} ?$\n\nA) 0\nB) 1\nC) 2\nD) 4",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "7",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 8",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 8",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\n$$\\begin{array}{r}3 x+4 y=-23 \\\\2 y-x=-19\\end{array}$$What is the solution $(x, y)$ to the system of equations above?\n\nA) $(-5,-2)$\nB) $(3,-8)$\nC) $(4,-6)$\nD) $(9,-6)$",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "8",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
},
{
"name": "inspect_evals/agie_sat_math - Sample 9",
"description": "Task from inspect_evals/agie_sat_math dataset, sample 9",
"prompt": "\n\nAnswer the following multiple choice question. The last line of your response should be of the following format: 'ANSWER: $LETTER' (without quotes) where LETTER is one of A,B,C,D. \n\n\n\n$$g(x)=a x^{2}+24$$For the function $g$ defined above, $a$ is a constant and $g(4)=8$. What is the value of $g(-4)$ ?\n\nA) 8\nB) 0\nC) -1\nD) -8",
"mcp_config": {
"inspect": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-v",
"/var/run/docker.sock:/var/run/docker.sock",
"-v",
"/home/genteki/.cache/inspect_evals:/root/.cache/inspect_evals",
"hud-inspect:latest"
]
}
},
"setup_tool": {
"name": "load_task",
"arguments": {
"task_name": "inspect_evals/agie_sat_math",
"sample_id": "9",
"model": "claude-sonnet-4-20250514"
}
},
"evaluate_tool": {
"name": "score_task",
"arguments": {}
},
"agent_config": {
"agent_class": "server.agents.InspectAgent",
"disallowed_tools": [
"_store_agent_message",
"load_task",
"score_task"
],
"allowed_tools": [],
"initial_screenshot": false
},
"system_prompt": "You are a helpful AI assistant. Follow the instructions in the user messages carefully."
}
] |