File size: 102,778 Bytes
0f07ba7 |
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 |
/*
https://github.com/david-haerer/chatapi
MIT License
Copyright (c) 2023 David Härer
Copyright (c) 2024 Ettore Di Giacinto
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
// Track requests per chat ID to support parallel chatting
let activeRequests = new Map(); // chatId -> { controller, reader, startTime, tokensReceived, interval, maxTokensPerSecond }
// Global variables for UI (stop button, etc.)
let currentAbortController = null; // For stop button - tracks the active chat's request
let currentReader = null;
let tokensPerSecondInterval = null;
let tokensPerSecondIntervalChatId = null; // Track which chat the interval is for
let lastTokensPerSecond = null; // Store the last calculated rate
// Storage key for chats
const CHATS_STORAGE_KEY = 'localai_chats_data';
const SYSTEM_PROMPT_STORAGE_KEY = 'system_prompt'; // Old key for migration
// Debounce timer for auto-save
let saveDebounceTimer = null;
const SAVE_DEBOUNCE_MS = 500;
// Save chats to localStorage with error handling
function saveChatsToStorage() {
if (!window.Alpine || !Alpine.store("chat")) {
return false;
}
try {
const chatStore = Alpine.store("chat");
const data = {
chats: chatStore.chats.map(chat => ({
id: chat.id,
name: chat.name,
model: chat.model,
history: chat.history,
systemPrompt: chat.systemPrompt,
mcpMode: chat.mcpMode,
tokenUsage: chat.tokenUsage,
contextSize: chat.contextSize,
createdAt: chat.createdAt,
updatedAt: chat.updatedAt
})),
activeChatId: chatStore.activeChatId,
lastSaved: Date.now()
};
const jsonData = JSON.stringify(data);
localStorage.setItem(CHATS_STORAGE_KEY, jsonData);
return true;
} catch (error) {
// Handle quota exceeded or other storage errors
if (error.name === 'QuotaExceededError' || error.code === 22) {
console.warn('localStorage quota exceeded. Consider cleaning up old chats.');
// Try to save without history (last resort)
try {
const chatStore = Alpine.store("chat");
const data = {
chats: chatStore.chats.map(chat => ({
id: chat.id,
name: chat.name,
model: chat.model,
history: [], // Clear history to save space
systemPrompt: chat.systemPrompt,
mcpMode: chat.mcpMode,
tokenUsage: chat.tokenUsage,
contextSize: chat.contextSize,
createdAt: chat.createdAt,
updatedAt: chat.updatedAt
})),
activeChatId: chatStore.activeChatId,
lastSaved: Date.now()
};
localStorage.setItem(CHATS_STORAGE_KEY, JSON.stringify(data));
return true;
} catch (e2) {
console.error('Failed to save chats even without history:', e2);
return false;
}
} else {
console.error('Error saving chats to localStorage:', error);
return false;
}
}
}
// Load chats from localStorage with migration support
function loadChatsFromStorage() {
try {
const stored = localStorage.getItem(CHATS_STORAGE_KEY);
if (stored) {
const data = JSON.parse(stored);
// Validate structure
if (data && Array.isArray(data.chats)) {
return {
chats: data.chats,
activeChatId: data.activeChatId || null,
lastSaved: data.lastSaved || null
};
}
}
// Migration: Check for old format
const oldSystemPrompt = localStorage.getItem(SYSTEM_PROMPT_STORAGE_KEY);
if (oldSystemPrompt) {
// Migrate old single-chat format to new multi-chat format
const chatStore = Alpine.store("chat");
if (chatStore) {
const migratedChat = chatStore.createChat(
document.getElementById("chat-model")?.value || "",
oldSystemPrompt,
false
);
// Try to preserve any existing history if available
if (chatStore.activeChat()) {
chatStore.activeChat().name = "Migrated Chat";
}
// Save migrated data
saveChatsToStorage();
// Remove old key
localStorage.removeItem(SYSTEM_PROMPT_STORAGE_KEY);
return {
chats: chatStore.chats,
activeChatId: chatStore.activeChatId,
lastSaved: Date.now()
};
}
}
return null;
} catch (error) {
console.error('Error loading chats from localStorage:', error);
// Try to recover by clearing corrupted data
try {
localStorage.removeItem(CHATS_STORAGE_KEY);
} catch (e) {
console.error('Failed to clear corrupted data:', e);
}
return null;
}
}
// Auto-save with debouncing
function autoSaveChats() {
if (saveDebounceTimer) {
clearTimeout(saveDebounceTimer);
}
saveDebounceTimer = setTimeout(() => {
saveChatsToStorage();
}, SAVE_DEBOUNCE_MS);
}
// Function to check if a chat has an active request (for UI indicators)
function isChatRequestActive(chatId) {
if (!chatId || !activeRequests) {
return false;
}
const request = activeRequests.get(chatId);
return request && (request.controller || request.reader);
}
// Helper function to update reactive tracking for UI indicators
function updateRequestTracking(chatId, isActive) {
const chatStore = Alpine.store("chat");
if (chatStore && typeof chatStore.updateActiveRequestTracking === 'function') {
chatStore.updateActiveRequestTracking(chatId, isActive);
}
}
// Make functions available globally
window.autoSaveChats = autoSaveChats;
window.createNewChat = createNewChat;
window.switchChat = switchChat;
window.deleteChat = deleteChat;
window.bulkDeleteChats = bulkDeleteChats;
window.updateChatName = updateChatName;
window.updateUIForActiveChat = updateUIForActiveChat;
window.isChatRequestActive = isChatRequestActive;
// Create a new chat
function createNewChat(model, systemPrompt, mcpMode) {
if (!window.Alpine || !Alpine.store("chat")) {
return null;
}
const chatStore = Alpine.store("chat");
const chat = chatStore.createChat(model, systemPrompt, mcpMode);
// Save to storage
saveChatsToStorage();
// Update UI to reflect new active chat
updateUIForActiveChat();
return chat;
}
// Switch to a different chat
function switchChat(chatId) {
if (!window.Alpine || !Alpine.store("chat")) {
return false;
}
const chatStore = Alpine.store("chat");
const oldActiveChat = chatStore.activeChat();
if (chatStore.switchChat(chatId)) {
// CRITICAL: Stop interval FIRST before any other operations
// This prevents the interval from updating with wrong chat's data
if (tokensPerSecondInterval) {
clearInterval(tokensPerSecondInterval);
tokensPerSecondInterval = null;
}
// Immediately clear the display to prevent showing stale data
const tokensPerSecondDisplay = document.getElementById('tokens-per-second');
if (tokensPerSecondDisplay) {
tokensPerSecondDisplay.textContent = '-';
}
// Save current state before switching
saveChatsToStorage();
// Hide badge when switching chats - will be shown if new chat has completed request
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (maxBadge) {
maxBadge.style.display = 'none';
}
// Update global request tracking for stop button (only if new chat has active request)
const newActiveChat = chatStore.activeChat();
const newRequest = activeRequests.get(newActiveChat?.id);
if (newRequest) {
currentAbortController = newRequest.controller;
currentReader = newRequest.reader;
// Update loader state if new chat has active request
const hasActiveRequest = newRequest.controller || newRequest.reader;
if (hasActiveRequest) {
toggleLoader(true, newActiveChat.id);
// Wait a bit to ensure switch is complete and interval is stopped
setTimeout(() => {
// Double-check we're still on the same chat and interval is stopped
const currentActiveChat = chatStore.activeChat();
if (currentActiveChat && currentActiveChat.id === newActiveChat.id) {
// Make absolutely sure interval is stopped
if (tokensPerSecondInterval) {
clearInterval(tokensPerSecondInterval);
tokensPerSecondInterval = null;
tokensPerSecondIntervalChatId = null;
}
// Update display for the new active chat
updateTokensPerSecond(newActiveChat.id);
// Restart interval to pick up the new active chat
startTokensPerSecondInterval();
}
}, 100);
} else {
toggleLoader(false, newActiveChat.id);
}
} else {
// No active request for new chat, clear global references
currentAbortController = null;
currentReader = null;
toggleLoader(false, newActiveChat?.id);
// Display is already cleared above
// Check if this chat has a completed request with max tokens/s to show
// Note: We only show badge for completed requests, not active ones
// The badge will be shown when the request ends, not when switching to a chat
}
// Update UI to reflect new active chat
updateUIForActiveChat();
return true;
}
return false;
}
// Delete a chat
function deleteChat(chatId) {
if (!window.Alpine || !Alpine.store("chat")) {
return false;
}
const chatStore = Alpine.store("chat");
// Prevent deleting the last chat
if (chatStore.chats.length <= 1) {
alert('Cannot delete the last chat. Please create a new chat first.');
return false;
}
if (chatStore.deleteChat(chatId)) {
// Ensure at least one chat exists after deletion
if (chatStore.chats.length === 0) {
const currentModel = document.getElementById("chat-model")?.value || "";
chatStore.createChat(currentModel, "", false);
}
saveChatsToStorage();
updateUIForActiveChat();
return true;
}
return false;
}
// Bulk delete chats
function bulkDeleteChats(options) {
if (!window.Alpine || !Alpine.store("chat")) {
return 0;
}
const chatStore = Alpine.store("chat");
let deletedCount = 0;
const now = Date.now();
if (options.deleteAll) {
// Delete all chats except active one, or create new if deleting all
const activeId = chatStore.activeChatId;
chatStore.chats = chatStore.chats.filter(chat => {
if (chat.id === activeId && chatStore.chats.length > 1) {
return true; // Keep active chat if there are others
}
deletedCount++;
return false;
});
// If all deleted, create a new chat
if (chatStore.chats.length === 0) {
chatStore.createChat();
} else if (!chatStore.chats.find(c => c.id === activeId)) {
// Active chat was deleted, switch to first available
if (chatStore.chats.length > 0) {
chatStore.activeChatId = chatStore.chats[0].id;
}
}
} else if (options.olderThanDays) {
const cutoffTime = now - (options.olderThanDays * 24 * 60 * 60 * 1000);
const activeId = chatStore.activeChatId;
chatStore.chats = chatStore.chats.filter(chat => {
if (chat.id === activeId) {
return true; // Never delete active chat
}
if (chat.updatedAt < cutoffTime) {
deletedCount++;
return false;
}
return true;
});
// Ensure at least one chat exists
if (chatStore.chats.length === 0) {
const currentModel = document.getElementById("chat-model")?.value || "";
chatStore.createChat(currentModel, "", false);
}
}
if (deletedCount > 0) {
saveChatsToStorage();
updateUIForActiveChat();
}
return deletedCount;
}
// Update UI elements to reflect active chat
function updateUIForActiveChat() {
if (!window.Alpine || !Alpine.store("chat")) {
return;
}
const chatStore = Alpine.store("chat");
// Ensure at least one chat exists
if (!chatStore.chats || chatStore.chats.length === 0) {
const currentModel = document.getElementById("chat-model")?.value || "";
chatStore.createChat(currentModel, "", false);
}
const activeChat = chatStore.activeChat();
if (!activeChat) {
// No active chat, set first one as active
if (chatStore.chats.length > 0) {
chatStore.activeChatId = chatStore.chats[0].id;
} else {
// Still no chats, create one
const currentModel = document.getElementById("chat-model")?.value || "";
chatStore.createChat(currentModel, "", false);
}
return;
}
// Update system prompt input
const systemPromptInput = document.getElementById("systemPrompt");
if (systemPromptInput) {
systemPromptInput.value = activeChat.systemPrompt || "";
}
// Update MCP toggle
const mcpToggle = document.getElementById("mcp-toggle");
if (mcpToggle) {
mcpToggle.checked = activeChat.mcpMode || false;
}
// Update model selector (if needed)
const modelSelector = document.getElementById("modelSelector");
if (modelSelector && activeChat.model) {
// Find and select the option matching the active chat's model
for (let option of modelSelector.options) {
if (option.value === `chat/${activeChat.model}` || option.text === activeChat.model) {
option.selected = true;
break;
}
}
}
// Update chat model hidden input
const chatModelInput = document.getElementById("chat-model");
if (chatModelInput) {
chatModelInput.value = activeChat.model || "";
}
}
// Update chat name
function updateChatName(chatId, name) {
if (!window.Alpine || !Alpine.store("chat")) {
return false;
}
const chatStore = Alpine.store("chat");
if (chatStore.updateChatName(chatId, name)) {
autoSaveChats();
return true;
}
return false;
}
function toggleLoader(show, chatId = null) {
const sendButton = document.getElementById('send-button');
const stopButton = document.getElementById('stop-button');
const headerLoadingIndicator = document.getElementById('header-loading-indicator');
const tokensPerSecondDisplay = document.getElementById('tokens-per-second');
if (show) {
sendButton.style.display = 'none';
stopButton.style.display = 'block';
if (headerLoadingIndicator) headerLoadingIndicator.style.display = 'block';
// Start updating tokens/second display only if this is for the active chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
// Always stop any existing interval first
if (tokensPerSecondInterval) {
clearInterval(tokensPerSecondInterval);
tokensPerSecondInterval = null;
}
// Use provided chatId or get from active chat
const targetChatId = chatId || (activeChat ? activeChat.id : null);
if (tokensPerSecondDisplay && targetChatId && activeChat && activeChat.id === targetChatId) {
tokensPerSecondDisplay.textContent = '-';
// Hide max badge when starting new request
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (maxBadge) {
maxBadge.style.display = 'none';
}
// Don't start interval here - it will be started when the request is created
// Just update once to show initial state
updateTokensPerSecond(targetChatId);
} else if (tokensPerSecondDisplay) {
// Not the active chat, hide or show dash
tokensPerSecondDisplay.textContent = '-';
}
} else {
sendButton.style.display = 'block';
stopButton.style.display = 'none';
if (headerLoadingIndicator) headerLoadingIndicator.style.display = 'none';
// Stop updating but keep the last value visible only if this was the active chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (chatId && activeChat && activeChat.id === chatId) {
// Stop the interval since this request is done
stopTokensPerSecondInterval();
// Keep the last calculated rate visible
if (tokensPerSecondDisplay && lastTokensPerSecond !== null) {
tokensPerSecondDisplay.textContent = lastTokensPerSecond;
}
// Check if there are other active requests for the active chat and restart interval if needed
const activeRequest = activeRequests.get(activeChat.id);
if (activeRequest && (activeRequest.controller || activeRequest.reader)) {
// Restart interval for the active chat
startTokensPerSecondInterval();
}
} else if (tokensPerSecondDisplay) {
// Not the active chat, just show dash
tokensPerSecondDisplay.textContent = '-';
}
// Only clear global references if this was the active chat
if (chatId && activeChat && activeChat.id === chatId) {
currentAbortController = null;
currentReader = null;
// Show the max tokens/s badge when request ends
const request = activeRequests.get(chatId);
if (request && request.maxTokensPerSecond > 0) {
updateMaxTokensPerSecondBadge(chatId, request.maxTokensPerSecond);
}
}
}
}
// Start a single global interval that updates tokens/second for the active chat
function startTokensPerSecondInterval() {
// Stop any existing interval first
stopTokensPerSecondInterval();
// Get the current active chat ID to track
const chatStore = Alpine.store("chat");
if (!chatStore) {
return;
}
const activeChat = chatStore.activeChat();
if (!activeChat) {
return;
}
// Check if active chat has an active request
// We can start the interval if we have at least a controller (reader will be set when streaming starts)
const request = activeRequests.get(activeChat.id);
if (!request) {
// No active request for this chat
return;
}
if (!request.controller) {
// No controller yet, don't start interval
return;
}
// Store which chat this interval is for
tokensPerSecondIntervalChatId = activeChat.id;
// Start a single interval that always checks the current active chat
// Use a function that always gets fresh state, no closures
tokensPerSecondInterval = setInterval(() => {
// Always get fresh references - no closures
const currentChatStore = Alpine.store("chat");
if (!currentChatStore) {
stopTokensPerSecondInterval();
return;
}
const currentActiveChat = currentChatStore.activeChat();
const tokensPerSecondDisplay = document.getElementById('tokens-per-second');
if (!tokensPerSecondDisplay) {
stopTokensPerSecondInterval();
return;
}
// CRITICAL: Check if the active chat has changed
if (!currentActiveChat || currentActiveChat.id !== tokensPerSecondIntervalChatId) {
// Active chat changed, stop this interval immediately and hide badge
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (maxBadge) {
maxBadge.style.display = 'none';
}
stopTokensPerSecondInterval();
return;
}
// Check if active chat still has an active request
const currentRequest = activeRequests.get(currentActiveChat.id);
if (!currentRequest) {
// No active request for this chat anymore - hide badge
tokensPerSecondDisplay.textContent = '-';
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (maxBadge) {
maxBadge.style.display = 'none';
}
stopTokensPerSecondInterval();
return;
}
// If controller is gone, request ended - show max rate badge only for this chat
if (!currentRequest.controller) {
tokensPerSecondDisplay.textContent = '-';
if (currentRequest.maxTokensPerSecond > 0) {
// Only show badge if this is still the active chat
updateMaxTokensPerSecondBadge(currentActiveChat.id, currentRequest.maxTokensPerSecond);
} else {
// Hide badge if no max value
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (maxBadge) {
maxBadge.style.display = 'none';
}
}
stopTokensPerSecondInterval();
return;
}
// Update for the current active chat only
updateTokensPerSecond(currentActiveChat.id);
}, 250); // Update more frequently for better responsiveness
}
// Stop the tokens/second interval
function stopTokensPerSecondInterval() {
if (tokensPerSecondInterval) {
clearInterval(tokensPerSecondInterval);
tokensPerSecondInterval = null;
}
tokensPerSecondIntervalChatId = null; // Clear tracked chat ID
const tokensPerSecondDisplay = document.getElementById('tokens-per-second');
if (tokensPerSecondDisplay) {
tokensPerSecondDisplay.textContent = '-';
}
// Clear the last rate so it doesn't get reused
lastTokensPerSecond = null;
}
function updateTokensPerSecond(chatId) {
const tokensPerSecondDisplay = document.getElementById('tokens-per-second');
if (!tokensPerSecondDisplay || !chatId) {
return;
}
// Get the request info for this chat
const request = activeRequests.get(chatId);
if (!request || !request.startTime) {
tokensPerSecondDisplay.textContent = '-';
return;
}
// Verify the request is still active (controller is cleared when request ends)
if (!request.controller) {
tokensPerSecondDisplay.textContent = '-';
return;
}
// Check if this is still the active chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore ? chatStore.activeChat() : null;
if (!activeChat || activeChat.id !== chatId) {
// Not the active chat anymore
tokensPerSecondDisplay.textContent = '-';
return;
}
const elapsedSeconds = (Date.now() - request.startTime) / 1000;
// Show rate if we have tokens, otherwise show waiting indicator
if (elapsedSeconds > 0) {
if (request.tokensReceived > 0) {
const rate = request.tokensReceived / elapsedSeconds;
// Update max rate if this is higher
if (rate > (request.maxTokensPerSecond || 0)) {
request.maxTokensPerSecond = rate;
}
const formattedRate = `${rate.toFixed(1)} tokens/s`;
tokensPerSecondDisplay.textContent = formattedRate;
lastTokensPerSecond = formattedRate; // Store the last calculated rate
// Update the max badge if it exists (only show during active request if user wants, or we can show it at the end)
} else {
// Request is active but no tokens yet - show waiting
tokensPerSecondDisplay.textContent = '0.0 tokens/s';
}
} else {
// Just started
tokensPerSecondDisplay.textContent = '-';
}
}
// Update the max tokens/s badge display
function updateMaxTokensPerSecondBadge(chatId, maxRate) {
const maxBadge = document.getElementById('max-tokens-per-second-badge');
if (!maxBadge) return;
// Check if this is still the active chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore ? chatStore.activeChat() : null;
if (!activeChat || activeChat.id !== chatId) {
// Not the active chat, hide badge
maxBadge.style.display = 'none';
return;
}
// Only show badge if we have a valid max rate
if (maxRate > 0) {
maxBadge.textContent = `Peak: ${maxRate.toFixed(1)} tokens/s`;
maxBadge.style.display = 'inline-flex';
} else {
maxBadge.style.display = 'none';
}
}
function scrollThinkingBoxToBottom() {
// Find all thinking/reasoning message containers that are expanded
const thinkingBoxes = document.querySelectorAll('[data-thinking-box]');
thinkingBoxes.forEach(box => {
// Only scroll if the box is visible (expanded) and has overflow
if (box.offsetParent !== null && box.scrollHeight > box.clientHeight) {
box.scrollTo({
top: box.scrollHeight,
behavior: 'smooth'
});
}
});
}
// Make function available globally
window.scrollThinkingBoxToBottom = scrollThinkingBoxToBottom;
function stopRequest() {
// Stop the request for the currently active chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (!activeChat) return;
const request = activeRequests.get(activeChat.id);
const requestModel = request?.model || null; // Get model before deleting request
if (request) {
if (request.controller) {
request.controller.abort();
}
if (request.reader) {
request.reader.cancel();
}
if (request.interval) {
clearInterval(request.interval);
}
activeRequests.delete(activeChat.id);
updateRequestTracking(activeChat.id, false);
}
// Also clear global references
if (currentAbortController) {
currentAbortController.abort();
currentAbortController = null;
}
if (currentReader) {
currentReader.cancel();
currentReader = null;
}
toggleLoader(false, activeChat.id);
chatStore.add(
"assistant",
`<span class='error'>Request cancelled by user</span>`,
null,
null,
activeChat.id,
requestModel
);
}
function processThinkingTags(content) {
const thinkingRegex = /<thinking>(.*?)<\/thinking>|<think>(.*?)<\/think>/gs;
const parts = content.split(thinkingRegex);
let regularContent = "";
let thinkingContent = "";
for (let i = 0; i < parts.length; i++) {
if (i % 3 === 0) {
// Regular content
regularContent += parts[i];
} else if (i % 3 === 1) {
// <thinking> content
thinkingContent = parts[i];
} else if (i % 3 === 2) {
// <think> content
thinkingContent = parts[i];
}
}
return {
regularContent: regularContent.trim(),
thinkingContent: thinkingContent.trim()
};
}
function submitSystemPrompt(event) {
event.preventDefault();
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (activeChat) {
activeChat.systemPrompt = document.getElementById("systemPrompt").value;
activeChat.updatedAt = Date.now();
autoSaveChats();
}
document.getElementById("systemPrompt").blur();
}
function handleShutdownResponse(event, modelName) {
// Check if the request was successful
if (event.detail.successful) {
// Show a success message (optional)
console.log(`Model ${modelName} stopped successfully`);
// Refresh the page to update the UI
window.location.reload();
} else {
// Show an error message (optional)
console.error(`Failed to stop model ${modelName}`);
// You could also show a user-friendly error message here
// For now, we'll still refresh to show the current state
window.location.reload();
}
}
var images = [];
var audios = [];
var fileContents = [];
var currentFileNames = [];
// Track file names to data URLs for proper removal
var imageFileMap = new Map(); // fileName -> dataURL
var audioFileMap = new Map(); // fileName -> dataURL
async function extractTextFromPDF(pdfData) {
try {
const pdf = await pdfjsLib.getDocument({ data: pdfData }).promise;
let fullText = '';
for (let i = 1; i <= pdf.numPages; i++) {
const page = await pdf.getPage(i);
const textContent = await page.getTextContent();
const pageText = textContent.items.map(item => item.str).join(' ');
fullText += pageText + '\n';
}
return fullText;
} catch (error) {
console.error('Error extracting text from PDF:', error);
throw error;
}
}
// Global function to handle file selection and update Alpine.js state
window.handleFileSelection = function(event, fileType) {
if (!event.target.files || !event.target.files.length) return;
// Get the Alpine.js component - find the parent div with x-data containing attachedFiles
let inputContainer = event.target.closest('[x-data*="attachedFiles"]');
if (!inputContainer && window.Alpine) {
// Fallback: find any element with attachedFiles in x-data
inputContainer = document.querySelector('[x-data*="attachedFiles"]');
}
if (!inputContainer || !window.Alpine) return;
const alpineData = Alpine.$data(inputContainer);
if (!alpineData || !alpineData.attachedFiles) return;
Array.from(event.target.files).forEach(file => {
// Check if file already exists
const exists = alpineData.attachedFiles.some(f => f.name === file.name && f.type === fileType);
if (!exists) {
alpineData.attachedFiles.push({ name: file.name, type: fileType });
// Process the file based on type
if (fileType === 'image') {
readInputImageFile(file);
} else if (fileType === 'audio') {
readInputAudioFile(file);
} else if (fileType === 'file') {
readInputFileFile(file);
}
}
});
};
// Global function to remove file from input
window.removeFileFromInput = function(fileType, fileName) {
// Remove from arrays
if (fileType === 'image') {
// Remove from images array using the mapping
const dataURL = imageFileMap.get(fileName);
if (dataURL) {
const imageIndex = images.indexOf(dataURL);
if (imageIndex !== -1) {
images.splice(imageIndex, 1);
}
imageFileMap.delete(fileName);
}
} else if (fileType === 'audio') {
// Remove from audios array using the mapping
const dataURL = audioFileMap.get(fileName);
if (dataURL) {
const audioIndex = audios.indexOf(dataURL);
if (audioIndex !== -1) {
audios.splice(audioIndex, 1);
}
audioFileMap.delete(fileName);
}
} else if (fileType === 'file') {
// Remove from fileContents and currentFileNames
const fileIndex = currentFileNames.indexOf(fileName);
if (fileIndex !== -1) {
currentFileNames.splice(fileIndex, 1);
fileContents.splice(fileIndex, 1);
}
}
// Also remove from the actual input element
const inputId = fileType === 'image' ? 'input_image' :
fileType === 'audio' ? 'input_audio' : 'input_file';
const input = document.getElementById(inputId);
if (input && input.files) {
const dt = new DataTransfer();
Array.from(input.files).forEach(file => {
if (file.name !== fileName) {
dt.items.add(file);
}
});
input.files = dt.files;
}
};
function readInputFile() {
if (!this.files || !this.files.length) return;
Array.from(this.files).forEach(file => {
readInputFileFile(file);
});
}
function readInputFileFile(file) {
const FR = new FileReader();
currentFileNames.push(file.name);
const fileExtension = file.name.split('.').pop().toLowerCase();
FR.addEventListener("load", async function(evt) {
if (fileExtension === 'pdf') {
try {
const content = await extractTextFromPDF(evt.target.result);
fileContents.push({ name: file.name, content: content });
} catch (error) {
console.error('Error processing PDF:', error);
fileContents.push({ name: file.name, content: "Error processing PDF file" });
}
} else {
// For text and markdown files
fileContents.push({ name: file.name, content: evt.target.result });
}
});
if (fileExtension === 'pdf') {
FR.readAsArrayBuffer(file);
} else {
FR.readAsText(file);
}
}
function submitPrompt(event) {
event.preventDefault();
const input = document.getElementById("input");
if (!input) return;
const inputValue = input.value;
if (!inputValue.trim()) return; // Don't send empty messages
// Check if there's an active request for the current chat
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (activeChat) {
const activeRequest = activeRequests.get(activeChat.id);
if (activeRequest && (activeRequest.controller || activeRequest.reader)) {
// Abort current request for this chat
stopRequest();
// Small delay to ensure cleanup completes
setTimeout(() => {
// Continue with new request
processAndSendMessage(inputValue);
}, 100);
return;
}
}
processAndSendMessage(inputValue);
}
function processAndSendMessage(inputValue) {
let fullInput = inputValue;
// If there are file contents, append them to the input for the LLM
if (fileContents.length > 0) {
fullInput += "\n\nFile contents:\n";
fileContents.forEach(file => {
fullInput += `\n--- ${file.name} ---\n${file.content}\n`;
});
}
// Show file icons in chat if there are files
let displayContent = inputValue;
if (currentFileNames.length > 0) {
displayContent += "\n\n";
currentFileNames.forEach(fileName => {
displayContent += `<i class="fa-solid fa-file"></i> Attached file: ${fileName}\n`;
});
}
// Add the message to the chat UI with just the icons
Alpine.store("chat").add("user", displayContent, images, audios);
// Update the last message in the store with the full content
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (activeChat && activeChat.history.length > 0) {
activeChat.history[activeChat.history.length - 1].content = fullInput;
activeChat.updatedAt = Date.now();
}
const input = document.getElementById("input");
if (input) input.value = "";
const systemPrompt = activeChat?.systemPrompt || "";
Alpine.nextTick(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
});
// Reset token tracking before starting new request
requestStartTime = Date.now();
tokensReceived = 0;
promptGPT(systemPrompt, fullInput);
// Reset file contents and names after sending
fileContents = [];
currentFileNames = [];
images = [];
audios = [];
imageFileMap.clear();
audioFileMap.clear();
// Clear Alpine.js attachedFiles array
const inputContainer = document.querySelector('[x-data*="attachedFiles"]');
if (inputContainer && window.Alpine) {
const alpineData = Alpine.$data(inputContainer);
if (alpineData && alpineData.attachedFiles) {
alpineData.attachedFiles = [];
}
}
// Clear file inputs
document.getElementById("input_image").value = null;
document.getElementById("input_audio").value = null;
document.getElementById("input_file").value = null;
}
function readInputImage() {
if (!this.files || !this.files.length) return;
Array.from(this.files).forEach(file => {
readInputImageFile(file);
});
}
function readInputImageFile(file) {
const FR = new FileReader();
FR.addEventListener("load", function(evt) {
const dataURL = evt.target.result;
images.push(dataURL);
imageFileMap.set(file.name, dataURL);
});
FR.readAsDataURL(file);
}
function readInputAudio() {
if (!this.files || !this.files.length) return;
Array.from(this.files).forEach(file => {
readInputAudioFile(file);
});
}
function readInputAudioFile(file) {
const FR = new FileReader();
FR.addEventListener("load", function(evt) {
const dataURL = evt.target.result;
audios.push(dataURL);
audioFileMap.set(file.name, dataURL);
});
FR.readAsDataURL(file);
}
async function promptGPT(systemPrompt, input) {
const chatStore = Alpine.store("chat");
const activeChat = chatStore.activeChat();
if (!activeChat) {
console.error('No active chat');
return;
}
const model = activeChat.model || document.getElementById("chat-model").value;
const mcpMode = activeChat.mcpMode || false;
// Reset current request usage tracking for new request
if (activeChat.tokenUsage) {
activeChat.tokenUsage.currentRequest = null;
}
// Store the chat ID for this request so we can track it even if user switches chats
const chatId = activeChat.id;
toggleLoader(true, chatId);
messages = chatStore.messages();
// if systemPrompt isn't empty, push it at the start of messages
if (systemPrompt) {
messages.unshift({
role: "system",
content: systemPrompt
});
}
// loop all messages, and check if there are images or audios. If there are, we need to change the content field
messages.forEach((message) => {
if ((message.image && message.image.length > 0) || (message.audio && message.audio.length > 0)) {
// The content field now becomes an array
message.content = [
{
"type": "text",
"text": message.content
}
]
if (message.image && message.image.length > 0) {
message.image.forEach(img => {
message.content.push(
{
"type": "image_url",
"image_url": {
"url": img,
}
}
);
});
delete message.image;
}
if (message.audio && message.audio.length > 0) {
message.audio.forEach(aud => {
message.content.push(
{
"type": "audio_url",
"audio_url": {
"url": aud,
}
}
);
});
delete message.audio;
}
}
});
// reset the form and the files (already done in processAndSendMessage)
// images, audios, and file inputs are cleared after sending
// Choose endpoint based on MCP mode
const endpoint = mcpMode ? "v1/mcp/chat/completions" : "v1/chat/completions";
const requestBody = {
model: model,
messages: messages,
};
// Add stream parameter for both regular chat and MCP (MCP now supports SSE streaming)
requestBody.stream = true;
// Add generation parameters if they are set (null means use default)
if (activeChat.temperature !== null && activeChat.temperature !== undefined) {
requestBody.temperature = activeChat.temperature;
}
if (activeChat.topP !== null && activeChat.topP !== undefined) {
requestBody.top_p = activeChat.topP;
}
if (activeChat.topK !== null && activeChat.topK !== undefined) {
requestBody.top_k = activeChat.topK;
}
let response;
try {
// Create AbortController for timeout handling and stop button
const controller = new AbortController();
// Store per-chat so switching chats doesn't abort this request
const requestStartTime = Date.now();
activeRequests.set(chatId, {
controller: controller,
reader: null,
startTime: requestStartTime,
tokensReceived: 0,
interval: null,
maxTokensPerSecond: 0,
model: model // Store the model used for this request
});
// Update reactive tracking for UI indicators
updateRequestTracking(chatId, true);
// Also store globally for stop button (only for active chat)
currentAbortController = controller;
// Start tokens/second interval now that the request is created
// Try to start immediately, and also schedule a retry in case Alpine isn't ready
startTokensPerSecondInterval();
setTimeout(() => {
// Retry in case the first attempt failed due to timing
if (!tokensPerSecondInterval) {
startTokensPerSecondInterval();
}
}, 200);
const timeoutId = setTimeout(() => controller.abort(), mcpMode ? 300000 : 30000); // 5 minutes for MCP, 30 seconds for regular
response = await fetch(endpoint, {
method: "POST",
headers: {
"Content-Type": "application/json",
"Accept": "application/json",
},
body: JSON.stringify(requestBody),
signal: controller.signal
});
clearTimeout(timeoutId);
} catch (error) {
// Don't show error if request was aborted by user (stop button)
if (error.name === 'AbortError') {
// Check if this was a user-initiated abort (stop button was clicked)
// If currentAbortController is null, it means stopRequest() was called and already handled the UI
if (!currentAbortController) {
// User clicked stop button - error message already shown by stopRequest()
return;
} else {
// Timeout error (controller was aborted by timeout, not user)
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Request timeout: MCP processing is taking longer than expected. Please try again.</span>`,
null,
null,
chatId,
requestModel
);
}
} else {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Network Error: ${error.message}</span>`,
null,
null,
chatId,
requestModel
);
}
toggleLoader(false, chatId);
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
const activeChat = chatStore.activeChat();
if (activeChat && activeChat.id === chatId) {
currentAbortController = null;
}
return;
}
if (!response.ok) {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Error: POST ${endpoint} ${response.status}</span>`,
null,
null,
chatId,
requestModel
);
toggleLoader(false, chatId);
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
const activeChat = chatStore.activeChat();
if (activeChat && activeChat.id === chatId) {
currentAbortController = null;
}
return;
}
// Handle streaming response (both regular and MCP mode now use SSE)
if (mcpMode) {
// Handle MCP SSE streaming with new event types
const reader = response.body
?.pipeThrough(new TextDecoderStream())
.getReader();
if (!reader) {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Error: Failed to decode MCP API response</span>`,
null,
null,
chatId,
requestModel
);
toggleLoader(false, chatId);
activeRequests.delete(chatId);
return;
}
// Store reader per-chat and globally
const mcpRequest = activeRequests.get(chatId);
if (mcpRequest) {
mcpRequest.reader = reader;
// Ensure tracking is updated when reader is set
updateRequestTracking(chatId, true);
}
currentReader = reader;
let buffer = "";
let assistantContent = "";
let assistantContentBuffer = [];
let thinkingContent = "";
let isThinking = false;
let lastAssistantMessageIndex = -1;
let lastThinkingMessageIndex = -1;
let lastThinkingScrollTime = 0;
let hasReasoningFromAPI = false; // Track if we're receiving reasoning from API (skip tag-based detection)
const THINKING_SCROLL_THROTTLE = 200; // Throttle scrolling to every 200ms
try {
while (true) {
const { value, done } = await reader.read();
if (done) break;
// Check if chat still exists and is still the target chat (user might have switched)
const currentChat = chatStore.getChat(chatId);
if (!currentChat) {
// Chat was deleted, abort
break;
}
const targetHistory = currentChat.history;
buffer += value;
let lines = buffer.split("\n");
buffer = lines.pop(); // Retain any incomplete line in the buffer
lines.forEach((line) => {
if (line.length === 0 || line.startsWith(":")) return;
if (line === "data: [DONE]") {
return;
}
if (line.startsWith("data: ")) {
try {
const eventData = JSON.parse(line.substring(6));
// Handle different event types
switch (eventData.type) {
case "reasoning":
hasReasoningFromAPI = true; // Mark that we're receiving reasoning from API
if (eventData.content) {
const currentChat = chatStore.getChat(chatId);
if (!currentChat) break; // Chat was deleted
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Insert thinking before assistant message if it exists (always use "thinking" role)
if (lastAssistantMessageIndex >= 0 && targetHistory[lastAssistantMessageIndex]?.role === "assistant") {
targetHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: eventData.content,
html: DOMPurify.sanitize(marked.parse(eventData.content)),
image: [],
audio: [],
expanded: shouldExpand
});
lastAssistantMessageIndex++; // Adjust index since we inserted
// Scroll smoothly after adding thinking
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 100);
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", eventData.content, null, null, chatId);
}
}
break;
case "tool_call":
if (eventData.name) {
// Store as JSON for better formatting
const toolCallData = {
name: eventData.name,
arguments: eventData.arguments || {},
reasoning: eventData.reasoning || ""
};
chatStore.add("tool_call", JSON.stringify(toolCallData, null, 2), null, null, chatId);
// Scroll smoothly after adding tool call
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 100);
}
break;
case "tool_result":
if (eventData.name) {
// Store as JSON for better formatting
const toolResultData = {
name: eventData.name,
result: eventData.result || ""
};
chatStore.add("tool_result", JSON.stringify(toolResultData, null, 2), null, null, chatId);
// Scroll smoothly after adding tool result
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 100);
}
break;
case "status":
// Status messages can be logged but not necessarily displayed
console.log("[MCP Status]", eventData.message);
break;
case "assistant":
if (eventData.content) {
assistantContent += eventData.content;
const contentChunk = eventData.content;
// Count tokens for rate calculation (per chat)
const request = activeRequests.get(chatId);
if (request) {
request.tokensReceived += Math.ceil(contentChunk.length / 4);
}
// Only update display if this is the active chat (interval will handle it)
// Don't call updateTokensPerSecond here to avoid unnecessary updates
// Only check for thinking tags if we're NOT receiving reasoning from API
// This prevents duplicate thinking/reasoning messages
if (!hasReasoningFromAPI) {
// Check for thinking tags in the chunk (incremental detection)
if (contentChunk.includes("<thinking>") || contentChunk.includes("<think>")) {
isThinking = true;
thinkingContent = "";
lastThinkingMessageIndex = -1;
}
if (contentChunk.includes("</thinking>") || contentChunk.includes("</think>")) {
isThinking = false;
// When closing tag is detected, process the accumulated thinking content
if (thinkingContent.trim()) {
// Extract just the thinking part from the accumulated content
const thinkingMatch = thinkingContent.match(/<(?:thinking|redacted_reasoning)>(.*?)<\/(?:thinking|redacted_reasoning)>/s);
if (thinkingMatch && thinkingMatch[1]) {
const extractedThinking = thinkingMatch[1];
const currentChat = chatStore.getChat(chatId);
if (!currentChat) break; // Chat was deleted
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
if (lastThinkingMessageIndex === -1) {
// Insert thinking before the last assistant message if it exists
if (lastAssistantMessageIndex >= 0 && targetHistory[lastAssistantMessageIndex]?.role === "assistant") {
// Insert before assistant message
targetHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: extractedThinking,
html: DOMPurify.sanitize(marked.parse(extractedThinking)),
image: [],
audio: [],
expanded: shouldExpand
});
lastThinkingMessageIndex = lastAssistantMessageIndex;
lastAssistantMessageIndex++; // Adjust index since we inserted
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", extractedThinking, null, null, chatId);
lastThinkingMessageIndex = targetHistory.length - 1;
}
} else {
// Update existing thinking message
const lastMessage = targetHistory[lastThinkingMessageIndex];
if (lastMessage && lastMessage.role === "thinking") {
lastMessage.content = extractedThinking;
lastMessage.html = DOMPurify.sanitize(marked.parse(extractedThinking));
}
}
// Scroll when thinking is finalized in non-MCP mode
if (!isMCPMode) {
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 50);
}
}
thinkingContent = "";
}
}
}
// Handle content based on thinking state (only if not receiving reasoning from API)
if (!hasReasoningFromAPI && isThinking) {
thinkingContent += contentChunk;
const currentChat = chatStore.getChat(chatId);
if (!currentChat) break; // Chat was deleted
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Update the last thinking message or create a new one (incremental)
if (lastThinkingMessageIndex === -1) {
// Insert thinking before the last assistant message if it exists
if (lastAssistantMessageIndex >= 0 && targetHistory[lastAssistantMessageIndex]?.role === "assistant") {
// Insert before assistant message
targetHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: thinkingContent,
html: DOMPurify.sanitize(marked.parse(thinkingContent)),
image: [],
audio: [],
expanded: shouldExpand
});
lastThinkingMessageIndex = lastAssistantMessageIndex;
lastAssistantMessageIndex++; // Adjust index since we inserted
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", thinkingContent, null, null, chatId);
lastThinkingMessageIndex = targetHistory.length - 1;
}
} else {
// Update existing thinking message
const lastMessage = targetHistory[lastThinkingMessageIndex];
if (lastMessage && lastMessage.role === "thinking") {
lastMessage.content = thinkingContent;
lastMessage.html = DOMPurify.sanitize(marked.parse(thinkingContent));
}
}
// Scroll when thinking is updated in non-MCP mode (throttled)
if (!isMCPMode) {
const now = Date.now();
if (now - lastThinkingScrollTime > THINKING_SCROLL_THROTTLE) {
lastThinkingScrollTime = now;
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 100);
}
}
} else {
// Regular assistant content - buffer it for batch processing
assistantContentBuffer.push(contentChunk);
}
}
break;
case "error":
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>MCP Error: ${eventData.message}</span>`,
null,
null,
chatId,
requestModel
);
break;
}
} catch (error) {
console.error("Failed to parse MCP event:", line, error);
}
}
});
// Efficiently update assistant message in batch
if (assistantContentBuffer.length > 0) {
const regularContent = assistantContentBuffer.join("");
// Process any thinking tags that might be in the accumulated content
// This handles cases where tags are split across chunks
// Only process if we're NOT receiving reasoning from API (to avoid duplicates)
const { regularContent: processedRegular, thinkingContent: processedThinking } = hasReasoningFromAPI
? { regularContent: regularContent, thinkingContent: "" }
: processThinkingTags(regularContent);
// Update or create assistant message with processed regular content
const currentChat = chatStore.getChat(chatId);
if (!currentChat) break; // Chat was deleted
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
if (lastAssistantMessageIndex === -1) {
// Create assistant message if we have any content (even if empty string after processing)
// This ensures the message is created and can be updated with more content later
chatStore.add("assistant", processedRegular || "", null, null, chatId, requestModel);
lastAssistantMessageIndex = targetHistory.length - 1;
} else {
const lastMessage = targetHistory[lastAssistantMessageIndex];
if (lastMessage && lastMessage.role === "assistant") {
lastMessage.content = (lastMessage.content || "") + (processedRegular || "");
lastMessage.html = DOMPurify.sanitize(marked.parse(lastMessage.content));
}
}
// Add any extracted thinking content from the processed buffer BEFORE assistant message
if (processedThinking && processedThinking.trim()) {
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Insert thinking before assistant message if it exists
if (lastAssistantMessageIndex >= 0 && targetHistory[lastAssistantMessageIndex]?.role === "assistant") {
targetHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: processedThinking,
html: DOMPurify.sanitize(marked.parse(processedThinking)),
image: [],
audio: [],
expanded: shouldExpand
});
lastAssistantMessageIndex++; // Adjust index since we inserted
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", processedThinking, null, null, chatId);
}
}
assistantContentBuffer = [];
}
}
// Final assistant content flush if any data remains
if (assistantContentBuffer.length > 0) {
const regularContent = assistantContentBuffer.join("");
// Process any remaining thinking tags that might be in the buffer
// Only process if we're NOT receiving reasoning from API (to avoid duplicates)
const { regularContent: processedRegular, thinkingContent: processedThinking } = hasReasoningFromAPI
? { regularContent: regularContent, thinkingContent: "" }
: processThinkingTags(regularContent);
const currentChat = chatStore.getChat(chatId);
if (!currentChat) {
// Chat was deleted, cleanup and exit
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
return;
}
const targetHistory = currentChat.history;
// First, add any extracted thinking content BEFORE assistant message
if (processedThinking && processedThinking.trim()) {
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Insert thinking before assistant message if it exists
if (lastAssistantMessageIndex >= 0 && targetHistory[lastAssistantMessageIndex]?.role === "assistant") {
targetHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: processedThinking,
html: DOMPurify.sanitize(marked.parse(processedThinking)),
image: [],
audio: [],
expanded: shouldExpand
});
lastAssistantMessageIndex++; // Adjust index since we inserted
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", processedThinking, null, null, chatId);
}
}
// Then update or create assistant message
// Always create/update assistant message if we have any content
if (lastAssistantMessageIndex !== -1) {
const lastMessage = targetHistory[lastAssistantMessageIndex];
if (lastMessage && lastMessage.role === "assistant") {
lastMessage.content = (lastMessage.content || "") + (processedRegular || "");
lastMessage.html = DOMPurify.sanitize(marked.parse(lastMessage.content));
}
} else {
// Create assistant message (even if empty, so it can be updated with more content)
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add("assistant", processedRegular || "", null, null, chatId, requestModel);
lastAssistantMessageIndex = targetHistory.length - 1;
}
}
// Final thinking content flush if any data remains (from incremental detection)
// Only process if we're NOT receiving reasoning from API (to avoid duplicates)
const finalChat = chatStore.getChat(chatId);
if (finalChat && !hasReasoningFromAPI && thinkingContent.trim() && lastThinkingMessageIndex === -1) {
const finalHistory = finalChat.history;
// Extract thinking content if tags are present
const thinkingMatch = thinkingContent.match(/<(?:thinking|redacted_reasoning)>(.*?)<\/(?:thinking|redacted_reasoning)>/s);
if (thinkingMatch && thinkingMatch[1]) {
const isMCPMode = finalChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Insert thinking before assistant message if it exists
if (lastAssistantMessageIndex >= 0 && finalHistory[lastAssistantMessageIndex]?.role === "assistant") {
finalHistory.splice(lastAssistantMessageIndex, 0, {
role: "thinking",
content: thinkingMatch[1],
html: DOMPurify.sanitize(marked.parse(thinkingMatch[1])),
image: [],
audio: [],
expanded: shouldExpand
});
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", thinkingMatch[1], null, null, chatId);
}
} else {
chatStore.add("thinking", thinkingContent, null, null, chatId);
}
}
// Final pass: process the entire assistantContent to catch any missed thinking tags
// This ensures we don't miss tags that were split across chunks
if (finalChat && assistantContent.trim()) {
const finalHistory = finalChat.history;
const { regularContent: finalRegular, thinkingContent: finalThinking } = processThinkingTags(assistantContent);
// Update assistant message with final processed content (without thinking tags)
if (finalRegular && finalRegular.trim()) {
if (lastAssistantMessageIndex !== -1) {
const lastMessage = finalHistory[lastAssistantMessageIndex];
if (lastMessage && lastMessage.role === "assistant") {
lastMessage.content = finalRegular;
lastMessage.html = DOMPurify.sanitize(marked.parse(lastMessage.content));
}
} else {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add("assistant", finalRegular, null, null, chatId, requestModel);
}
}
// Add any extracted thinking content (only if not already added)
if (finalThinking && finalThinking.trim()) {
const hasThinking = finalHistory.some(msg =>
msg.role === "thinking" && msg.content.trim() === finalThinking.trim()
);
if (!hasThinking) {
chatStore.add("thinking", finalThinking, null, null, chatId);
}
}
}
// Cleanup request tracking
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
// Highlight all code blocks once at the end
hljs.highlightAll();
} catch (error) {
// Don't show error if request was aborted by user
if (error.name !== 'AbortError' || !currentAbortController) {
const errorChat = chatStore.getChat(chatId);
if (errorChat) {
chatStore.add(
"assistant",
`<span class='error'>Error: Failed to process MCP stream</span>`,
null,
null,
chatId
);
}
}
} finally {
// Perform any cleanup if necessary
if (reader) {
reader.releaseLock();
}
// Only clear global references if this was the active chat's request
const activeChat = chatStore.activeChat();
if (activeChat && activeChat.id === chatId) {
currentReader = null;
currentAbortController = null;
toggleLoader(false, chatId);
}
// Cleanup per-chat tracking
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
}
} else {
// Handle regular streaming response
const reader = response.body
?.pipeThrough(new TextDecoderStream())
.getReader();
if (!reader) {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Error: Failed to decode API response</span>`,
null,
null,
chatId,
requestModel
);
toggleLoader(false, chatId);
activeRequests.delete(chatId);
return;
}
// Store reader per-chat and globally
const request = activeRequests.get(chatId);
if (request) {
request.reader = reader;
// Ensure tracking is updated when reader is set
updateRequestTracking(chatId, true);
// Ensure interval is running (in case it wasn't started earlier)
startTokensPerSecondInterval();
}
currentReader = reader;
// Get target chat for this request
let targetChat = chatStore.getChat(chatId);
if (!targetChat) {
// Chat was deleted
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
return;
}
// Function to add content to the chat and handle DOM updates efficiently
const addToChat = (token) => {
const currentChat = chatStore.getChat(chatId);
if (!currentChat) return; // Chat was deleted
// Get model from request for this chat
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add("assistant", token, null, null, chatId, requestModel);
// Count tokens for rate calculation (per chat)
if (request) {
const tokenCount = Math.ceil(token.length / 4);
request.tokensReceived += tokenCount;
}
// Only update display if this is the active chat (interval will handle it)
// Don't call updateTokensPerSecond here to avoid unnecessary updates
};
let buffer = "";
let contentBuffer = [];
let thinkingContent = "";
let reasoningContent = ""; // Track reasoning from API reasoning field
let isThinking = false;
let lastThinkingMessageIndex = -1;
let lastReasoningMessageIndex = -1; // Track reasoning message separately
let lastAssistantMessageIndex = -1; // Track assistant message for reasoning placement
let lastThinkingScrollTime = 0;
let hasReasoningFromAPI = false; // Track if we're receiving reasoning from API (skip tag-based detection)
const THINKING_SCROLL_THROTTLE = 200; // Throttle scrolling to every 200ms
try {
while (true) {
const { value, done } = await reader.read();
if (done) break;
// Check if chat still exists
targetChat = chatStore.getChat(chatId);
if (!targetChat) {
// Chat was deleted, abort
break;
}
const targetHistory = targetChat.history;
buffer += value;
let lines = buffer.split("\n");
buffer = lines.pop(); // Retain any incomplete line in the buffer
lines.forEach((line) => {
if (line.length === 0 || line.startsWith(":")) return;
if (line === "data: [DONE]") {
return;
}
if (line.startsWith("data: ")) {
try {
const jsonData = JSON.parse(line.substring(6));
// Update token usage if present (for the chat that initiated this request)
if (jsonData.usage) {
chatStore.updateTokenUsage(jsonData.usage, chatId);
}
const token = jsonData.choices?.[0]?.delta?.content;
const reasoningDelta = jsonData.choices?.[0]?.delta?.reasoning;
// Handle reasoning from API reasoning field - always use "thinking" role
if (reasoningDelta && reasoningDelta.trim() !== "") {
hasReasoningFromAPI = true; // Mark that we're receiving reasoning from API
reasoningContent += reasoningDelta;
const currentChat = chatStore.getChat(chatId);
if (!currentChat) {
// Chat was deleted, skip this line
return;
}
const isMCPMode = currentChat.mcpMode || false;
const shouldExpand = !isMCPMode; // Expanded in non-MCP mode, collapsed in MCP mode
// Only create/update thinking message if we have actual content
if (reasoningContent.trim() !== "") {
// Update or create thinking message (always use "thinking" role, not "reasoning")
if (lastReasoningMessageIndex === -1) {
// Find the last assistant message index to insert thinking before it
const targetHistory = currentChat.history;
const assistantIndex = targetHistory.length - 1;
if (assistantIndex >= 0 && targetHistory[assistantIndex]?.role === "assistant") {
// Insert thinking before assistant message
targetHistory.splice(assistantIndex, 0, {
role: "thinking",
content: reasoningContent,
html: DOMPurify.sanitize(marked.parse(reasoningContent)),
image: [],
audio: [],
expanded: shouldExpand
});
lastReasoningMessageIndex = assistantIndex;
lastAssistantMessageIndex = assistantIndex + 1; // Adjust for inserted thinking
} else {
// No assistant message yet, just add normally
chatStore.add("thinking", reasoningContent, null, null, chatId);
lastReasoningMessageIndex = currentChat.history.length - 1;
}
} else {
// Update existing thinking message
const targetHistory = currentChat.history;
if (lastReasoningMessageIndex >= 0 && lastReasoningMessageIndex < targetHistory.length) {
const thinkingMessage = targetHistory[lastReasoningMessageIndex];
if (thinkingMessage && thinkingMessage.role === "thinking") {
thinkingMessage.content = reasoningContent;
thinkingMessage.html = DOMPurify.sanitize(marked.parse(reasoningContent));
}
}
}
}
// Scroll when reasoning is updated (throttled)
const now = Date.now();
if (now - lastThinkingScrollTime > THINKING_SCROLL_THROTTLE) {
lastThinkingScrollTime = now;
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
scrollThinkingBoxToBottom();
}, 100);
}
}
if (token && token.trim() !== "") {
// Only check for thinking tags if we're NOT receiving reasoning from API
// This prevents duplicate thinking/reasoning messages
if (!hasReasoningFromAPI) {
// Check for thinking tags (legacy support - models that output tags directly)
if (token.includes("<thinking>") || token.includes("<think>")) {
isThinking = true;
thinkingContent = "";
lastThinkingMessageIndex = -1;
return;
}
if (token.includes("</thinking>") || token.includes("</think>")) {
isThinking = false;
if (thinkingContent.trim()) {
// Only add the final thinking message if we don't already have one
if (lastThinkingMessageIndex === -1) {
chatStore.add("thinking", thinkingContent, null, null, chatId);
}
}
return;
}
// Handle content based on thinking state
if (isThinking) {
thinkingContent += token;
// Count tokens for rate calculation (per chat)
const request = activeRequests.get(chatId);
if (request) {
request.tokensReceived += Math.ceil(token.length / 4);
}
// Only update display if this is the active chat (interval will handle it)
// Don't call updateTokensPerSecond here to avoid unnecessary updates
// Update the last thinking message or create a new one
if (lastThinkingMessageIndex === -1) {
// Create new thinking message
chatStore.add("thinking", thinkingContent, null, null, chatId);
const targetChat = chatStore.getChat(chatId);
lastThinkingMessageIndex = targetChat ? targetChat.history.length - 1 : -1;
} else {
// Update existing thinking message
const currentChat = chatStore.getChat(chatId);
if (currentChat && lastThinkingMessageIndex >= 0) {
const lastMessage = currentChat.history[lastThinkingMessageIndex];
if (lastMessage && lastMessage.role === "thinking") {
lastMessage.content = thinkingContent;
lastMessage.html = DOMPurify.sanitize(marked.parse(thinkingContent));
}
}
}
// Scroll when thinking is updated (throttled)
const now = Date.now();
if (now - lastThinkingScrollTime > THINKING_SCROLL_THROTTLE) {
lastThinkingScrollTime = now;
setTimeout(() => {
// Scroll main chat container
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
// Scroll thinking box to bottom if it's expanded and scrollable
scrollThinkingBoxToBottom();
}, 100);
}
} else {
// Not in thinking state, add to content buffer
contentBuffer.push(token);
// Track assistant message index for reasoning placement
if (lastAssistantMessageIndex === -1) {
const currentChat = chatStore.getChat(chatId);
if (currentChat) {
const targetHistory = currentChat.history;
// Find or create assistant message index
for (let i = targetHistory.length - 1; i >= 0; i--) {
if (targetHistory[i].role === "assistant") {
lastAssistantMessageIndex = i;
break;
}
}
// If no assistant message yet, it will be created when we flush contentBuffer
}
}
}
} else {
// Receiving reasoning from API, just add token to content buffer
contentBuffer.push(token);
// Track assistant message index for reasoning placement
if (lastAssistantMessageIndex === -1) {
const currentChat = chatStore.getChat(chatId);
if (currentChat) {
const targetHistory = currentChat.history;
// Find or create assistant message index
for (let i = targetHistory.length - 1; i >= 0; i--) {
if (targetHistory[i].role === "assistant") {
lastAssistantMessageIndex = i;
break;
}
}
// If no assistant message yet, it will be created when we flush contentBuffer
}
}
}
}
} catch (error) {
console.error("Failed to parse line:", line, error);
}
}
});
// Efficiently update the chat in batch
if (contentBuffer.length > 0) {
addToChat(contentBuffer.join(""));
// Update assistant message index after adding content
const currentChat = chatStore.getChat(chatId);
if (currentChat) {
const targetHistory = currentChat.history;
for (let i = targetHistory.length - 1; i >= 0; i--) {
if (targetHistory[i].role === "assistant") {
lastAssistantMessageIndex = i;
break;
}
}
}
contentBuffer = [];
// Scroll when assistant content is updated (this will also show thinking messages above)
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 50);
}
}
// Final content flush if any data remains
if (contentBuffer.length > 0) {
addToChat(contentBuffer.join(""));
}
// Final reasoning flush if any data remains - always use "thinking" role
const finalChat = chatStore.getChat(chatId);
if (finalChat && reasoningContent.trim() && lastReasoningMessageIndex === -1) {
const isMCPMode = finalChat.mcpMode || false;
const shouldExpand = !isMCPMode;
const targetHistory = finalChat.history;
// Find assistant message to insert before
const assistantIndex = targetHistory.length - 1;
if (assistantIndex >= 0 && targetHistory[assistantIndex]?.role === "assistant") {
targetHistory.splice(assistantIndex, 0, {
role: "thinking",
content: reasoningContent,
html: DOMPurify.sanitize(marked.parse(reasoningContent)),
image: [],
audio: [],
expanded: shouldExpand
});
} else {
chatStore.add("thinking", reasoningContent, null, null, chatId);
}
}
// Final thinking content flush (legacy tag-based thinking)
if (finalChat && thinkingContent.trim() && lastThinkingMessageIndex === -1) {
chatStore.add("thinking", thinkingContent, null, null, chatId);
}
// Highlight all code blocks once at the end
hljs.highlightAll();
} catch (error) {
// Don't show error if request was aborted by user
if (error.name !== 'AbortError' || !currentAbortController) {
const currentChat = chatStore.getChat(chatId);
if (currentChat) {
const request = activeRequests.get(chatId);
const requestModel = request?.model || null;
chatStore.add(
"assistant",
`<span class='error'>Error: Failed to process stream</span>`,
null,
null,
chatId,
requestModel
);
}
}
} finally {
// Perform any cleanup if necessary
if (reader) {
reader.releaseLock();
}
// Only clear global references if this was the active chat's request
const activeChat = chatStore.activeChat();
if (activeChat && activeChat.id === chatId) {
currentReader = null;
currentAbortController = null;
toggleLoader(false, chatId);
}
// Cleanup per-chat tracking
activeRequests.delete(chatId);
updateRequestTracking(chatId, false);
}
}
// Remove class "loader" from the element with "loader" id
// Only toggle loader off if this was the active chat
const finalActiveChat = chatStore.activeChat();
if (finalActiveChat && finalActiveChat.id === chatId) {
toggleLoader(false, chatId);
}
// scroll to the bottom of the chat consistently
setTimeout(() => {
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
}, 100);
// set focus to the input
document.getElementById("input").focus();
}
document.getElementById("system_prompt").addEventListener("submit", submitSystemPrompt);
document.getElementById("prompt").addEventListener("submit", submitPrompt);
document.getElementById("input").focus();
storesystemPrompt = localStorage.getItem("system_prompt");
if (storesystemPrompt) {
document.getElementById("systemPrompt").value = storesystemPrompt;
} else {
document.getElementById("systemPrompt").value = null;
}
marked.setOptions({
highlight: function (code) {
return hljs.highlightAuto(code).value;
},
});
// Alpine store is now initialized in chat.html inline script to ensure it's available before Alpine processes the DOM
// Only initialize if not already initialized (to avoid duplicate initialization)
document.addEventListener("alpine:init", () => {
// Check if store already exists (initialized in chat.html)
if (!Alpine.store("chat")) {
// Fallback initialization (should not be needed if chat.html loads correctly)
// This matches the structure in chat.html
function generateChatId() {
return "chat_" + Date.now() + "_" + Math.random().toString(36).substr(2, 9);
}
function getCurrentModel() {
const modelInput = document.getElementById("chat-model");
return modelInput ? modelInput.value : "";
}
Alpine.store("chat", {
chats: [],
activeChatId: null,
chatIdCounter: 0,
languages: [undefined],
activeRequestIds: [], // Track chat IDs with active requests for UI reactivity
activeChat() {
if (!this.activeChatId) return null;
return this.chats.find(c => c.id === this.activeChatId) || null;
},
getChat(chatId) {
return this.chats.find(c => c.id === chatId) || null;
},
createChat(model, systemPrompt, mcpMode) {
const chatId = generateChatId();
const now = Date.now();
const chat = {
id: chatId,
name: "New Chat",
model: model || getCurrentModel() || "",
history: [],
systemPrompt: systemPrompt || "",
mcpMode: mcpMode || false,
tokenUsage: {
promptTokens: 0,
completionTokens: 0,
totalTokens: 0,
currentRequest: null
},
contextSize: null,
createdAt: now,
updatedAt: now
};
this.chats.push(chat);
this.activeChatId = chatId;
return chat;
},
switchChat(chatId) {
if (this.chats.find(c => c.id === chatId)) {
this.activeChatId = chatId;
return true;
}
return false;
},
deleteChat(chatId) {
const index = this.chats.findIndex(c => c.id === chatId);
if (index === -1) return false;
this.chats.splice(index, 1);
if (this.activeChatId === chatId) {
if (this.chats.length > 0) {
this.activeChatId = this.chats[0].id;
} else {
this.createChat();
}
}
return true;
},
updateChatName(chatId, name) {
const chat = this.getChat(chatId);
if (chat) {
chat.name = name || "New Chat";
chat.updatedAt = Date.now();
return true;
}
return false;
},
clear() {
const chat = this.activeChat();
if (chat) {
chat.history.length = 0;
chat.tokenUsage = {
promptTokens: 0,
completionTokens: 0,
totalTokens: 0,
currentRequest: null
};
chat.updatedAt = Date.now();
}
},
updateTokenUsage(usage, targetChatId = null) {
// If targetChatId is provided, update that chat, otherwise use active chat
// This ensures token usage updates go to the chat that initiated the request
const chat = targetChatId ? this.getChat(targetChatId) : this.activeChat();
if (!chat) return;
if (usage) {
const currentRequest = chat.tokenUsage.currentRequest || {
promptTokens: 0,
completionTokens: 0,
totalTokens: 0
};
const isNewUsage =
(usage.prompt_tokens !== undefined && usage.prompt_tokens > currentRequest.promptTokens) ||
(usage.completion_tokens !== undefined && usage.completion_tokens > currentRequest.completionTokens) ||
(usage.total_tokens !== undefined && usage.total_tokens > currentRequest.totalTokens);
if (isNewUsage) {
chat.tokenUsage.promptTokens = chat.tokenUsage.promptTokens - currentRequest.promptTokens + (usage.prompt_tokens || 0);
chat.tokenUsage.completionTokens = chat.tokenUsage.completionTokens - currentRequest.completionTokens + (usage.completion_tokens || 0);
chat.tokenUsage.totalTokens = chat.tokenUsage.totalTokens - currentRequest.totalTokens + (usage.total_tokens || 0);
chat.tokenUsage.currentRequest = {
promptTokens: usage.prompt_tokens || 0,
completionTokens: usage.completion_tokens || 0,
totalTokens: usage.total_tokens || 0
};
chat.updatedAt = Date.now();
}
}
},
getRemainingTokens() {
const chat = this.activeChat();
if (!chat || !chat.contextSize) return null;
return Math.max(0, chat.contextSize - chat.tokenUsage.totalTokens);
},
getContextUsagePercent() {
const chat = this.activeChat();
if (!chat || !chat.contextSize) return null;
return Math.min(100, (chat.tokenUsage.totalTokens / chat.contextSize) * 100);
},
// Check if a chat has an active request (for UI indicators)
hasActiveRequest(chatId) {
if (!chatId) return false;
// Use reactive array for Alpine.js reactivity
return this.activeRequestIds.includes(chatId);
},
// Update active request tracking (called from chat.js)
updateActiveRequestTracking(chatId, isActive) {
if (isActive) {
if (!this.activeRequestIds.includes(chatId)) {
this.activeRequestIds.push(chatId);
}
} else {
const index = this.activeRequestIds.indexOf(chatId);
if (index > -1) {
this.activeRequestIds.splice(index, 1);
}
}
},
add(role, content, image, audio, targetChatId = null) {
// If targetChatId is provided, add to that chat, otherwise use active chat
const chat = targetChatId ? this.getChat(targetChatId) : this.activeChat();
if (!chat) return;
const N = chat.history.length - 1;
if (role === "thinking" || role === "reasoning") {
let c = "";
const lines = content.split("\n");
lines.forEach((line) => {
c += DOMPurify.sanitize(marked.parse(line));
});
chat.history.push({ role, content, html: c, image, audio });
}
else if (chat.history.length && chat.history[N].role === role) {
chat.history[N].content += content;
chat.history[N].html = DOMPurify.sanitize(
marked.parse(chat.history[N].content)
);
if (image && image.length > 0) {
chat.history[N].image = [...(chat.history[N].image || []), ...image];
}
if (audio && audio.length > 0) {
chat.history[N].audio = [...(chat.history[N].audio || []), ...audio];
}
} else {
let c = "";
const lines = content.split("\n");
lines.forEach((line) => {
c += DOMPurify.sanitize(marked.parse(line));
});
chat.history.push({
role,
content,
html: c,
image: image || [],
audio: audio || []
});
if (role === "user" && chat.name === "New Chat" && content.trim()) {
const name = content.trim().substring(0, 50);
chat.name = name.length < content.trim().length ? name + "..." : name;
}
}
chat.updatedAt = Date.now();
const chatContainer = document.getElementById('chat');
if (chatContainer) {
chatContainer.scrollTo({
top: chatContainer.scrollHeight,
behavior: 'smooth'
});
}
if (role === "thinking" || role === "reasoning") {
setTimeout(() => {
if (typeof window.scrollThinkingBoxToBottom === 'function') {
window.scrollThinkingBoxToBottom();
}
}, 100);
}
const parser = new DOMParser();
const html = parser.parseFromString(
chat.history[chat.history.length - 1].html,
"text/html"
);
const code = html.querySelectorAll("pre code");
if (!code.length) return;
code.forEach((el) => {
const language = el.className.split("language-")[1];
if (this.languages.includes(language)) return;
const script = document.createElement("script");
script.src = `https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.8.0/build/languages/${language}.min.js`;
document.head.appendChild(script);
this.languages.push(language);
});
},
messages() {
const chat = this.activeChat();
if (!chat) return [];
return chat.history.map((message) => ({
role: message.role,
content: message.content,
image: message.image,
audio: message.audio,
}));
},
// Getter for active chat history to ensure reactivity
get activeHistory() {
const chat = this.activeChat();
return chat ? chat.history : [];
},
});
}
});
// Check for message from index page on load and initialize chats
document.addEventListener('DOMContentLoaded', function() {
// Wait for Alpine to be ready
setTimeout(() => {
if (!window.Alpine || !Alpine.store("chat")) {
console.error('Alpine store not initialized');
return;
}
const chatStore = Alpine.store("chat");
// Check for message from index page FIRST - if present, create new chat
const chatData = localStorage.getItem('localai_index_chat_data');
let shouldCreateNewChat = false;
let indexChatData = null;
if (chatData) {
try {
indexChatData = JSON.parse(chatData);
shouldCreateNewChat = true; // We have data from index, create new chat
} catch (error) {
console.error('Error parsing chat data from index:', error);
localStorage.removeItem('localai_index_chat_data');
}
}
// Load chats from storage FIRST (but don't set active yet if we're creating new from index)
const storedData = loadChatsFromStorage();
if (storedData && storedData.chats && storedData.chats.length > 0) {
// Restore chats from storage - clear existing and push new ones to maintain reactivity
chatStore.chats.length = 0;
storedData.chats.forEach(chat => {
chatStore.chats.push(chat);
});
// Don't set activeChatId yet if we're creating a new chat from index
if (!shouldCreateNewChat) {
chatStore.activeChatId = storedData.activeChatId || storedData.chats[0].id;
// Ensure active chat exists
if (!chatStore.activeChat()) {
chatStore.activeChatId = storedData.chats[0].id;
}
}
}
if (shouldCreateNewChat) {
// Create a new chat with the model from URL (which matches the selected model from index)
const currentModel = document.getElementById("chat-model")?.value || "";
// Check URL parameter for MCP mode (takes precedence over localStorage)
const urlParams = new URLSearchParams(window.location.search);
const mcpFromUrl = urlParams.get('mcp') === 'true';
const newChat = chatStore.createChat(currentModel, "", mcpFromUrl || indexChatData.mcpMode || false);
// Update context size from template if available
const contextSizeInput = document.getElementById("chat-model");
if (contextSizeInput && contextSizeInput.dataset.contextSize) {
const contextSize = parseInt(contextSizeInput.dataset.contextSize);
newChat.contextSize = contextSize;
}
// Set the message and files
const input = document.getElementById('input');
if (input && indexChatData.message) {
input.value = indexChatData.message;
// Process files if any
if (indexChatData.imageFiles && indexChatData.imageFiles.length > 0) {
indexChatData.imageFiles.forEach(file => {
images.push(file.data);
});
}
if (indexChatData.audioFiles && indexChatData.audioFiles.length > 0) {
indexChatData.audioFiles.forEach(file => {
audios.push(file.data);
});
}
if (indexChatData.textFiles && indexChatData.textFiles.length > 0) {
indexChatData.textFiles.forEach(file => {
fileContents.push({ name: file.name, content: file.data });
currentFileNames.push(file.name);
});
}
// Clear localStorage
localStorage.removeItem('localai_index_chat_data');
// Save the new chat
saveChatsToStorage();
// Update UI to reflect new active chat
updateUIForActiveChat();
// Auto-submit after a short delay to ensure everything is ready
setTimeout(() => {
if (input.value.trim()) {
processAndSendMessage(input.value);
}
}, 500);
} else {
// No message, but might have mcpMode from URL - clear localStorage
localStorage.removeItem('localai_index_chat_data');
// If MCP mode was set from URL, ensure it's enabled
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.get('mcp') === 'true' && newChat) {
newChat.mcpMode = true;
saveChatsToStorage();
updateUIForActiveChat();
}
saveChatsToStorage();
updateUIForActiveChat();
}
} else {
// Normal flow: create default chat if none exist
if (!storedData || !storedData.chats || storedData.chats.length === 0) {
const currentModel = document.getElementById("chat-model")?.value || "";
const oldSystemPrompt = localStorage.getItem(SYSTEM_PROMPT_STORAGE_KEY);
// Check URL parameter for MCP mode
const urlParams = new URLSearchParams(window.location.search);
const mcpFromUrl = urlParams.get('mcp') === 'true';
chatStore.createChat(currentModel, oldSystemPrompt || "", mcpFromUrl);
// Remove old system prompt key after migration
if (oldSystemPrompt) {
localStorage.removeItem(SYSTEM_PROMPT_STORAGE_KEY);
}
} else {
// Existing chats loaded - check if we need to create a new chat for the model in URL
const urlModel = document.getElementById("chat-model")?.value || "";
const activeChat = chatStore.activeChat();
const shouldCreateNewChat = sessionStorage.getItem('localai_create_new_chat') === 'true';
// Clear the flag after reading it
if (shouldCreateNewChat) {
sessionStorage.removeItem('localai_create_new_chat');
}
// If we should create a new chat (from manage.html) or URL model doesn't match active chat, create new chat
// This handles navigation from manage.html or direct links to /chat/MODEL_NAME
if (urlModel && urlModel.trim() && (shouldCreateNewChat || (activeChat && activeChat.model !== urlModel) || !activeChat)) {
// Create a new chat with the model from URL
const urlParams = new URLSearchParams(window.location.search);
const mcpFromUrl = urlParams.get('mcp') === 'true';
const newChat = chatStore.createChat(urlModel, "", mcpFromUrl);
// Update context size from template if available
const contextSizeInput = document.getElementById("chat-model");
if (contextSizeInput && contextSizeInput.dataset.contextSize) {
const contextSize = parseInt(contextSizeInput.dataset.contextSize);
if (!isNaN(contextSize)) {
newChat.contextSize = contextSize;
}
}
saveChatsToStorage();
updateUIForActiveChat();
} else {
// Check URL parameter for MCP mode (update existing active chat)
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.get('mcp') === 'true') {
if (activeChat) {
activeChat.mcpMode = true;
saveChatsToStorage();
}
}
}
}
// Update context size from template if available (for existing active chat)
const contextSizeInput = document.getElementById("chat-model");
if (contextSizeInput && contextSizeInput.dataset.contextSize) {
const contextSize = parseInt(contextSizeInput.dataset.contextSize);
const activeChat = chatStore.activeChat();
if (activeChat && !activeChat.contextSize) {
activeChat.contextSize = contextSize;
}
}
// Update UI to reflect active chat
updateUIForActiveChat();
}
// Save initial state
saveChatsToStorage();
}, 300);
});
|