File size: 135,794 Bytes
a80f6e6 | 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 | import React from 'react';
import clsx from 'clsx';
import {useLocation} from 'react-router-dom';
function LegacyBadge() {
return (
<span className="badge badge--secondary">LEGACY</span>
);
}
export default function NotFoundContent({className}) {
const location = useLocation();
const pathname = location.pathname.endsWith('/') ? location.pathname : location.pathname + '/'; // Ensure the path matches the keys in suggestedLinks
const {canonical, alternative} = suggestedLinks[pathname] || {};
return (
<main className={clsx('container margin-vert--xl', className)}>
<div className="row">
<div className="col col--6 col--offset-3">
<h1 className="hero__title">
{canonical ? 'Page Moved' : alternative ? 'Page Removed' : 'Page Not Found'}
</h1>
{
canonical ? (
<h3>You can find the new location <a href={canonical}>here</a>.</h3>
) : alternative ? (
<p>The page you were looking for has been removed.</p>
) : (
<p>We could not find what you were looking for.</p>
)
}
{alternative && (
<p>
<details>
<summary>Alternative pages</summary>
<ul>
{alternative.map((alt, index) => (
<li key={index}>
<a href={alt}>{alt}</a>{alt.startsWith('/v0.1/') && <>{' '}<LegacyBadge/></>}
</li>
))}
</ul>
</details>
</p>
)}
<p>
Please contact the owner of the site that linked you to the
original URL and let them know their link {canonical ? 'has moved.' : alternative ? 'has been removed.' : 'is broken.'}
</p>
</div>
</div>
</main>
);
}
const suggestedLinks = {
"/docs/changelog/core/": {
"canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain-core%3D%3D0%22&expanded=true",
"alternative": [
"/v0.1/docs/changelog/core/"
]
},
"/docs/changelog/langchain/": {
"canonical": "https://github.com/langchain-ai/langchain/releases?q=tag:%22langchain%3D%3D0%22&expanded=true",
"alternative": [
"/v0.1/docs/changelog/langchain/"
]
},
"/docs/contributing/documentation/technical_logistics/": {
"canonical": "/docs/contributing/how_to/documentation/",
"alternative": [
"/v0.1/docs/contributing/documentation/technical_logistics/"
]
},
"/docs/cookbook/": {
"canonical": "/docs/tutorials/",
"alternative": [
"/v0.1/docs/cookbook/"
]
},
"/docs/expression_language/": {
"canonical": "/docs/how_to/#langchain-expression-language-lcel",
"alternative": [
"/v0.1/docs/expression_language/"
]
},
"/docs/expression_language/cookbook/code_writing/": {
"canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/",
"alternative": [
"/v0.1/docs/expression_language/cookbook/code_writing/"
]
},
"/docs/expression_language/cookbook/multiple_chains/": {
"canonical": "/docs/how_to/parallel/",
"alternative": [
"/v0.1/docs/expression_language/cookbook/multiple_chains/"
]
},
"/docs/expression_language/cookbook/prompt_llm_parser/": {
"canonical": "/docs/tutorials/llm_chain/",
"alternative": [
"/v0.1/docs/expression_language/cookbook/prompt_llm_parser/"
]
},
"/docs/expression_language/cookbook/prompt_size/": {
"canonical": "/docs/how_to/trim_messages/",
"alternative": [
"/v0.1/docs/expression_language/cookbook/prompt_size/"
]
},
"/docs/expression_language/get_started/": {
"canonical": "/docs/how_to/sequence/",
"alternative": [
"/v0.1/docs/expression_language/get_started/"
]
},
"/docs/expression_language/how_to/decorator/": {
"canonical": "/docs/how_to/functions/#the-convenience-chain-decorator",
"alternative": [
"/v0.1/docs/expression_language/how_to/decorator/"
]
},
"/docs/expression_language/how_to/inspect/": {
"canonical": "/docs/how_to/inspect/",
"alternative": [
"/v0.1/docs/expression_language/how_to/inspect/"
]
},
"/docs/expression_language/how_to/message_history/": {
"canonical": "/docs/how_to/message_history/",
"alternative": [
"/v0.1/docs/expression_language/how_to/message_history/"
]
},
"/docs/expression_language/how_to/routing/": {
"canonical": "/docs/how_to/routing/",
"alternative": [
"/v0.1/docs/expression_language/how_to/routing/"
]
},
"/docs/expression_language/interface/": {
"canonical": "/docs/how_to/lcel_cheatsheet/",
"alternative": [
"/v0.1/docs/expression_language/interface/"
]
},
"/docs/expression_language/primitives/": {
"canonical": "/docs/how_to/#langchain-expression-language-lcel",
"alternative": [
"/v0.1/docs/expression_language/primitives/"
]
},
"/docs/expression_language/primitives/assign/": {
"canonical": "/docs/how_to/assign/",
"alternative": [
"/v0.1/docs/expression_language/primitives/assign/"
]
},
"/docs/expression_language/primitives/binding/": {
"canonical": "/docs/how_to/binding/",
"alternative": [
"/v0.1/docs/expression_language/primitives/binding/"
]
},
"/docs/expression_language/primitives/configure/": {
"canonical": "/docs/how_to/configure/",
"alternative": [
"/v0.1/docs/expression_language/primitives/configure/"
]
},
"/docs/expression_language/primitives/functions/": {
"canonical": "/docs/how_to/functions/",
"alternative": [
"/v0.1/docs/expression_language/primitives/functions/"
]
},
"/docs/expression_language/primitives/parallel/": {
"canonical": "/docs/how_to/parallel/",
"alternative": [
"/v0.1/docs/expression_language/primitives/parallel/"
]
},
"/docs/expression_language/primitives/passthrough/": {
"canonical": "/docs/how_to/passthrough/",
"alternative": [
"/v0.1/docs/expression_language/primitives/passthrough/"
]
},
"/docs/expression_language/primitives/sequence/": {
"canonical": "/docs/how_to/sequence/",
"alternative": [
"/v0.1/docs/expression_language/primitives/sequence/"
]
},
"/docs/expression_language/streaming/": {
"canonical": "/docs/how_to/streaming/",
"alternative": [
"/v0.1/docs/expression_language/streaming/"
]
},
"/docs/expression_language/why/": {
"canonical": "/docs/concepts/#langchain-expression-language-lcel",
"alternative": [
"/v0.1/docs/expression_language/why/"
]
},
"/docs/get_started/installation/": {
"canonical": "/docs/tutorials/",
"alternative": [
"/v0.1/docs/get_started/installation/"
]
},
"/docs/get_started/introduction/": {
"canonical": "/docs/tutorials/",
"alternative": [
"/v0.1/docs/get_started/introduction/"
]
},
"/docs/get_started/quickstart/": {
"canonical": "/docs/tutorials/",
"alternative": [
"/v0.1/docs/get_started/quickstart/"
]
},
"/docs/guides/": {
"canonical": "/docs/how_to/",
"alternative": [
"/v0.1/docs/guides/"
]
},
"/docs/guides/development/": {
"canonical": "/docs/how_to/debugging/",
"alternative": [
"/v0.1/docs/guides/development/"
]
},
"/docs/guides/development/debugging/": {
"canonical": "/docs/how_to/debugging/",
"alternative": [
"/v0.1/docs/guides/development/debugging/"
]
},
"/docs/guides/development/extending_langchain/": {
"canonical": "/docs/how_to/#custom",
"alternative": [
"/v0.1/docs/guides/development/extending_langchain/"
]
},
"/docs/guides/development/local_llms/": {
"canonical": "/docs/how_to/local_llms/",
"alternative": [
"/v0.1/docs/guides/development/local_llms/"
]
},
"/docs/guides/development/pydantic_compatibility/": {
"canonical": "/docs/how_to/pydantic_compatibility/",
"alternative": [
"/v0.1/docs/guides/development/pydantic_compatibility/"
]
},
"/docs/guides/productionization/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/"
]
},
"/docs/guides/productionization/deployments/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/deployments/"
]
},
"/docs/guides/productionization/deployments/template_repos/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/deployments/template_repos/"
]
},
"/docs/guides/productionization/evaluation/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/"
]
},
"/docs/guides/productionization/evaluation/comparison/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/comparison/"
]
},
"/docs/guides/productionization/evaluation/comparison/custom/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/comparison/custom/"
]
},
"/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/"
]
},
"/docs/guides/productionization/evaluation/comparison/pairwise_string/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_string/"
]
},
"/docs/guides/productionization/evaluation/examples/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/examples/"
]
},
"/docs/guides/productionization/evaluation/examples/comparisons/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/examples/comparisons/"
]
},
"/docs/guides/productionization/evaluation/string/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/"
]
},
"/docs/guides/productionization/evaluation/string/criteria_eval_chain/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/criteria_eval_chain/"
]
},
"/docs/guides/productionization/evaluation/string/custom/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/custom/"
]
},
"/docs/guides/productionization/evaluation/string/embedding_distance/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/"
]
},
"/docs/guides/productionization/evaluation/string/exact_match/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/exact_match/"
]
},
"/docs/guides/productionization/evaluation/string/json/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/json/"
]
},
"/docs/guides/productionization/evaluation/string/regex_match/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/regex_match/"
]
},
"/docs/guides/productionization/evaluation/string/scoring_eval_chain/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/scoring_eval_chain/"
]
},
"/docs/guides/productionization/evaluation/string/string_distance/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/string/string_distance/"
]
},
"/docs/guides/productionization/evaluation/trajectory/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/trajectory/"
]
},
"/docs/guides/productionization/evaluation/trajectory/custom/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/trajectory/custom/"
]
},
"/docs/guides/productionization/evaluation/trajectory/trajectory_eval/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/evaluation/trajectory/trajectory_eval/"
]
},
"/docs/guides/productionization/fallbacks/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/fallbacks/"
]
},
"/docs/guides/productionization/safety/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/"
]
},
"/docs/guides/productionization/safety/amazon_comprehend_chain/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/amazon_comprehend_chain/"
]
},
"/docs/guides/productionization/safety/constitutional_chain/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/constitutional_chain/"
]
},
"/docs/guides/productionization/safety/hugging_face_prompt_injection/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/hugging_face_prompt_injection/"
]
},
"/docs/guides/productionization/safety/layerup_security/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/layerup_security/"
]
},
"/docs/guides/productionization/safety/logical_fallacy_chain/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/logical_fallacy_chain/"
]
},
"/docs/guides/productionization/safety/moderation/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/moderation/"
]
},
"/docs/guides/productionization/safety/presidio_data_anonymization/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/"
]
},
"/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/"
]
},
"/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/"
]
},
"/docs/guides/productionization/safety/presidio_data_anonymization/reversible/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/reversible/"
]
},
"/docs/integrations/chat/ollama_functions/": {
"canonical": "/docs/integrations/chat/ollama/",
"alternative": [
"/v0.1/docs/integrations/chat/ollama_functions/"
]
},
"/docs/integrations/document_loaders/notiondb/": {
"canonical": "/docs/integrations/document_loaders/notion/",
"alternative": [
"/v0.1/docs/integrations/document_loaders/notiondb/"
]
},
"/docs/integrations/llms/llm_caching/": {
"canonical": "/docs/how_to/llm_caching/",
"alternative": [
"/v0.1/docs/integrations/llms/llm_caching/"
]
},
"/docs/integrations/providers/vectara/vectara_summary/": {
"canonical": "/docs/integrations/providers/vectara/",
"alternative": [
"/v0.1/docs/integrations/providers/vectara/vectara_summary/"
]
},
"/docs/integrations/text_embedding/nemo/": {
"canonical": "/docs/integrations/text_embedding/nvidia_ai_endpoints/",
"alternative": [
"/v0.1/docs/integrations/text_embedding/nemo/"
]
},
"/docs/integrations/toolkits/": {
"canonical": "/docs/integrations/tools/",
"alternative": [
"/v0.1/docs/integrations/toolkits/"
]
},
"/docs/integrations/toolkits/ainetwork/": {
"canonical": "/docs/integrations/tools/ainetwork/",
"alternative": [
"/v0.1/docs/integrations/toolkits/ainetwork/"
]
},
"/docs/integrations/toolkits/airbyte_structured_qa/": {
"canonical": "/docs/integrations/document_loaders/airbyte/",
"alternative": [
"/v0.1/docs/integrations/toolkits/airbyte_structured_qa/"
]
},
"/docs/integrations/toolkits/amadeus/": {
"canonical": "/docs/integrations/tools/amadeus/",
"alternative": [
"/v0.1/docs/integrations/toolkits/amadeus/"
]
},
"/docs/integrations/toolkits/azure_ai_services/": {
"canonical": "/docs/integrations/tools/azure_ai_services/",
"alternative": [
"/v0.1/docs/integrations/toolkits/azure_ai_services/"
]
},
"/docs/integrations/toolkits/azure_cognitive_services/": {
"canonical": "/docs/integrations/tools/azure_cognitive_services/",
"alternative": [
"/v0.1/docs/integrations/toolkits/azure_cognitive_services/"
]
},
"/docs/integrations/toolkits/cassandra_database/": {
"canonical": "/docs/integrations/tools/cassandra_database/",
"alternative": [
"/v0.1/docs/integrations/toolkits/cassandra_database/"
]
},
"/docs/integrations/toolkits/clickup/": {
"canonical": "/docs/integrations/tools/clickup/",
"alternative": [
"/v0.1/docs/integrations/toolkits/clickup/"
]
},
"/docs/integrations/toolkits/cogniswitch/": {
"canonical": "/docs/integrations/tools/cogniswitch/",
"alternative": [
"/v0.1/docs/integrations/toolkits/cogniswitch/"
]
},
"/docs/integrations/toolkits/connery/": {
"canonical": "/docs/integrations/tools/connery/",
"alternative": [
"/v0.1/docs/integrations/toolkits/connery/"
]
},
"/docs/integrations/toolkits/csv/": {
"canonical": "/docs/integrations/document_loaders/csv/",
"alternative": [
"/v0.1/docs/integrations/toolkits/csv/"
]
},
"/docs/integrations/toolkits/document_comparison_toolkit/": {
"canonical": null,
"alternative": [
"/v0.1/docs/integrations/toolkits/document_comparison_toolkit/"
]
},
"/docs/integrations/toolkits/github/": {
"canonical": "/docs/integrations/tools/github/",
"alternative": [
"/v0.1/docs/integrations/toolkits/github/"
]
},
"/docs/integrations/toolkits/gitlab/": {
"canonical": "/docs/integrations/tools/gitlab/",
"alternative": [
"/v0.1/docs/integrations/toolkits/gitlab/"
]
},
"/docs/integrations/toolkits/gmail/": {
"canonical": "/docs/integrations/tools/gmail/",
"alternative": [
"/v0.1/docs/integrations/toolkits/gmail/"
]
},
"/docs/integrations/toolkits/jira/": {
"canonical": "/docs/integrations/tools/jira/",
"alternative": [
"/v0.1/docs/integrations/toolkits/jira/"
]
},
"/docs/integrations/toolkits/json/": {
"canonical": "/docs/integrations/tools/json/",
"alternative": [
"/v0.1/docs/integrations/toolkits/json/"
]
},
"/docs/integrations/toolkits/multion/": {
"canonical": "/docs/integrations/tools/multion/",
"alternative": [
"/v0.1/docs/integrations/toolkits/multion/"
]
},
"/docs/integrations/toolkits/nasa/": {
"canonical": "/docs/integrations/tools/nasa/",
"alternative": [
"/v0.1/docs/integrations/toolkits/nasa/"
]
},
"/docs/integrations/toolkits/office365/": {
"canonical": "/docs/integrations/tools/office365/",
"alternative": [
"/v0.1/docs/integrations/toolkits/office365/"
]
},
"/docs/integrations/toolkits/openapi_nla/": {
"canonical": "/docs/integrations/tools/openapi_nla/",
"alternative": [
"/v0.1/docs/integrations/toolkits/openapi_nla/"
]
},
"/docs/integrations/toolkits/openapi/": {
"canonical": "/docs/integrations/tools/openapi/",
"alternative": [
"/v0.1/docs/integrations/toolkits/openapi/"
]
},
"/docs/integrations/toolkits/pandas/": {
"canonical": "/docs/integrations/tools/pandas/",
"alternative": [
"/v0.1/docs/integrations/toolkits/pandas/"
]
},
"/docs/integrations/toolkits/playwright/": {
"canonical": "/docs/integrations/tools/playwright/",
"alternative": [
"/v0.1/docs/integrations/toolkits/playwright/"
]
},
"/docs/integrations/toolkits/polygon/": {
"canonical": "/docs/integrations/tools/polygon/",
"alternative": [
"/v0.1/docs/integrations/toolkits/polygon/"
]
},
"/docs/integrations/toolkits/powerbi/": {
"canonical": "/docs/integrations/tools/powerbi/",
"alternative": [
"/v0.1/docs/integrations/toolkits/powerbi/"
]
},
"/docs/integrations/toolkits/python/": {
"canonical": "/docs/integrations/tools/python/",
"alternative": [
"/v0.1/docs/integrations/toolkits/python/"
]
},
"/docs/integrations/toolkits/robocorp/": {
"canonical": "/docs/integrations/tools/robocorp/",
"alternative": [
"/v0.1/docs/integrations/toolkits/robocorp/"
]
},
"/docs/integrations/toolkits/slack/": {
"canonical": "/docs/integrations/tools/slack/",
"alternative": [
"/v0.1/docs/integrations/toolkits/slack/"
]
},
"/docs/integrations/toolkits/spark_sql/": {
"canonical": "/docs/integrations/tools/spark_sql/",
"alternative": [
"/v0.1/docs/integrations/toolkits/spark_sql/"
]
},
"/docs/integrations/toolkits/spark/": {
"canonical": "/docs/integrations/tools/spark_sql/",
"alternative": [
"/v0.1/docs/integrations/toolkits/spark/"
]
},
"/docs/integrations/toolkits/sql_database/": {
"canonical": "/docs/integrations/tools/sql_database/",
"alternative": [
"/v0.1/docs/integrations/toolkits/sql_database/"
]
},
"/docs/integrations/toolkits/steam/": {
"canonical": "/docs/integrations/tools/steam/",
"alternative": [
"/v0.1/docs/integrations/toolkits/steam/"
]
},
"/docs/integrations/toolkits/xorbits/": {
"canonical": null,
"alternative": [
"/v0.1/docs/integrations/toolkits/xorbits/"
]
},
"/docs/integrations/tools/apify/": {
"canonical": "/docs/integrations/providers/apify/#utility",
"alternative": [
"/v0.1/docs/integrations/tools/apify/"
]
},
"/docs/integrations/tools/search_tools/": {
"canonical": "/docs/integrations/tools/#search",
"alternative": [
"/v0.1/docs/integrations/tools/search_tools/"
]
},
"/docs/langsmith/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/langsmith/"
]
},
"/docs/langsmith/walkthrough/": {
"canonical": "https://docs.smith.langchain.com/",
"alternative": [
"/v0.1/docs/langsmith/walkthrough/"
]
},
"/docs/modules/": {
"canonical": "/docs/how_to/#components",
"alternative": [
"/v0.1/docs/modules/"
]
},
"/docs/modules/agents/": {
"canonical": "/docs/how_to/#agents",
"alternative": [
"/v0.1/docs/modules/agents/"
]
},
"/docs/modules/agents/agent_types/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/"
]
},
"/docs/modules/agents/agent_types/json_agent/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/json_agent/"
]
},
"/docs/modules/agents/agent_types/openai_assistants/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/openai_assistants/"
]
},
"/docs/modules/agents/agent_types/openai_functions_agent/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/openai_functions_agent/"
]
},
"/docs/modules/agents/agent_types/openai_tools/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/openai_tools/"
]
},
"/docs/modules/agents/agent_types/react/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/react/"
]
},
"/docs/modules/agents/agent_types/self_ask_with_search/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/self_ask_with_search/"
]
},
"/docs/modules/agents/agent_types/structured_chat/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/structured_chat/"
]
},
"/docs/modules/agents/agent_types/tool_calling/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/tool_calling/"
]
},
"/docs/modules/agents/agent_types/xml_agent/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/agent_types/xml_agent/"
]
},
"/docs/modules/agents/concepts/": {
"canonical": "https://langchain-ai.github.io/langgraph/concepts/",
"alternative": [
"/v0.1/docs/modules/agents/concepts/"
]
},
"/docs/modules/agents/how_to/agent_iter/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/agent_iter/"
]
},
"/docs/modules/agents/how_to/agent_structured/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/agent_structured/"
]
},
"/docs/modules/agents/how_to/custom_agent/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/custom_agent/"
]
},
"/docs/modules/agents/how_to/handle_parsing_errors/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/handle_parsing_errors/"
]
},
"/docs/modules/agents/how_to/intermediate_steps/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/intermediate_steps/"
]
},
"/docs/modules/agents/how_to/max_iterations/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/max_iterations/"
]
},
"/docs/modules/agents/how_to/max_time_limit/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/max_time_limit/"
]
},
"/docs/modules/agents/how_to/streaming/": {
"canonical": "/docs/how_to/migrate_agent/",
"alternative": [
"/v0.1/docs/modules/agents/how_to/streaming/"
]
},
"/docs/modules/agents/quick_start/": {
"canonical": "https://langchain-ai.github.io/langgraph/",
"alternative": [
"/v0.1/docs/modules/agents/quick_start/"
]
},
"/docs/modules/callbacks/": {
"canonical": "/docs/how_to/#callbacks",
"alternative": [
"/v0.1/docs/modules/callbacks/"
]
},
"/docs/modules/callbacks/async_callbacks/": {
"canonical": "/docs/how_to/callbacks_async/",
"alternative": [
"/v0.1/docs/modules/callbacks/async_callbacks/"
]
},
"/docs/modules/callbacks/custom_callbacks/": {
"canonical": "/docs/how_to/custom_callbacks/",
"alternative": [
"/v0.1/docs/modules/callbacks/custom_callbacks/"
]
},
"/docs/modules/callbacks/filecallbackhandler/": {
"canonical": null,
"alternative": [
"/v0.1/docs/modules/callbacks/filecallbackhandler/"
]
},
"/docs/modules/callbacks/multiple_callbacks/": {
"canonical": "/docs/how_to/#callbacks",
"alternative": [
"/v0.1/docs/modules/callbacks/multiple_callbacks/"
]
},
"/docs/modules/callbacks/tags/": {
"canonical": null,
"alternative": [
"/v0.1/docs/modules/callbacks/tags/"
]
},
"/docs/modules/callbacks/token_counting/": {
"canonical": "/docs/how_to/chat_token_usage_tracking/",
"alternative": [
"/v0.1/docs/modules/callbacks/token_counting/"
]
},
"/docs/modules/chains/": {
"canonical": "/docs/versions/migrating_chains/",
"alternative": [
"/v0.1/docs/modules/chains/"
]
},
"/docs/modules/composition/": {
"canonical": "https://langchain-ai.github.io/langgraph/concepts/",
"alternative": [
"/v0.1/docs/modules/composition/"
]
},
"/docs/modules/data_connection/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/modules/data_connection/"
]
},
"/docs/modules/data_connection/document_loaders/": {
"canonical": "/docs/how_to/#document-loaders",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/"
]
},
"/docs/modules/data_connection/document_loaders/csv/": {
"canonical": "/docs/integrations/document_loaders/csv/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/csv/"
]
},
"/docs/modules/data_connection/document_loaders/custom/": {
"canonical": "/docs/how_to/document_loader_custom/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/custom/"
]
},
"/docs/modules/data_connection/document_loaders/file_directory/": {
"canonical": "/docs/how_to/document_loader_directory/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/file_directory/"
]
},
"/docs/modules/data_connection/document_loaders/html/": {
"canonical": "/docs/how_to/document_loader_html/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/html/"
]
},
"/docs/modules/data_connection/document_loaders/json/": {
"canonical": "/docs/how_to/document_loader_json/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/json/"
]
},
"/docs/modules/data_connection/document_loaders/markdown/": {
"canonical": "/docs/how_to/document_loader_markdown/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/markdown/"
]
},
"/docs/modules/data_connection/document_loaders/office_file/": {
"canonical": "/docs/how_to/document_loader_office_file/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/office_file/"
]
},
"/docs/modules/data_connection/document_loaders/pdf/": {
"canonical": "/docs/how_to/document_loader_pdf/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_loaders/pdf/"
]
},
"/docs/modules/data_connection/document_transformers/": {
"canonical": "/docs/how_to/#text-splitters",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/"
]
},
"/docs/modules/data_connection/document_transformers/character_text_splitter/": {
"canonical": "/docs/how_to/character_text_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/character_text_splitter/"
]
},
"/docs/modules/data_connection/document_transformers/code_splitter/": {
"canonical": "/docs/how_to/code_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/code_splitter/"
]
},
"/docs/modules/data_connection/document_transformers/HTML_header_metadata/": {
"canonical": "/docs/how_to/HTML_header_metadata_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/HTML_header_metadata/"
]
},
"/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/": {
"canonical": "/docs/how_to/HTML_section_aware_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/"
]
},
"/docs/modules/data_connection/document_transformers/markdown_header_metadata/": {
"canonical": "/docs/how_to/markdown_header_metadata_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/markdown_header_metadata/"
]
},
"/docs/modules/data_connection/document_transformers/recursive_json_splitter/": {
"canonical": "/docs/how_to/recursive_json_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/recursive_json_splitter/"
]
},
"/docs/modules/data_connection/document_transformers/recursive_text_splitter/": {
"canonical": "/docs/how_to/recursive_text_splitter/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/recursive_text_splitter/"
]
},
"/docs/modules/data_connection/document_transformers/semantic-chunker/": {
"canonical": "/docs/how_to/semantic-chunker/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/semantic-chunker/"
]
},
"/docs/modules/data_connection/document_transformers/split_by_token/": {
"canonical": "/docs/how_to/split_by_token/",
"alternative": [
"/v0.1/docs/modules/data_connection/document_transformers/split_by_token/"
]
},
"/docs/modules/data_connection/indexing/": {
"canonical": "/docs/how_to/indexing/",
"alternative": [
"/v0.1/docs/modules/data_connection/indexing/"
]
},
"/docs/modules/data_connection/retrievers/": {
"canonical": "/docs/how_to/#retrievers",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/"
]
},
"/docs/modules/data_connection/retrievers/contextual_compression/": {
"canonical": "/docs/how_to/contextual_compression/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/contextual_compression/"
]
},
"/docs/modules/data_connection/retrievers/custom_retriever/": {
"canonical": "/docs/how_to/custom_retriever/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/custom_retriever/"
]
},
"/docs/modules/data_connection/retrievers/ensemble/": {
"canonical": "/docs/how_to/ensemble_retriever/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/ensemble/"
]
},
"/docs/modules/data_connection/retrievers/long_context_reorder/": {
"canonical": "/docs/how_to/long_context_reorder/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/long_context_reorder/"
]
},
"/docs/modules/data_connection/retrievers/multi_vector/": {
"canonical": "/docs/how_to/multi_vector/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/multi_vector/"
]
},
"/docs/modules/data_connection/retrievers/MultiQueryRetriever/": {
"canonical": "/docs/how_to/MultiQueryRetriever/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/MultiQueryRetriever/"
]
},
"/docs/modules/data_connection/retrievers/parent_document_retriever/": {
"canonical": "/docs/how_to/parent_document_retriever/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/parent_document_retriever/"
]
},
"/docs/modules/data_connection/retrievers/self_query/": {
"canonical": "/docs/how_to/self_query/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/self_query/"
]
},
"/docs/modules/data_connection/retrievers/time_weighted_vectorstore/": {
"canonical": "/docs/how_to/time_weighted_vectorstore/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/time_weighted_vectorstore/"
]
},
"/docs/modules/data_connection/retrievers/vectorstore/": {
"canonical": "/docs/how_to/vectorstore_retriever/",
"alternative": [
"/v0.1/docs/modules/data_connection/retrievers/vectorstore/"
]
},
"/docs/modules/data_connection/text_embedding/": {
"canonical": "/docs/how_to/embed_text/",
"alternative": [
"/v0.1/docs/modules/data_connection/text_embedding/"
]
},
"/docs/modules/data_connection/text_embedding/caching_embeddings/": {
"canonical": "/docs/how_to/caching_embeddings/",
"alternative": [
"/v0.1/docs/modules/data_connection/text_embedding/caching_embeddings/"
]
},
"/docs/modules/data_connection/vectorstores/": {
"canonical": "/docs/how_to/#vector-stores",
"alternative": [
"/v0.1/docs/modules/data_connection/vectorstores/"
]
},
"/docs/modules/memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/"
]
},
"/docs/modules/memory/adding_memory_chain_multiple_inputs/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/adding_memory_chain_multiple_inputs/"
]
},
"/docs/modules/memory/adding_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/adding_memory/"
]
},
"/docs/modules/memory/agent_with_memory_in_db/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/agent_with_memory_in_db/"
]
},
"/docs/modules/memory/agent_with_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/agent_with_memory/"
]
},
"/docs/modules/memory/chat_messages/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/chat_messages/"
]
},
"/docs/modules/memory/conversational_customization/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/conversational_customization/"
]
},
"/docs/modules/memory/custom_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/custom_memory/"
]
},
"/docs/modules/memory/multiple_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/multiple_memory/"
]
},
"/docs/modules/memory/types/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/"
]
},
"/docs/modules/memory/types/buffer_window/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/buffer_window/"
]
},
"/docs/modules/memory/types/buffer/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/buffer/"
]
},
"/docs/modules/memory/types/entity_summary_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/entity_summary_memory/"
]
},
"/docs/modules/memory/types/kg/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/kg/"
]
},
"/docs/modules/memory/types/summary_buffer/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/summary_buffer/"
]
},
"/docs/modules/memory/types/summary/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/summary/"
]
},
"/docs/modules/memory/types/token_buffer/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/token_buffer/"
]
},
"/docs/modules/memory/types/vectorstore_retriever_memory/": {
"canonical": "/docs/how_to/chatbots_memory/",
"alternative": [
"/v0.1/docs/modules/memory/types/vectorstore_retriever_memory/"
]
},
"/docs/modules/model_io/": {
"canonical": "/docs/how_to/#chat-models",
"alternative": [
"/v0.1/docs/modules/model_io/"
]
},
"/docs/modules/model_io/chat/": {
"canonical": "/docs/how_to/#chat-models",
"alternative": [
"/v0.1/docs/modules/model_io/chat/"
]
},
"/docs/modules/model_io/chat/chat_model_caching/": {
"canonical": "/docs/how_to/chat_model_caching/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/chat_model_caching/"
]
},
"/docs/modules/model_io/chat/custom_chat_model/": {
"canonical": "/docs/how_to/custom_chat_model/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/custom_chat_model/"
]
},
"/docs/modules/model_io/chat/function_calling/": {
"canonical": "/docs/how_to/tool_calling/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/function_calling/"
]
},
"/docs/modules/model_io/chat/logprobs/": {
"canonical": "/docs/how_to/logprobs/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/logprobs/"
]
},
"/docs/modules/model_io/chat/message_types/": {
"canonical": "/docs/concepts/#messages",
"alternative": [
"/v0.1/docs/modules/model_io/chat/message_types/"
]
},
"/docs/modules/model_io/chat/quick_start/": {
"canonical": "/docs/tutorials/llm_chain/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/quick_start/"
]
},
"/docs/modules/model_io/chat/response_metadata/": {
"canonical": "/docs/how_to/response_metadata/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/response_metadata/"
]
},
"/docs/modules/model_io/chat/streaming/": {
"canonical": "/docs/how_to/streaming/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/streaming/"
]
},
"/docs/modules/model_io/chat/structured_output/": {
"canonical": "/docs/how_to/structured_output/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/structured_output/"
]
},
"/docs/modules/model_io/chat/token_usage_tracking/": {
"canonical": "/docs/how_to/chat_token_usage_tracking/",
"alternative": [
"/v0.1/docs/modules/model_io/chat/token_usage_tracking/"
]
},
"/docs/modules/model_io/concepts/": {
"canonical": "/docs/concepts/#chat-models",
"alternative": [
"/v0.1/docs/modules/model_io/concepts/"
]
},
"/docs/modules/model_io/llms/": {
"canonical": "/docs/concepts/#llms",
"alternative": [
"/v0.1/docs/modules/model_io/llms/"
]
},
"/docs/modules/model_io/llms/custom_llm/": {
"canonical": "/docs/how_to/custom_llm/",
"alternative": [
"/v0.1/docs/modules/model_io/llms/custom_llm/"
]
},
"/docs/modules/model_io/llms/llm_caching/": {
"canonical": "/docs/how_to/llm_caching/",
"alternative": [
"/v0.1/docs/modules/model_io/llms/llm_caching/"
]
},
"/docs/modules/model_io/llms/quick_start/": {
"canonical": "/docs/tutorials/llm_chain/",
"alternative": [
"/v0.1/docs/modules/model_io/llms/quick_start/"
]
},
"/docs/modules/model_io/llms/streaming_llm/": {
"canonical": "/docs/how_to/streaming_llm/",
"alternative": [
"/v0.1/docs/modules/model_io/llms/streaming_llm/"
]
},
"/docs/modules/model_io/llms/token_usage_tracking/": {
"canonical": "/docs/how_to/llm_token_usage_tracking/",
"alternative": [
"/v0.1/docs/modules/model_io/llms/token_usage_tracking/"
]
},
"/docs/modules/model_io/output_parsers/": {
"canonical": "/docs/how_to/#output-parsers",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/"
]
},
"/docs/modules/model_io/output_parsers/custom/": {
"canonical": "/docs/how_to/output_parser_custom/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/custom/"
]
},
"/docs/modules/model_io/output_parsers/quick_start/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/quick_start/"
]
},
"/docs/modules/model_io/output_parsers/types/csv/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/csv/"
]
},
"/docs/modules/model_io/output_parsers/types/datetime/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/datetime/"
]
},
"/docs/modules/model_io/output_parsers/types/enum/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/enum/"
]
},
"/docs/modules/model_io/output_parsers/types/json/": {
"canonical": "/docs/how_to/output_parser_json/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/json/"
]
},
"/docs/modules/model_io/output_parsers/types/openai_functions/": {
"canonical": "/docs/how_to/structured_output/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/openai_functions/"
]
},
"/docs/modules/model_io/output_parsers/types/openai_tools/": {
"canonical": "/docs/how_to/tool_calling/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/openai_tools/"
]
},
"/docs/modules/model_io/output_parsers/types/output_fixing/": {
"canonical": "/docs/how_to/output_parser_fixing/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/output_fixing/"
]
},
"/docs/modules/model_io/output_parsers/types/pandas_dataframe/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/"
]
},
"/docs/modules/model_io/output_parsers/types/pydantic/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/pydantic/"
]
},
"/docs/modules/model_io/output_parsers/types/retry/": {
"canonical": "/docs/how_to/output_parser_retry/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/retry/"
]
},
"/docs/modules/model_io/output_parsers/types/structured/": {
"canonical": "/docs/how_to/output_parser_structured/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/structured/"
]
},
"/docs/modules/model_io/output_parsers/types/xml/": {
"canonical": "/docs/how_to/output_parser_xml/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/xml/"
]
},
"/docs/modules/model_io/output_parsers/types/yaml/": {
"canonical": "/docs/how_to/output_parser_yaml/",
"alternative": [
"/v0.1/docs/modules/model_io/output_parsers/types/yaml/"
]
},
"/docs/modules/model_io/prompts/": {
"canonical": "/docs/how_to/#prompt-templates",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/"
]
},
"/docs/modules/model_io/prompts/composition/": {
"canonical": "/docs/how_to/prompts_composition/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/composition/"
]
},
"/docs/modules/model_io/prompts/example_selectors/": {
"canonical": "/docs/how_to/example_selectors/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/example_selectors/"
]
},
"/docs/modules/model_io/prompts/example_selectors/length_based/": {
"canonical": "/docs/how_to/example_selectors_length_based/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/"
]
},
"/docs/modules/model_io/prompts/example_selectors/mmr/": {
"canonical": "/docs/how_to/example_selectors_mmr/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/"
]
},
"/docs/modules/model_io/prompts/example_selectors/ngram_overlap/": {
"canonical": "/docs/how_to/example_selectors_ngram/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/"
]
},
"/docs/modules/model_io/prompts/example_selectors/similarity/": {
"canonical": "/docs/how_to/example_selectors_similarity/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/"
]
},
"/docs/modules/model_io/prompts/few_shot_examples_chat/": {
"canonical": "/docs/how_to/few_shot_examples_chat/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/"
]
},
"/docs/modules/model_io/prompts/few_shot_examples/": {
"canonical": "/docs/how_to/few_shot_examples/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/few_shot_examples/"
]
},
"/docs/modules/model_io/prompts/partial/": {
"canonical": "/docs/how_to/prompts_partial/",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/partial/"
]
},
"/docs/modules/model_io/prompts/quick_start/": {
"canonical": "/docs/how_to/#prompt-templates",
"alternative": [
"/v0.1/docs/modules/model_io/prompts/quick_start/"
]
},
"/docs/modules/model_io/quick_start/": {
"canonical": "/docs/tutorials/llm_chain/",
"alternative": [
"/v0.1/docs/modules/model_io/quick_start/"
]
},
"/docs/modules/tools/": {
"canonical": "/docs/how_to/#tools",
"alternative": [
"/v0.1/docs/modules/tools/"
]
},
"/docs/modules/tools/custom_tools/": {
"canonical": "/docs/how_to/custom_tools/",
"alternative": [
"/v0.1/docs/modules/tools/custom_tools/"
]
},
"/docs/modules/tools/toolkits/": {
"canonical": "/docs/how_to/#tools",
"alternative": [
"/v0.1/docs/modules/tools/toolkits/"
]
},
"/docs/modules/tools/tools_as_openai_functions/": {
"canonical": "/docs/how_to/tool_calling/",
"alternative": [
"/v0.1/docs/modules/tools/tools_as_openai_functions/"
]
},
"/docs/packages/": {
"canonical": "/docs/versions/release_policy/",
"alternative": [
"/v0.1/docs/packages/"
]
},
"/docs/templates/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/"
]
},
"/docs/templates/anthropic-iterative-search/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/anthropic-iterative-search/"
]
},
"/docs/templates/basic-critique-revise/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/basic-critique-revise/"
]
},
"/docs/templates/bedrock-jcvd/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/bedrock-jcvd/"
]
},
"/docs/templates/cassandra-entomology-rag/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/cassandra-entomology-rag/"
]
},
"/docs/templates/cassandra-synonym-caching/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/cassandra-synonym-caching/"
]
},
"/docs/templates/chain-of-note-wiki/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/chain-of-note-wiki/"
]
},
"/docs/templates/chat-bot-feedback/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/chat-bot-feedback/"
]
},
"/docs/templates/cohere-librarian/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/cohere-librarian/"
]
},
"/docs/templates/csv-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/csv-agent/"
]
},
"/docs/templates/elastic-query-generator/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/elastic-query-generator/"
]
},
"/docs/templates/extraction-anthropic-functions/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/extraction-anthropic-functions/"
]
},
"/docs/templates/extraction-openai-functions/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/extraction-openai-functions/"
]
},
"/docs/templates/gemini-functions-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/gemini-functions-agent/"
]
},
"/docs/templates/guardrails-output-parser/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/guardrails-output-parser/"
]
},
"/docs/templates/hybrid-search-weaviate/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/hybrid-search-weaviate/"
]
},
"/docs/templates/hyde/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/hyde/"
]
},
"/docs/templates/intel-rag-xeon/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/intel-rag-xeon/"
]
},
"/docs/templates/llama2-functions/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/llama2-functions/"
]
},
"/docs/templates/mongo-parent-document-retrieval/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/mongo-parent-document-retrieval/"
]
},
"/docs/templates/neo4j-advanced-rag/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-advanced-rag/"
]
},
"/docs/templates/neo4j-cypher-ft/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-cypher-ft/"
]
},
"/docs/templates/neo4j-cypher-memory/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-cypher-memory/"
]
},
"/docs/templates/neo4j-cypher/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-cypher/"
]
},
"/docs/templates/neo4j-generation/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-generation/"
]
},
"/docs/templates/neo4j-parent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-parent/"
]
},
"/docs/templates/neo4j-semantic-layer/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-semantic-layer/"
]
},
"/docs/templates/neo4j-semantic-ollama/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-semantic-ollama/"
]
},
"/docs/templates/neo4j-vector-memory/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/neo4j-vector-memory/"
]
},
"/docs/templates/nvidia-rag-canonical/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/nvidia-rag-canonical/"
]
},
"/docs/templates/openai-functions-agent-gmail/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/openai-functions-agent-gmail/"
]
},
"/docs/templates/openai-functions-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/openai-functions-agent/"
]
},
"/docs/templates/openai-functions-tool-retrieval-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/openai-functions-tool-retrieval-agent/"
]
},
"/docs/templates/pii-protected-chatbot/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/pii-protected-chatbot/"
]
},
"/docs/templates/pirate-speak-configurable/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/pirate-speak-configurable/"
]
},
"/docs/templates/pirate-speak/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/pirate-speak/"
]
},
"/docs/templates/plate-chain/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/plate-chain/"
]
},
"/docs/templates/propositional-retrieval/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/propositional-retrieval/"
]
},
"/docs/templates/python-lint/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/python-lint/"
]
},
"/docs/templates/rag-astradb/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-astradb/"
]
},
"/docs/templates/rag-aws-bedrock/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-aws-bedrock/"
]
},
"/docs/templates/rag-aws-kendra/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-aws-kendra/"
]
},
"/docs/templates/rag-azure-search/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-azure-search/"
]
},
"/docs/templates/rag-chroma-multi-modal-multi-vector/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-chroma-multi-modal-multi-vector/"
]
},
"/docs/templates/rag-chroma-multi-modal/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-chroma-multi-modal/"
]
},
"/docs/templates/rag-chroma-private/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-chroma-private/"
]
},
"/docs/templates/rag-chroma/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-chroma/"
]
},
"/docs/templates/rag-codellama-fireworks/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-codellama-fireworks/"
]
},
"/docs/templates/rag-conversation-zep/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-conversation-zep/"
]
},
"/docs/templates/rag-conversation/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-conversation/"
]
},
"/docs/templates/rag-elasticsearch/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-elasticsearch/"
]
},
"/docs/templates/rag-fusion/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-fusion/"
]
},
"/docs/templates/rag-gemini-multi-modal/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-gemini-multi-modal/"
]
},
"/docs/templates/rag-google-cloud-sensitive-data-protection/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-google-cloud-sensitive-data-protection/"
]
},
"/docs/templates/rag-google-cloud-vertexai-search/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-google-cloud-vertexai-search/"
]
},
"/docs/templates/rag-gpt-crawler/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-gpt-crawler/"
]
},
"/docs/templates/rag-jaguardb/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-jaguardb/"
]
},
"/docs/templates/rag-lancedb/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-lancedb/"
]
},
"/docs/templates/rag-lantern/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-lantern/"
]
},
"/docs/templates/rag-matching-engine/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-matching-engine/"
]
},
"/docs/templates/rag-momento-vector-index/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-momento-vector-index/"
]
},
"/docs/templates/rag-mongo/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-mongo/"
]
},
"/docs/templates/rag-multi-index-fusion/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-multi-index-fusion/"
]
},
"/docs/templates/rag-multi-index-router/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-multi-index-router/"
]
},
"/docs/templates/rag-multi-modal-local/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-multi-modal-local/"
]
},
"/docs/templates/rag-multi-modal-mv-local/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-multi-modal-mv-local/"
]
},
"/docs/templates/rag-ollama-multi-query/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-ollama-multi-query/"
]
},
"/docs/templates/rag-opensearch/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-opensearch/"
]
},
"/docs/templates/rag-pinecone-multi-query/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-pinecone-multi-query/"
]
},
"/docs/templates/rag-pinecone-rerank/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-pinecone-rerank/"
]
},
"/docs/templates/rag-pinecone/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-pinecone/"
]
},
"/docs/templates/rag-redis-multi-modal-multi-vector/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-redis-multi-modal-multi-vector/"
]
},
"/docs/templates/rag-redis/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-redis/"
]
},
"/docs/templates/rag-self-query/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-self-query/"
]
},
"/docs/templates/rag-semi-structured/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-semi-structured/"
]
},
"/docs/templates/rag-singlestoredb/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-singlestoredb/"
]
},
"/docs/templates/rag-supabase/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-supabase/"
]
},
"/docs/templates/rag-timescale-conversation/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-timescale-conversation/"
]
},
"/docs/templates/rag-timescale-hybrid-search-time/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-timescale-hybrid-search-time/"
]
},
"/docs/templates/rag-vectara-multiquery/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-vectara-multiquery/"
]
},
"/docs/templates/rag-vectara/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-vectara/"
]
},
"/docs/templates/rag-weaviate/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rag-weaviate/"
]
},
"/docs/templates/research-assistant/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/research-assistant/"
]
},
"/docs/templates/retrieval-agent-fireworks/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/retrieval-agent-fireworks/"
]
},
"/docs/templates/retrieval-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/retrieval-agent/"
]
},
"/docs/templates/rewrite-retrieve-read/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/rewrite-retrieve-read/"
]
},
"/docs/templates/robocorp-action-server/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/robocorp-action-server/"
]
},
"/docs/templates/self-query-qdrant/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/self-query-qdrant/"
]
},
"/docs/templates/self-query-supabase/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/self-query-supabase/"
]
},
"/docs/templates/shopping-assistant/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/shopping-assistant/"
]
},
"/docs/templates/skeleton-of-thought/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/skeleton-of-thought/"
]
},
"/docs/templates/solo-performance-prompting-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/solo-performance-prompting-agent/"
]
},
"/docs/templates/sql-llama2/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/sql-llama2/"
]
},
"/docs/templates/sql-llamacpp/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/sql-llamacpp/"
]
},
"/docs/templates/sql-ollama/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/sql-ollama/"
]
},
"/docs/templates/sql-pgvector/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/sql-pgvector/"
]
},
"/docs/templates/sql-research-assistant/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/sql-research-assistant/"
]
},
"/docs/templates/stepback-qa-prompting/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/stepback-qa-prompting/"
]
},
"/docs/templates/summarize-anthropic/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/summarize-anthropic/"
]
},
"/docs/templates/vertexai-chuck-norris/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/vertexai-chuck-norris/"
]
},
"/docs/templates/xml-agent/": {
"canonical": null,
"alternative": [
"/v0.1/docs/templates/xml-agent/"
]
},
"/docs/use_cases/": {
"canonical": "/docs/tutorials/",
"alternative": [
"/v0.1/docs/use_cases/"
]
},
"/docs/use_cases/apis/": {
"canonical": null,
"alternative": [
"/v0.1/docs/use_cases/apis/"
]
},
"/docs/use_cases/chatbots/": {
"canonical": "/docs/tutorials/chatbot/",
"alternative": [
"/v0.1/docs/use_cases/chatbots/"
]
},
"/docs/use_cases/chatbots/memory_management/": {
"canonical": "/docs/tutorials/chatbot/",
"alternative": [
"/v0.1/docs/use_cases/chatbots/memory_management/"
]
},
"/docs/use_cases/chatbots/quickstart/": {
"canonical": "/docs/tutorials/chatbot/",
"alternative": [
"/v0.1/docs/use_cases/chatbots/quickstart/"
]
},
"/docs/use_cases/chatbots/retrieval/": {
"canonical": "/docs/tutorials/chatbot/",
"alternative": [
"/v0.1/docs/use_cases/chatbots/retrieval/"
]
},
"/docs/use_cases/chatbots/tool_usage/": {
"canonical": "/docs/tutorials/chatbot/",
"alternative": [
"/v0.1/docs/use_cases/chatbots/tool_usage/"
]
},
"/docs/use_cases/code_understanding/": {
"canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/",
"alternative": [
"/v0.1/docs/use_cases/code_understanding/"
]
},
"/docs/use_cases/data_generation/": {
"canonical": "/docs/tutorials/data_generation/",
"alternative": [
"/v0.1/docs/use_cases/data_generation/"
]
},
"/docs/use_cases/extraction/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/"
]
},
"/docs/use_cases/extraction/guidelines/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/guidelines/"
]
},
"/docs/use_cases/extraction/how_to/examples/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/how_to/examples/"
]
},
"/docs/use_cases/extraction/how_to/handle_files/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/how_to/handle_files/"
]
},
"/docs/use_cases/extraction/how_to/handle_long_text/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/how_to/handle_long_text/"
]
},
"/docs/use_cases/extraction/how_to/parse/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/how_to/parse/"
]
},
"/docs/use_cases/extraction/quickstart/": {
"canonical": "/docs/tutorials/extraction/",
"alternative": [
"/v0.1/docs/use_cases/extraction/quickstart/"
]
},
"/docs/use_cases/graph/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/"
]
},
"/docs/use_cases/graph/constructing/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/constructing/"
]
},
"/docs/use_cases/graph/mapping/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/mapping/"
]
},
"/docs/use_cases/graph/prompting/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/prompting/"
]
},
"/docs/use_cases/graph/quickstart/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/quickstart/"
]
},
"/docs/use_cases/graph/semantic/": {
"canonical": "/docs/tutorials/graph/",
"alternative": [
"/v0.1/docs/use_cases/graph/semantic/"
]
},
"/docs/use_cases/query_analysis/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/"
]
},
"/docs/use_cases/query_analysis/how_to/constructing-filters/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/constructing-filters/"
]
},
"/docs/use_cases/query_analysis/how_to/few_shot/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/few_shot/"
]
},
"/docs/use_cases/query_analysis/how_to/high_cardinality/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/high_cardinality/"
]
},
"/docs/use_cases/query_analysis/how_to/multiple_queries/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/multiple_queries/"
]
},
"/docs/use_cases/query_analysis/how_to/multiple_retrievers/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/multiple_retrievers/"
]
},
"/docs/use_cases/query_analysis/how_to/no_queries/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/how_to/no_queries/"
]
},
"/docs/use_cases/query_analysis/quickstart/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/quickstart/"
]
},
"/docs/use_cases/query_analysis/techniques/decomposition/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/decomposition/"
]
},
"/docs/use_cases/query_analysis/techniques/expansion/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/expansion/"
]
},
"/docs/use_cases/query_analysis/techniques/hyde/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/hyde/"
]
},
"/docs/use_cases/query_analysis/techniques/routing/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/routing/"
]
},
"/docs/use_cases/query_analysis/techniques/step_back/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/step_back/"
]
},
"/docs/use_cases/query_analysis/techniques/structuring/": {
"canonical": "/docs/tutorials/query_analysis/",
"alternative": [
"/v0.1/docs/use_cases/query_analysis/techniques/structuring/"
]
},
"/docs/use_cases/question_answering/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/"
]
},
"/docs/use_cases/question_answering/chat_history/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/chat_history/"
]
},
"/docs/use_cases/question_answering/citations/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/citations/"
]
},
"/docs/use_cases/question_answering/conversational_retrieval_agents/": {
"canonical": "/docs/tutorials/qa_chat_history/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/conversational_retrieval_agents/"
]
},
"/docs/use_cases/question_answering/hybrid/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/hybrid/"
]
},
"/docs/use_cases/question_answering/local_retrieval_qa/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/local_retrieval_qa/"
]
},
"/docs/use_cases/question_answering/per_user/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/per_user/"
]
},
"/docs/use_cases/question_answering/quickstart/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/quickstart/"
]
},
"/docs/use_cases/question_answering/sources/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/sources/"
]
},
"/docs/use_cases/question_answering/streaming/": {
"canonical": "/docs/tutorials/rag/",
"alternative": [
"/v0.1/docs/use_cases/question_answering/streaming/"
]
},
"/docs/use_cases/sql/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/"
]
},
"/docs/use_cases/sql/agents/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/agents/"
]
},
"/docs/use_cases/sql/csv/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/csv/"
]
},
"/docs/use_cases/sql/large_db/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/large_db/"
]
},
"/docs/use_cases/sql/prompting/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/prompting/"
]
},
"/docs/use_cases/sql/query_checking/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/query_checking/"
]
},
"/docs/use_cases/sql/quickstart/": {
"canonical": "/docs/tutorials/sql_qa/",
"alternative": [
"/v0.1/docs/use_cases/sql/quickstart/"
]
},
"/docs/use_cases/summarization/": {
"canonical": "/docs/tutorials/summarization/",
"alternative": [
"/v0.1/docs/use_cases/summarization/"
]
},
"/docs/use_cases/tagging/": {
"canonical": "/docs/tutorials/classification/",
"alternative": [
"/v0.1/docs/use_cases/tagging/"
]
},
"/docs/use_cases/tool_use/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/"
]
},
"/docs/use_cases/tool_use/agents/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/agents/"
]
},
"/docs/use_cases/tool_use/human_in_the_loop/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/human_in_the_loop/"
]
},
"/docs/use_cases/tool_use/multiple_tools/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/multiple_tools/"
]
},
"/docs/use_cases/tool_use/parallel/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/parallel/"
]
},
"/docs/use_cases/tool_use/prompting/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/prompting/"
]
},
"/docs/use_cases/tool_use/quickstart/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/quickstart/"
]
},
"/docs/use_cases/tool_use/tool_error_handling/": {
"canonical": "/docs/tutorials/agents/",
"alternative": [
"/v0.1/docs/use_cases/tool_use/tool_error_handling/"
]
},
"/docs/use_cases/web_scraping/": {
"canonical": "https://langchain-ai.github.io/langgraph/tutorials/web-navigation/web_voyager/",
"alternative": [
"/v0.1/docs/use_cases/web_scraping/"
]
},
// below are new
"/docs/modules/data_connection/document_transformers/text_splitters/": {"canonical": "/docs/how_to/#text-splitters", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/character_text_splitter/": {"canonical": "/docs/how_to/character_text_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/character_text_splitter/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/code_splitter/": {"canonical": "/docs/how_to/code_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/code_splitter/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/HTML_header_metadata/": {"canonical": "/docs/how_to/HTML_header_metadata_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/HTML_header_metadata/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/HTML_section_aware_splitter/": {"canonical": "/docs/how_to/HTML_section_aware_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/HTML_section_aware_splitter/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/markdown_header_metadata/": {"canonical": "/docs/how_to/markdown_header_metadata_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/markdown_header_metadata/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/recursive_json_splitter/": {"canonical": "/docs/how_to/recursive_json_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/recursive_json_splitter/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/recursive_text_splitter/": {"canonical": "/docs/how_to/recursive_text_splitter/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/recursive_text_splitter/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/semantic-chunker/": {"canonical": "/docs/how_to/semantic-chunker/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/semantic-chunker/"]},
"/docs/modules/data_connection/document_transformers/text_splitters/split_by_token/": {"canonical": "/docs/how_to/split_by_token/", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/split_by_token/"]},
"/docs/modules/model_io/prompts/prompt_templates/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/"]},
"/docs/modules/model_io/prompts/prompt_templates/composition/": {"canonical": "/docs/how_to/prompts_composition/", "alternative": ["/v0.1/docs/modules/model_io/prompts/composition/"]},
"/docs/modules/model_io/prompts/prompt_templates/example_selectors/": {"canonical": "/docs/how_to/example_selectors/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/"]},
"/docs/modules/model_io/prompts/prompt_templates/example_selectors/length_based/": {"canonical": "/docs/how_to/example_selectors_length_based/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/"]},
"/docs/modules/model_io/prompts/prompt_templates/example_selectors/mmr/": {"canonical": "/docs/how_to/example_selectors_mmr/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/"]},
"/docs/modules/model_io/prompts/prompt_templates/example_selectors/ngram_overlap/": {"canonical": "/docs/how_to/example_selectors_ngram/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/"]},
"/docs/modules/model_io/prompts/prompt_templates/example_selectors/similarity/": {"canonical": "/docs/how_to/example_selectors_similarity/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/"]},
"/docs/modules/model_io/prompts/prompt_templates/few_shot_examples_chat/": {"canonical": "/docs/how_to/few_shot_examples_chat/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/"]},
"/docs/modules/model_io/prompts/prompt_templates/few_shot_examples/": {"canonical": "/docs/how_to/few_shot_examples/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples/"]},
"/docs/modules/model_io/prompts/prompt_templates/partial/": {"canonical": "/docs/how_to/prompts_partial/", "alternative": ["/v0.1/docs/modules/model_io/prompts/partial/"]},
"/docs/modules/model_io/prompts/prompt_templates/quick_start/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/quick_start/"]},
"/docs/modules/model_io/models/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/"]},
"/docs/modules/model_io/models/chat/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/chat/"]},
"/docs/modules/model_io/models/chat/chat_model_caching/": {"canonical": "/docs/how_to/chat_model_caching/", "alternative": ["/v0.1/docs/modules/model_io/chat/chat_model_caching/"]},
"/docs/modules/model_io/models/chat/custom_chat_model/": {"canonical": "/docs/how_to/custom_chat_model/", "alternative": ["/v0.1/docs/modules/model_io/chat/custom_chat_model/"]},
"/docs/modules/model_io/models/chat/function_calling/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/model_io/chat/function_calling/"]},
"/docs/modules/model_io/models/chat/logprobs/": {"canonical": "/docs/how_to/logprobs/", "alternative": ["/v0.1/docs/modules/model_io/chat/logprobs/"]},
"/docs/modules/model_io/models/chat/message_types/": {"canonical": "/docs/concepts/#messages", "alternative": ["/v0.1/docs/modules/model_io/chat/message_types/"]},
"/docs/modules/model_io/models/chat/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/chat/quick_start/"]},
"/docs/modules/model_io/models/chat/response_metadata/": {"canonical": "/docs/how_to/response_metadata/", "alternative": ["/v0.1/docs/modules/model_io/chat/response_metadata/"]},
"/docs/modules/model_io/models/chat/streaming/": {"canonical": "/docs/how_to/streaming/", "alternative": ["/v0.1/docs/modules/model_io/chat/streaming/"]},
"/docs/modules/model_io/models/chat/structured_output/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/chat/structured_output/"]},
"/docs/modules/model_io/models/chat/token_usage_tracking/": {"canonical": "/docs/how_to/chat_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/chat/token_usage_tracking/"]},
"/docs/modules/model_io/models/concepts/": {"canonical": "/docs/concepts/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/concepts/"]},
"/docs/modules/model_io/models/llms/": {"canonical": "/docs/concepts/#llms", "alternative": ["/v0.1/docs/modules/model_io/llms/"]},
"/docs/modules/model_io/models/llms/custom_llm/": {"canonical": "/docs/how_to/custom_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/custom_llm/"]},
"/docs/modules/model_io/models/llms/llm_caching/": {"canonical": "/docs/how_to/llm_caching/", "alternative": ["/v0.1/docs/modules/model_io/llms/llm_caching/"]},
"/docs/modules/model_io/models/llms/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/llms/quick_start/"]},
"/docs/modules/model_io/models/llms/streaming_llm/": {"canonical": "/docs/how_to/streaming_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/streaming_llm/"]},
"/docs/modules/model_io/models/llms/token_usage_tracking/": {"canonical": "/docs/how_to/llm_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/llms/token_usage_tracking/"]},
"/docs/modules/model_io/models/output_parsers/": {"canonical": "/docs/how_to/#output-parsers", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/"]},
"/docs/modules/model_io/models/output_parsers/custom/": {"canonical": "/docs/how_to/output_parser_custom/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/custom/"]},
"/docs/modules/model_io/models/output_parsers/quick_start/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/quick_start/"]},
"/docs/modules/model_io/models/output_parsers/types/csv/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/csv/"]},
"/docs/modules/model_io/models/output_parsers/types/datetime/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/datetime/"]},
"/docs/modules/model_io/models/output_parsers/types/enum/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/enum/"]},
"/docs/modules/model_io/models/output_parsers/types/json/": {"canonical": "/docs/how_to/output_parser_json/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/json/"]},
"/docs/modules/model_io/models/output_parsers/types/openai_functions/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/openai_functions/"]},
"/docs/modules/model_io/models/output_parsers/types/openai_tools/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/openai_tools/"]},
"/docs/modules/model_io/models/output_parsers/types/output_fixing/": {"canonical": "/docs/how_to/output_parser_fixing/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/output_fixing/"]},
"/docs/modules/model_io/models/output_parsers/types/pandas_dataframe/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/"]},
"/docs/modules/model_io/models/output_parsers/types/pydantic/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/pydantic/"]},
"/docs/modules/model_io/models/output_parsers/types/retry/": {"canonical": "/docs/how_to/output_parser_retry/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/retry/"]},
"/docs/modules/model_io/models/output_parsers/types/structured/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/structured/"]},
"/docs/modules/model_io/models/output_parsers/types/xml/": {"canonical": "/docs/how_to/output_parser_xml/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/xml/"]},
"/docs/modules/model_io/models/output_parsers/types/yaml/": {"canonical": "/docs/how_to/output_parser_yaml/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/yaml/"]},
"/docs/modules/model_io/models/prompts/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/"]},
"/docs/modules/model_io/models/prompts/composition/": {"canonical": "/docs/how_to/prompts_composition/", "alternative": ["/v0.1/docs/modules/model_io/prompts/composition/"]},
"/docs/modules/model_io/models/prompts/example_selectors/": {"canonical": "/docs/how_to/example_selectors/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/"]},
"/docs/modules/model_io/models/prompts/example_selectors/length_based/": {"canonical": "/docs/how_to/example_selectors_length_based/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/"]},
"/docs/modules/model_io/models/prompts/example_selectors/mmr/": {"canonical": "/docs/how_to/example_selectors_mmr/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/"]},
"/docs/modules/model_io/models/prompts/example_selectors/ngram_overlap/": {"canonical": "/docs/how_to/example_selectors_ngram/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/"]},
"/docs/modules/model_io/models/prompts/example_selectors/similarity/": {"canonical": "/docs/how_to/example_selectors_similarity/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/"]},
"/docs/modules/model_io/models/prompts/few_shot_examples_chat/": {"canonical": "/docs/how_to/few_shot_examples_chat/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/"]},
"/docs/modules/model_io/models/prompts/few_shot_examples/": {"canonical": "/docs/how_to/few_shot_examples/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples/"]},
"/docs/modules/model_io/models/prompts/partial/": {"canonical": "/docs/how_to/prompts_partial/", "alternative": ["/v0.1/docs/modules/model_io/prompts/partial/"]},
"/docs/modules/model_io/models/prompts/quick_start/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/quick_start/"]},
"/docs/modules/model_io/models/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/quick_start/"]},
"/docs/use_cases/more/graph/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/"]},
"/docs/use_cases/more/graph/constructing/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/constructing/"]},
"/docs/use_cases/more/graph/mapping/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/mapping/"]},
"/docs/use_cases/more/graph/prompting/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/prompting/"]},
"/docs/use_cases/more/graph/quickstart/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/quickstart/"]},
"/docs/use_cases/more/graph/semantic/": {"canonical": "/docs/tutorials/graph/", "alternative": ["/v0.1/docs/use_cases/graph/semantic/"]},
"/docs/modules/model_io/chat/how_to/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/chat/"]},
"/docs/modules/model_io/chat/how_to/chat_model_caching/": {"canonical": "/docs/how_to/chat_model_caching/", "alternative": ["/v0.1/docs/modules/model_io/chat/chat_model_caching/"]},
"/docs/modules/model_io/chat/how_to/custom_chat_model/": {"canonical": "/docs/how_to/custom_chat_model/", "alternative": ["/v0.1/docs/modules/model_io/chat/custom_chat_model/"]},
"/docs/modules/model_io/chat/how_to/function_calling/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/model_io/chat/function_calling/"]},
"/docs/modules/model_io/chat/how_to/logprobs/": {"canonical": "/docs/how_to/logprobs/", "alternative": ["/v0.1/docs/modules/model_io/chat/logprobs/"]},
"/docs/modules/model_io/chat/how_to/message_types/": {"canonical": "/docs/concepts/#messages", "alternative": ["/v0.1/docs/modules/model_io/chat/message_types/"]},
"/docs/modules/model_io/chat/how_to/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/chat/quick_start/"]},
"/docs/modules/model_io/chat/how_to/response_metadata/": {"canonical": "/docs/how_to/response_metadata/", "alternative": ["/v0.1/docs/modules/model_io/chat/response_metadata/"]},
"/docs/modules/model_io/chat/how_to/streaming/": {"canonical": "/docs/how_to/streaming/", "alternative": ["/v0.1/docs/modules/model_io/chat/streaming/"]},
"/docs/modules/model_io/chat/how_to/structured_output/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/chat/structured_output/"]},
"/docs/modules/model_io/chat/how_to/token_usage_tracking/": {"canonical": "/docs/how_to/chat_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/chat/token_usage_tracking/"]},
"/docs/modules/model_io/llms/how_to/": {"canonical": "/docs/concepts/#llms", "alternative": ["/v0.1/docs/modules/model_io/llms/"]},
"/docs/modules/model_io/llms/how_to/custom_llm/": {"canonical": "/docs/how_to/custom_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/custom_llm/"]},
"/docs/modules/model_io/llms/how_to/llm_caching/": {"canonical": "/docs/how_to/llm_caching/", "alternative": ["/v0.1/docs/modules/model_io/llms/llm_caching/"]},
"/docs/modules/model_io/llms/how_to/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/llms/quick_start/"]},
"/docs/modules/model_io/llms/how_to/streaming_llm/": {"canonical": "/docs/how_to/streaming_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/streaming_llm/"]},
"/docs/modules/model_io/llms/how_to/token_usage_tracking/": {"canonical": "/docs/how_to/llm_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/llms/token_usage_tracking/"]},
"/docs/modules/model_io/llms/integrations/llm_caching/": {"canonical": "/docs/how_to/llm_caching/", "alternative": ["/v0.1/docs/integrations/llms/llm_caching/"]},
"/docs/modules/model_io/chat/integrations/ollama_functions/": {"canonical": "/docs/integrations/chat/ollama/", "alternative": ["/v0.1/docs/integrations/chat/ollama_functions/"]},
"/en/latest/modules/models/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/"]},
"/en/latest/modules/models/chat/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/chat/"]},
"/en/latest/modules/models/chat/chat_model_caching/": {"canonical": "/docs/how_to/chat_model_caching/", "alternative": ["/v0.1/docs/modules/model_io/chat/chat_model_caching/"]},
"/en/latest/modules/models/chat/custom_chat_model/": {"canonical": "/docs/how_to/custom_chat_model/", "alternative": ["/v0.1/docs/modules/model_io/chat/custom_chat_model/"]},
"/en/latest/modules/models/chat/function_calling/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/model_io/chat/function_calling/"]},
"/en/latest/modules/models/chat/logprobs/": {"canonical": "/docs/how_to/logprobs/", "alternative": ["/v0.1/docs/modules/model_io/chat/logprobs/"]},
"/en/latest/modules/models/chat/message_types/": {"canonical": "/docs/concepts/#messages", "alternative": ["/v0.1/docs/modules/model_io/chat/message_types/"]},
"/en/latest/modules/models/chat/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/chat/quick_start/"]},
"/en/latest/modules/models/chat/response_metadata/": {"canonical": "/docs/how_to/response_metadata/", "alternative": ["/v0.1/docs/modules/model_io/chat/response_metadata/"]},
"/en/latest/modules/models/chat/streaming/": {"canonical": "/docs/how_to/streaming/", "alternative": ["/v0.1/docs/modules/model_io/chat/streaming/"]},
"/en/latest/modules/models/chat/structured_output/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/chat/structured_output/"]},
"/en/latest/modules/models/chat/token_usage_tracking/": {"canonical": "/docs/how_to/chat_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/chat/token_usage_tracking/"]},
"/en/latest/modules/models/concepts/": {"canonical": "/docs/concepts/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/concepts/"]},
"/en/latest/modules/models/llms/": {"canonical": "/docs/concepts/#llms", "alternative": ["/v0.1/docs/modules/model_io/llms/"]},
"/en/latest/modules/models/llms/custom_llm/": {"canonical": "/docs/how_to/custom_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/custom_llm/"]},
"/en/latest/modules/models/llms/llm_caching/": {"canonical": "/docs/how_to/llm_caching/", "alternative": ["/v0.1/docs/modules/model_io/llms/llm_caching/"]},
"/en/latest/modules/models/llms/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/llms/quick_start/"]},
"/en/latest/modules/models/llms/streaming_llm/": {"canonical": "/docs/how_to/streaming_llm/", "alternative": ["/v0.1/docs/modules/model_io/llms/streaming_llm/"]},
"/en/latest/modules/models/llms/token_usage_tracking/": {"canonical": "/docs/how_to/llm_token_usage_tracking/", "alternative": ["/v0.1/docs/modules/model_io/llms/token_usage_tracking/"]},
"/en/latest/modules/models/output_parsers/": {"canonical": "/docs/how_to/#output-parsers", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/"]},
"/en/latest/modules/models/output_parsers/custom/": {"canonical": "/docs/how_to/output_parser_custom/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/custom/"]},
"/en/latest/modules/models/output_parsers/quick_start/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/quick_start/"]},
"/en/latest/modules/models/output_parsers/types/csv/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/csv/"]},
"/en/latest/modules/models/output_parsers/types/datetime/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/datetime/"]},
"/en/latest/modules/models/output_parsers/types/enum/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/enum/"]},
"/en/latest/modules/models/output_parsers/types/json/": {"canonical": "/docs/how_to/output_parser_json/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/json/"]},
"/en/latest/modules/models/output_parsers/types/openai_functions/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/openai_functions/"]},
"/en/latest/modules/models/output_parsers/types/openai_tools/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/openai_tools/"]},
"/en/latest/modules/models/output_parsers/types/output_fixing/": {"canonical": "/docs/how_to/output_parser_fixing/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/output_fixing/"]},
"/en/latest/modules/models/output_parsers/types/pandas_dataframe/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/"]},
"/en/latest/modules/models/output_parsers/types/pydantic/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/pydantic/"]},
"/en/latest/modules/models/output_parsers/types/retry/": {"canonical": "/docs/how_to/output_parser_retry/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/retry/"]},
"/en/latest/modules/models/output_parsers/types/structured/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/structured/"]},
"/en/latest/modules/models/output_parsers/types/xml/": {"canonical": "/docs/how_to/output_parser_xml/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/xml/"]},
"/en/latest/modules/models/output_parsers/types/yaml/": {"canonical": "/docs/how_to/output_parser_yaml/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/yaml/"]},
"/en/latest/modules/models/prompts/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/"]},
"/en/latest/modules/models/prompts/composition/": {"canonical": "/docs/how_to/prompts_composition/", "alternative": ["/v0.1/docs/modules/model_io/prompts/composition/"]},
"/en/latest/modules/models/prompts/example_selectors/": {"canonical": "/docs/how_to/example_selectors/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/"]},
"/en/latest/modules/models/prompts/example_selectors/length_based/": {"canonical": "/docs/how_to/example_selectors_length_based/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/"]},
"/en/latest/modules/models/prompts/example_selectors/mmr/": {"canonical": "/docs/how_to/example_selectors_mmr/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/"]},
"/en/latest/modules/models/prompts/example_selectors/ngram_overlap/": {"canonical": "/docs/how_to/example_selectors_ngram/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/"]},
"/en/latest/modules/models/prompts/example_selectors/similarity/": {"canonical": "/docs/how_to/example_selectors_similarity/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/"]},
"/en/latest/modules/models/prompts/few_shot_examples_chat/": {"canonical": "/docs/how_to/few_shot_examples_chat/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples_chat/"]},
"/en/latest/modules/models/prompts/few_shot_examples/": {"canonical": "/docs/how_to/few_shot_examples/", "alternative": ["/v0.1/docs/modules/model_io/prompts/few_shot_examples/"]},
"/en/latest/modules/models/prompts/partial/": {"canonical": "/docs/how_to/prompts_partial/", "alternative": ["/v0.1/docs/modules/model_io/prompts/partial/"]},
"/en/latest/modules/models/prompts/quick_start/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/quick_start/"]},
"/en/latest/modules/models/quick_start/": {"canonical": "/docs/tutorials/llm_chain/", "alternative": ["/v0.1/docs/modules/model_io/quick_start/"]},
"/docs/modules/model_io/prompts/example_selector_types/": {"canonical": "/docs/how_to/example_selectors/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/"]},
"/docs/modules/model_io/prompts/example_selector_types/length_based/": {"canonical": "/docs/how_to/example_selectors_length_based/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/length_based/"]},
"/docs/modules/model_io/prompts/example_selector_types/mmr/": {"canonical": "/docs/how_to/example_selectors_mmr/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/mmr/"]},
"/docs/modules/model_io/prompts/example_selector_types/ngram_overlap/": {"canonical": "/docs/how_to/example_selectors_ngram/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/ngram_overlap/"]},
"/docs/modules/model_io/prompts/example_selector_types/similarity/": {"canonical": "/docs/how_to/example_selectors_similarity/", "alternative": ["/v0.1/docs/modules/model_io/prompts/example_selectors/similarity/"]},
"/docs/modules/agents/tools/": {"canonical": "/docs/how_to/#tools", "alternative": ["/v0.1/docs/modules/tools/"]},
"/docs/modules/agents/tools/custom_tools/": {"canonical": "/docs/how_to/custom_tools/", "alternative": ["/v0.1/docs/modules/tools/custom_tools/"]},
"/docs/modules/agents/tools/toolkits/": {"canonical": "/docs/how_to/#tools", "alternative": ["/v0.1/docs/modules/tools/toolkits/"]},
"/docs/modules/agents/tools/tools_as_openai_functions/": {"canonical": "/docs/how_to/tool_calling/", "alternative": ["/v0.1/docs/modules/tools/tools_as_openai_functions/"]},
"/docs/guides/deployments/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/deployments/"]},
"/docs/guides/deployments/template_repos/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/deployments/template_repos/"]},
"/docs/guides/evaluation/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/"]},
"/docs/guides/evaluation/comparison/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/comparison/"]},
"/docs/guides/evaluation/comparison/custom/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/comparison/custom/"]},
"/docs/guides/evaluation/comparison/pairwise_embedding_distance/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_embedding_distance/"]},
"/docs/guides/evaluation/comparison/pairwise_string/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/comparison/pairwise_string/"]},
"/docs/guides/evaluation/examples/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/examples/"]},
"/docs/guides/evaluation/examples/comparisons/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/examples/comparisons/"]},
"/docs/guides/evaluation/string/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/"]},
"/docs/guides/evaluation/string/criteria_eval_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/criteria_eval_chain/"]},
"/docs/guides/evaluation/string/custom/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/custom/"]},
"/docs/guides/evaluation/string/embedding_distance/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/embedding_distance/"]},
"/docs/guides/evaluation/string/exact_match/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/exact_match/"]},
"/docs/guides/evaluation/string/json/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/json/"]},
"/docs/guides/evaluation/string/regex_match/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/regex_match/"]},
"/docs/guides/evaluation/string/scoring_eval_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/scoring_eval_chain/"]},
"/docs/guides/evaluation/string/string_distance/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/string/string_distance/"]},
"/docs/guides/evaluation/trajectory/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/trajectory/"]},
"/docs/guides/evaluation/trajectory/custom/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/trajectory/custom/"]},
"/docs/guides/evaluation/trajectory/trajectory_eval/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/trajectory/trajectory_eval/"]},
"/docs/guides/privacy/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/"]},
"/docs/guides/privacy/amazon_comprehend_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/amazon_comprehend_chain/"]},
"/docs/guides/privacy/constitutional_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/constitutional_chain/"]},
"/docs/guides/privacy/hugging_face_prompt_injection/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/hugging_face_prompt_injection/"]},
"/docs/guides/privacy/layerup_security/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/layerup_security/"]},
"/docs/guides/privacy/logical_fallacy_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/logical_fallacy_chain/"]},
"/docs/guides/privacy/moderation/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/moderation/"]},
"/docs/guides/privacy/presidio_data_anonymization/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/"]},
"/docs/guides/privacy/presidio_data_anonymization/multi_language/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/"]},
"/docs/guides/privacy/presidio_data_anonymization/qa_privacy_protection/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/"]},
"/docs/guides/privacy/presidio_data_anonymization/reversible/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/reversible/"]},
"/docs/guides/safety/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/"]},
"/docs/guides/safety/amazon_comprehend_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/amazon_comprehend_chain/"]},
"/docs/guides/safety/constitutional_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/constitutional_chain/"]},
"/docs/guides/safety/hugging_face_prompt_injection/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/hugging_face_prompt_injection/"]},
"/docs/guides/safety/layerup_security/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/layerup_security/"]},
"/docs/guides/safety/logical_fallacy_chain/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/logical_fallacy_chain/"]},
"/docs/guides/safety/moderation/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/moderation/"]},
"/docs/guides/safety/presidio_data_anonymization/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/"]},
"/docs/guides/safety/presidio_data_anonymization/multi_language/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/multi_language/"]},
"/docs/guides/safety/presidio_data_anonymization/qa_privacy_protection/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/qa_privacy_protection/"]},
"/docs/guides/safety/presidio_data_anonymization/reversible/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/presidio_data_anonymization/reversible/"]},
"/docs/integrations/llms/titan_takeoff_pro/": {"canonical": "/docs/integrations/llms/titan_takeoff/"},
"/docs/integrations/providers/optimum_intel/": {"canonical": "/docs/integrations/providers/intel/"},
"/docs/use_cases/graph/integrations/diffbot_graphtransformer/": {"canonical": "/docs/integrations/graphs/diffbot/"},
"/docs/use_cases/graph/integrations/graph_arangodb_qa/": {"canonical": "/docs/integrations/graphs/arangodb/"},
"/docs/use_cases/graph/integrations/graph_cypher_qa/": {"canonical": "/docs/integrations/graphs/neo4j_cypher/"},
"/docs/use_cases/graph/integrations/graph_falkordb_qa/": {"canonical": "/docs/integrations/graphs/falkordb/"},
"/docs/use_cases/graph/integrations/graph_gremlin_cosmosdb_qa/": {"canonical": "/docs/integrations/graphs/azure_cosmosdb_gremlin/"},
"/docs/use_cases/graph/integrations/graph_hugegraph_qa/": {"canonical": "/docs/integrations/graphs/hugegraph/"},
"/docs/use_cases/graph/integrations/graph_kuzu_qa/": {"canonical": "/docs/integrations/graphs/kuzu_db/"},
"/docs/use_cases/graph/integrations/graph_memgraph_qa/": {"canonical": "/docs/integrations/graphs/memgraph/"},
"/docs/use_cases/graph/integrations/graph_nebula_qa/": {"canonical": "/docs/integrations/graphs/nebula_graph/"},
"/docs/use_cases/graph/integrations/graph_networkx_qa/": {"canonical": "/docs/integrations/graphs/networkx/"},
"/docs/use_cases/graph/integrations/graph_ontotext_graphdb_qa/": {"canonical": "/docs/integrations/graphs/ontotext/"},
"/docs/use_cases/graph/integrations/graph_sparql_qa/": {"canonical": "/docs/integrations/graphs/rdflib_sparql/"},
"/docs/use_cases/graph/integrations/neptune_cypher_qa/": {"canonical": "/docs/integrations/graphs/amazon_neptune_open_cypher/"},
"/docs/use_cases/graph/integrations/neptune_sparql_qa/": {"canonical": "/docs/integrations/graphs/amazon_neptune_sparql/"},
"/docs/integrations/providers/facebook_chat/": {"canonical": "/docs/integrations/providers/facebook/"},
"/docs/integrations/providers/facebook_faiss/": {"canonical": "/docs/integrations/providers/facebook/"},
"/docs/integrations/memory/google_cloud_sql_mssql/": {"canonical": "/docs/integrations/memory/google_sql_mssql/"},
"/docs/integrations/memory/google_cloud_sql_mysql/": {"canonical": "/docs/integrations/memory/google_sql_mysql/"},
"/docs/integrations/memory/google_cloud_sql_pg/": {"canonical": "/docs/integrations/memory/google_sql_pg/"},
"/docs/integrations/memory/google_datastore/": {"canonical": "/docs/integrations/memory/google_firestore_datastore/"},
"/docs/integrations/llms/huggingface_textgen_inference/": {"canonical": "/docs/integrations/llms/huggingface_endpoint/"},
"/docs/integrations/llms/huggingface_hub/": {"canonical": "/docs/integrations/llms/huggingface_endpoint/"},
"/docs/integrations/llms/bigdl/": {"canonical": "/docs/integrations/llms/ipex_llm/"},
"/docs/integrations/llms/watsonxllm/": {"canonical": "/docs/integrations/llms/ibm_watsonx/"},
"/docs/integrations/llms/pai_eas_endpoint/": {"canonical": "/docs/integrations/llms/alibabacloud_pai_eas_endpoint/"},
"/docs/integrations/vectorstores/hanavector/": {"canonical": "/docs/integrations/vectorstores/sap_hanavector/"},
"/docs/use_cases/qa_structured/sql/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/"]},
"/docs/contributing/packages/": {"canonical": "/docs/versions/release_policy/", "alternative": ["/v0.1/docs/packages/"]},
"/docs/community/": {"canonical": "/docs/contributing/"},
"/docs/modules/chains/(.+)/": {"canonical": "/docs/versions/migrating_chains/", "alternative": ["/v0.1/docs/modules/chains/"]},
"/docs/modules/agents/how_to/custom_llm_agent/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/how_to/custom_agent/"]},
"/docs/modules/agents/how_to/custom-functions-with-openai-functions-agent/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/how_to/custom_agent/"]},
"/docs/modules/agents/how_to/custom_llm_chat_agent/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/how_to/custom_agent/"]},
"/docs/modules/agents/how_to/custom_mrkl_agent/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/how_to/custom_agent/"]},
"/docs/modules/agents/how_to/streaming_stdout_final_only/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/how_to/streaming/"]},
"/docs/modules/model_io/prompts/prompts_pipelining/": {"canonical": "/docs/how_to/prompts_composition/", "alternative": ["/v0.1/docs/modules/model_io/prompts/composition/"]},
"/docs/modules/model_io/output_parsers/enum/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/enum/"]},
"/docs/modules/model_io/output_parsers/pandas_dataframe/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/pandas_dataframe/"]},
"/docs/modules/model_io/output_parsers/structured/": {"canonical": "/docs/how_to/output_parser_structured/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/structured/"]},
"/docs/modules/model_io/output_parsers/xml/": {"canonical": "/docs/how_to/output_parser_xml/", "alternative": ["/v0.1/docs/modules/model_io/output_parsers/types/xml/"]},
"/docs/use_cases/question_answering/code_understanding/": {"canonical": "https://langchain-ai.github.io/langgraph/tutorials/code_assistant/langgraph_code_assistant/", "alternative": ["/v0.1/docs/use_cases/code_understanding/"]},
"/docs/use_cases/question_answering/document-context-aware-QA/": {"canonical": "/docs/how_to/#text-splitters", "alternative": ["/v0.1/docs/modules/data_connection/document_transformers/"]},
"/docs/integrations/providers/alibabacloud_opensearch/": {"canonical": "/docs/integrations/providers/alibaba_cloud/"},
"/docs/integrations/chat/pai_eas_chat_endpoint/": {"canonical": "/docs/integrations/chat/alibaba_cloud_pai_eas/"},
"/docs/integrations/providers/tencentvectordb/": {"canonical": "/docs/integrations/providers/tencent/"},
"/docs/integrations/chat/hunyuan/": {"canonical": "/docs/integrations/chat/tencent_hunyuan/"},
"/docs/integrations/document_loaders/excel/": {"canonical": "/docs/integrations/document_loaders/microsoft_excel/"},
"/docs/integrations/document_loaders/onenote/": {"canonical": "/docs/integrations/document_loaders/microsoft_onenote/"},
"/docs/integrations/providers/aws_dynamodb/": {"canonical": "/docs/integrations/providers/aws/"},
"/docs/integrations/providers/scann/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/toolkits/google_drive/": {"canonical": "/docs/integrations/tools/google_drive/"},
"/docs/use_cases/question_answering/chat_vector_db/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/in_memory_question_answering/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/multi_retrieval_qa_router/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/multiple_retrieval/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/vector_db_qa/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/vector_db_text_generation/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/guides/langsmith/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/langsmith/"]},
"/docs/guides/langsmith/walkthrough/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/langsmith/walkthrough/"]},
"/docs/use_cases/qa_structured/integrations/sqlite/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/"]},
"/docs/use_cases/more/data_generation/": {"canonical": "/docs/tutorials/data_generation/", "alternative": ["/v0.1/docs/use_cases/data_generation/"]},
"/docs/use_cases/question_answering/how_to/chat_vector_db/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/how_to/conversational_retrieval_agents/": {"canonical": "/docs/tutorials/qa_chat_history/", "alternative": ["/v0.1/docs/use_cases/question_answering/conversational_retrieval_agents/"]},
"/docs/use_cases/question_answering/question_answering/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/use_cases/question_answering/how_to/local_retrieval_qa/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/local_retrieval_qa/"]},
"/docs/use_cases/question_answering/how_to/question_answering/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/modules/agents/agents/examples/mrkl_chat(.html?)/": {"canonical": "/docs/how_to/#agents", "alternative": ["/v0.1/docs/modules/agents/"]},
"/docs/integrations/": {"canonical": "/docs/integrations/providers/"},
"/docs/expression_language/cookbook/routing/": {"canonical": "/docs/how_to/routing/", "alternative": ["/v0.1/docs/expression_language/how_to/routing/"]},
"/docs/guides/expression_language/": {"canonical": "/docs/how_to/#langchain-expression-language-lcel", "alternative": ["/v0.1/docs/expression_language/"]},
"/docs/integrations/providers/amazon_api_gateway/": {"canonical": "/docs/integrations/providers/aws/"},
"/docs/integrations/providers/huggingface/": {"canonical": "/docs/integrations/providers/huggingface/"},
"/docs/integrations/providers/azure_blob_storage/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/google_vertexai_matchingengine/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/providers/aws_s3/": {"canonical": "/docs/integrations/providers/aws/"},
"/docs/integrations/providers/azure_openai/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/azure_cognitive_search_/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/bedrock/": {"canonical": "/docs/integrations/providers/aws/"},
"/docs/integrations/providers/google_bigquery/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/providers/google_cloud_storage/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/providers/google_drive/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/providers/google_search/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/providers/microsoft_onedrive/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/microsoft_powerpoint/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/microsoft_word/": {"canonical": "/docs/integrations/providers/microsoft/"},
"/docs/integrations/providers/sagemaker_endpoint/": {"canonical": "/docs/integrations/providers/aws/"},
"/docs/integrations/providers/sagemaker_tracking/": {"canonical": "/docs/integrations/callbacks/sagemaker_tracking/"},
"/docs/integrations/providers/openai/": {"canonical": "/docs/integrations/providers/openai/"},
"/docs/integrations/cassandra/": {"canonical": "/docs/integrations/providers/cassandra/"},
"/docs/integrations/providers/providers/semadb/": {"canonical": "/docs/integrations/providers/semadb/"},
"/docs/integrations/vectorstores/vectorstores/semadb/": {"canonical": "/docs/integrations/vectorstores/semadb/"},
"/docs/integrations/vectorstores/async_faiss/": {"canonical": "/docs/integrations/vectorstores/faiss_async/"},
"/docs/integrations/vectorstores/matchingengine/": {"canonical": "/docs/integrations/vectorstores/google_vertex_ai_vector_search/"},
"/docs/integrations/tools/sqlite/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/"]},
"/docs/integrations/document_loaders/pdf-amazonTextractPDFLoader/": {"canonical": "/docs/integrations/document_loaders/amazon_textract/"},
"/docs/integrations/document_loaders/Etherscan/": {"canonical": "/docs/integrations/document_loaders/etherscan/"},
"/docs/integrations/document_loaders/merge_doc_loader/": {"canonical": "/docs/integrations/document_loaders/merge_doc/"},
"/docs/integrations/document_loaders/recursive_url_loader/": {"canonical": "/docs/integrations/document_loaders/recursive_url/"},
"/docs/integrations/providers/google_document_ai/": {"canonical": "/docs/integrations/providers/google/"},
"/docs/integrations/memory/motorhead_memory_managed/": {"canonical": "/docs/integrations/memory/motorhead_memory/"},
"/docs/integrations/memory/dynamodb_chat_message_history/": {"canonical": "/docs/integrations/memory/aws_dynamodb/"},
"/docs/integrations/memory/entity_memory_with_sqlite/": {"canonical": "/docs/integrations/memory/sqlite/"},
"/docs/modules/model_io/chat/integrations/anthropic/": {"canonical": "/docs/integrations/chat/anthropic/"},
"/docs/modules/model_io/chat/integrations/azure_chat_openai/": {"canonical": "/docs/integrations/chat/azure_chat_openai/"},
"/docs/modules/model_io/chat/integrations/google_vertex_ai_palm/": {"canonical": "/docs/integrations/chat/google_vertex_ai_palm/"},
"/docs/modules/model_io/chat/integrations/openai/": {"canonical": "/docs/integrations/chat/openai/"},
"/docs/modules/model_io/chat/integrations/promptlayer_chatopenai/": {"canonical": "/docs/integrations/chat/promptlayer_chatopenai/"},
"/docs/modules/model_io/llms/integrations/ai21/": {"canonical": "/docs/integrations/llms/ai21/"},
"/docs/modules/model_io/llms/integrations/aleph_alpha/": {"canonical": "/docs/integrations/llms/aleph_alpha/"},
"/docs/modules/model_io/llms/integrations/anyscale/": {"canonical": "/docs/integrations/llms/anyscale/"},
"/docs/modules/model_io/llms/integrations/banana/": {"canonical": "/docs/integrations/llms/banana/"},
"/docs/modules/model_io/llms/integrations/baseten/": {"canonical": "/docs/integrations/llms/baseten/"},
"/docs/modules/model_io/llms/integrations/beam/": {"canonical": "/docs/integrations/llms/beam/"},
"/docs/modules/model_io/llms/integrations/bedrock/": {"canonical": "/docs/integrations/llms/bedrock/"},
"/docs/modules/model_io/llms/integrations/cohere/": {"canonical": "/docs/integrations/llms/cohere/"},
"/docs/modules/model_io/llms/integrations/ctransformers/": {"canonical": "/docs/integrations/llms/ctransformers/"},
"/docs/modules/model_io/llms/integrations/databricks/": {"canonical": "/docs/integrations/llms/databricks/"},
"/docs/modules/model_io/llms/integrations/google_vertex_ai_palm/": {"canonical": "/docs/integrations/llms/google_vertex_ai_palm/"},
"/docs/modules/model_io/llms/integrations/huggingface_pipelines/": {"canonical": "/docs/integrations/llms/huggingface_pipelines/"},
"/docs/modules/model_io/llms/integrations/jsonformer_experimental/": {"canonical": "/docs/integrations/llms/jsonformer_experimental/"},
"/docs/modules/model_io/llms/integrations/llamacpp/": {"canonical": "/docs/integrations/llms/llamacpp/"},
"/docs/modules/model_io/llms/integrations/manifest/": {"canonical": "/docs/integrations/llms/manifest/"},
"/docs/modules/model_io/llms/integrations/modal/": {"canonical": "/docs/integrations/llms/modal/"},
"/docs/modules/model_io/llms/integrations/mosaicml/": {"canonical": "/docs/integrations/llms/mosaicml/"},
"/docs/modules/model_io/llms/integrations/nlpcloud/": {"canonical": "/docs/integrations/llms/nlpcloud/"},
"/docs/modules/model_io/llms/integrations/openai/": {"canonical": "/docs/integrations/llms/openai/"},
"/docs/modules/model_io/llms/integrations/openlm/": {"canonical": "/docs/integrations/llms/openlm/"},
"/docs/modules/model_io/llms/integrations/predictionguard/": {"canonical": "/docs/integrations/llms/predictionguard/"},
"/docs/modules/model_io/llms/integrations/promptlayer_openai/": {"canonical": "/docs/integrations/llms/promptlayer_openai/"},
"/docs/modules/model_io/llms/integrations/rellm_experimental/": {"canonical": "/docs/integrations/llms/rellm_experimental/"},
"/docs/modules/model_io/llms/integrations/replicate/": {"canonical": "/docs/integrations/llms/replicate/"},
"/docs/modules/model_io/llms/integrations/runhouse/": {"canonical": "/docs/integrations/llms/runhouse/"},
"/docs/modules/model_io/llms/integrations/sagemaker/": {"canonical": "/docs/integrations/llms/sagemaker/"},
"/docs/modules/model_io/llms/integrations/stochasticai/": {"canonical": "/docs/integrations/llms/stochasticai/"},
"/docs/modules/model_io/llms/integrations/writer/": {"canonical": "/docs/integrations/llms/writer/"},
"/en/latest/use_cases/apis.html/": {"canonical": null, "alternative": ["/v0.1/docs/use_cases/apis/"]},
"/en/latest/use_cases/extraction.html/": {"canonical": "/docs/tutorials/extraction/", "alternative": ["/v0.1/docs/use_cases/extraction/"]},
"/en/latest/use_cases/summarization.html/": {"canonical": "/docs/tutorials/summarization/", "alternative": ["/v0.1/docs/use_cases/summarization/"]},
"/en/latest/use_cases/tabular.html/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/"]},
"/en/latest/youtube.html/": {"canonical": "/docs/additional_resources/youtube/"},
"/docs/": {"canonical": "/"},
"/en/latest/": {"canonical": "/"},
"/en/latest/index.html/": {"canonical": "/"},
"/en/latest/modules/models.html/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/"]},
"/docs/integrations/retrievers/google_cloud_enterprise_search/": {"canonical": "/docs/integrations/retrievers/google_vertex_ai_search/"},
"/docs/integrations/tools/metaphor_search/": {"canonical": "/docs/integrations/tools/exa_search/"},
"/docs/expression_language/how_to/fallbacks/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/fallbacks/"]},
"/docs/expression_language/cookbook/retrieval/": {"canonical": "/docs/tutorials/rag/", "alternative": ["/v0.1/docs/use_cases/question_answering/"]},
"/docs/expression_language/cookbook/agent/": {"canonical": "/docs/how_to/migrate_agent/", "alternative": ["/v0.1/docs/modules/agents/agent_types/xml_agent/"]},
"/docs/modules/model_io/prompts/message_prompts/": {"canonical": "/docs/how_to/#prompt-templates", "alternative": ["/v0.1/docs/modules/model_io/prompts/quick_start/"]},
"/docs/modules/model_io/prompts/pipeline/": {"canonical": "/docs/how_to/prompts_composition/", "alternative": ["/v0.1/docs/modules/model_io/prompts/composition/"]},
"/docs/expression_language/cookbook/memory/": {"canonical": "/docs/how_to/chatbots_memory/", "alternative": ["/v0.1/docs/modules/memory/"]},
"/docs/expression_language/cookbook/tools/": {"canonical": "/docs/tutorials/agents/", "alternative": ["/v0.1/docs/use_cases/tool_use/quickstart/"]},
"/docs/expression_language/cookbook/sql_db/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/quickstart/"]},
"/docs/expression_language/cookbook/moderation/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/safety/moderation/"]},
"/docs/expression_language/cookbook/embedding_router/": {"canonical": "/docs/how_to/routing/", "alternative": ["/v0.1/docs/expression_language/how_to/routing/"]},
"/docs/guides/structured_output/": {"canonical": "/docs/how_to/structured_output/", "alternative": ["/v0.1/docs/modules/model_io/chat/structured_output/"]},
"/docs/modules/agents/how_to/structured_tools/": {"canonical": "/docs/how_to/#tools", "alternative": ["/v0.1/docs/modules/tools/"]},
"/docs/use_cases/csv/": {"canonical": "/docs/tutorials/sql_qa/", "alternative": ["/v0.1/docs/use_cases/sql/csv/"]},
"/docs/guides/debugging/": {"canonical": "/docs/how_to/debugging/", "alternative": ["/v0.1/docs/guides/development/debugging/"]},
"/docs/guides/extending_langchain/": {"canonical": "/docs/how_to/#custom", "alternative": ["/v0.1/docs/guides/development/extending_langchain/"]},
"/docs/guides/fallbacks/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/fallbacks/"]},
"/docs/guides/model_laboratory/": {"canonical": "https://docs.smith.langchain.com/", "alternative": ["/v0.1/docs/guides/productionization/evaluation/"]},
"/docs/guides/pydantic_compatibility/": {"canonical": "/docs/how_to/pydantic_compatibility/", "alternative": ["/v0.1/docs/guides/development/pydantic_compatibility/"]},
"/docs/guides/local_llms/": {"canonical": "/docs/how_to/local_llms/", "alternative": ["/v0.1/docs/guides/development/local_llms/"]},
"/docs/modules/model_io/quick_start/": {"canonical": "/docs/how_to/#chat-models", "alternative": ["/v0.1/docs/modules/model_io/"]},
"/docs/expression_language/how_to/generators/": {"canonical": "/docs/how_to/functions/", "alternative": ["/v0.1/docs/expression_language/primitives/functions/"]},
"/docs/expression_language/how_to/functions/": {"canonical": "/docs/how_to/functions/", "alternative": ["/v0.1/docs/expression_language/primitives/functions/"]},
"/docs/expression_language/how_to/passthrough/": {"canonical": "/docs/how_to/passthrough/", "alternative": ["/v0.1/docs/expression_language/primitives/passthrough/"]},
"/docs/expression_language/how_to/map/": {"canonical": "/docs/how_to/parallel/", "alternative": ["/v0.1/docs/expression_language/primitives/parallel/"]},
"/docs/expression_language/how_to/binding/": {"canonical": "/docs/how_to/binding/", "alternative": ["/v0.1/docs/expression_language/primitives/binding/"]},
"/docs/expression_language/how_to/configure/": {"canonical": "/docs/how_to/configure/", "alternative": ["/v0.1/docs/expression_language/primitives/configure/"]},
"/docs/expression_language/cookbook/prompt_llm_parser/": {"canonical": "/docs/how_to/sequence/", "alternative": ["/v0.1/docs/expression_language/get_started/"]},
"/docs/contributing/documentation/": {"canonical": "/docs/contributing/how_to/documentation/", "alternative": ["/v0.1/docs/contributing/documentation/technical_logistics/"]},
"/docs/expression_language/cookbook/": {"canonical": "/docs/how_to/#langchain-expression-language-lcel", "alternative": ["/v0.1/docs/expression_language/"]},
"/docs/integrations/text_embedding/solar/": {"canonical": "/docs/integrations/text_embedding/upstage/"},
"/docs/integrations/chat/solar/": {"canonical": "/docs/integrations/chat/upstage/"},
// custom ones
"/docs/modules/model_io/chat/llm_chain/": {
"canonical": "/docs/tutorials/llm_chain/"
},
"/docs/modules/agents/toolkits/": {
"canonical": "/docs/integrations/tools/",
"alternative": [
"/v0.1/docs/integrations/toolkits/"
]
}
} |