File size: 57,198 Bytes
5da4770 |
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 |
import { createClient } from '@/lib/supabase/client';
import { handleApiError } from './error-handler';
// Get backend URL from environment variables
const API_URL = process.env.NEXT_PUBLIC_BACKEND_URL || '';
// Set to keep track of agent runs that are known to be non-running
const nonRunningAgentRuns = new Set<string>();
// Map to keep track of active EventSource streams
const activeStreams = new Map<string, EventSource>();
// Custom error for billing issues
export class BillingError extends Error {
status: number;
detail: { message: string; [key: string]: any }; // Allow other properties in detail
constructor(
status: number,
detail: { message: string; [key: string]: any },
message?: string,
) {
super(message || detail.message || `Billing Error: ${status}`);
this.name = 'BillingError';
this.status = status;
this.detail = detail;
// Set the prototype explicitly.
Object.setPrototypeOf(this, BillingError.prototype);
}
}
export class NoAccessTokenAvailableError extends Error {
constructor(message?: string, options?: { cause?: Error }) {
super(message || 'No access token available', options);
}
name = 'NoAccessTokenAvailableError';
}
// Type Definitions (moved from potential separate file for clarity)
export type Project = {
id: string;
name: string;
description: string;
account_id: string;
created_at: string;
updated_at?: string;
sandbox: {
vnc_preview?: string;
sandbox_url?: string;
id?: string;
pass?: string;
};
is_public?: boolean; // Flag to indicate if the project is public
[key: string]: any; // Allow additional properties to handle database fields
};
export type Thread = {
thread_id: string;
account_id: string | null;
project_id?: string | null;
is_public?: boolean;
created_at: string;
updated_at: string;
[key: string]: any; // Allow additional properties to handle database fields
};
export type Message = {
role: string;
content: string;
type: string;
agent_id?: string;
agents?: {
name: string;
avatar?: string;
avatar_color?: string;
};
};
export type AgentRun = {
id: string;
thread_id: string;
status: 'running' | 'completed' | 'stopped' | 'error';
started_at: string;
completed_at: string | null;
responses: Message[];
error: string | null;
};
export type ToolCall = {
name: string;
arguments: Record<string, unknown>;
};
export interface InitiateAgentResponse {
thread_id: string;
agent_run_id: string;
}
export interface HealthCheckResponse {
status: string;
timestamp: string;
instance_id: string;
}
export interface FileInfo {
name: string;
path: string;
is_dir: boolean;
size: number;
mod_time: string;
permissions?: string;
}
export type WorkflowExecution = {
id: string;
workflow_id: string;
workflow_name: string;
status: 'pending' | 'running' | 'completed' | 'failed' | 'cancelled';
started_at: string | null;
completed_at: string | null;
result: any;
error: string | null;
};
export type WorkflowExecutionLog = {
id: string;
execution_id: string;
node_id: string;
node_name: string;
node_type: string;
started_at: string;
completed_at: string | null;
status: 'running' | 'completed' | 'failed';
input_data: any;
output_data: any;
error: string | null;
};
// Workflow Types
export type Workflow = {
id: string;
name: string;
description: string;
status: 'draft' | 'active' | 'paused' | 'disabled' | 'archived';
project_id: string;
account_id: string;
definition: {
name: string;
description: string;
nodes: any[];
edges: any[];
variables?: Record<string, any>;
};
created_at: string;
updated_at: string;
};
export type WorkflowNode = {
id: string;
type: string;
position: { x: number; y: number };
data: any;
};
export type WorkflowEdge = {
id: string;
source: string;
target: string;
sourceHandle?: string;
targetHandle?: string;
};
// Project APIs
export const getProjects = async (): Promise<Project[]> => {
try {
const supabase = createClient();
// Get the current user's ID to filter projects
const { data: userData, error: userError } = await supabase.auth.getUser();
if (userError) {
console.error('Error getting current user:', userError);
return [];
}
// If no user is logged in, return an empty array
if (!userData.user) {
console.log('[API] No user logged in, returning empty projects array');
return [];
}
// Query only projects where account_id matches the current user's ID
const { data, error } = await supabase
.from('projects')
.select('*')
.eq('account_id', userData.user.id);
if (error) {
// Handle permission errors specifically
if (
error.code === '42501' &&
error.message.includes('has_role_on_account')
) {
console.error(
'Permission error: User does not have proper account access',
);
return []; // Return empty array instead of throwing
}
throw error;
}
console.log('[API] Raw projects from DB:', data?.length, data);
// Map database fields to our Project type
const mappedProjects: Project[] = (data || []).map((project) => ({
id: project.project_id,
name: project.name || '',
description: project.description || '',
account_id: project.account_id,
created_at: project.created_at,
updated_at: project.updated_at,
sandbox: project.sandbox || {
id: '',
pass: '',
vnc_preview: '',
sandbox_url: '',
},
}));
console.log('[API] Mapped projects for frontend:', mappedProjects.length);
return mappedProjects;
} catch (err) {
console.error('Error fetching projects:', err);
handleApiError(err, { operation: 'load projects', resource: 'projects' });
// Return empty array for permission errors to avoid crashing the UI
return [];
}
};
export const getProject = async (projectId: string): Promise<Project> => {
const supabase = createClient();
try {
const { data, error } = await supabase
.from('projects')
.select('*')
.eq('project_id', projectId)
.single();
if (error) {
// Handle the specific "no rows returned" error from Supabase
if (error.code === 'PGRST116') {
throw new Error(`Project not found or not accessible: ${projectId}`);
}
throw error;
}
console.log('Raw project data from database:', data);
// If project has a sandbox, ensure it's started
if (data.sandbox?.id) {
// Fire off sandbox activation without blocking
const ensureSandboxActive = async () => {
try {
const {
data: { session },
} = await supabase.auth.getSession();
// For public projects, we don't need authentication
const headers: Record<string, string> = {
'Content-Type': 'application/json',
};
if (session?.access_token) {
headers['Authorization'] = `Bearer ${session.access_token}`;
}
console.log(`Ensuring sandbox is active for project ${projectId}...`);
const response = await fetch(
`${API_URL}/project/${projectId}/sandbox/ensure-active`,
{
method: 'POST',
headers,
},
);
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.warn(
`Failed to ensure sandbox is active: ${response.status} ${response.statusText}`,
errorText,
);
} else {
console.log('Sandbox activation successful');
}
} catch (sandboxError) {
console.warn('Failed to ensure sandbox is active:', sandboxError);
}
};
// Start the sandbox activation without awaiting
ensureSandboxActive();
}
// Map database fields to our Project type
const mappedProject: Project = {
id: data.project_id,
name: data.name || '',
description: data.description || '',
account_id: data.account_id,
is_public: data.is_public || false,
created_at: data.created_at,
sandbox: data.sandbox || {
id: '',
pass: '',
vnc_preview: '',
sandbox_url: '',
},
};
// console.log('Mapped project data for frontend:', mappedProject);
return mappedProject;
} catch (error) {
console.error(`Error fetching project ${projectId}:`, error);
handleApiError(error, { operation: 'load project', resource: `project ${projectId}` });
throw error;
}
};
export const createProject = async (
projectData: { name: string; description: string },
accountId?: string,
): Promise<Project> => {
const supabase = createClient();
// If accountId is not provided, we'll need to get the user's ID
if (!accountId) {
const { data: userData, error: userError } = await supabase.auth.getUser();
if (userError) throw userError;
if (!userData.user)
throw new Error('You must be logged in to create a project');
// In Basejump, the personal account ID is the same as the user ID
accountId = userData.user.id;
}
const { data, error } = await supabase
.from('projects')
.insert({
name: projectData.name,
description: projectData.description || null,
account_id: accountId,
})
.select()
.single();
if (error) {
handleApiError(error, { operation: 'create project', resource: 'project' });
throw error;
}
const project = {
id: data.project_id,
name: data.name,
description: data.description || '',
account_id: data.account_id,
created_at: data.created_at,
sandbox: { id: '', pass: '', vnc_preview: '' },
};
return project;
};
export const updateProject = async (
projectId: string,
data: Partial<Project>,
): Promise<Project> => {
const supabase = createClient();
console.log('Updating project with ID:', projectId);
console.log('Update data:', data);
// Sanity check to avoid update errors
if (!projectId || projectId === '') {
console.error('Attempted to update project with invalid ID:', projectId);
throw new Error('Cannot update project: Invalid project ID');
}
const { data: updatedData, error } = await supabase
.from('projects')
.update(data)
.eq('project_id', projectId)
.select()
.single();
if (error) {
console.error('Error updating project:', error);
handleApiError(error, { operation: 'update project', resource: `project ${projectId}` });
throw error;
}
if (!updatedData) {
const noDataError = new Error('No data returned from update');
handleApiError(noDataError, { operation: 'update project', resource: `project ${projectId}` });
throw noDataError;
}
// Dispatch a custom event to notify components about the project change
if (typeof window !== 'undefined') {
window.dispatchEvent(
new CustomEvent('project-updated', {
detail: {
projectId,
updatedData: {
id: updatedData.project_id,
name: updatedData.name,
description: updatedData.description,
},
},
}),
);
}
// Return formatted project data - use same mapping as getProject
const project = {
id: updatedData.project_id,
name: updatedData.name,
description: updatedData.description || '',
account_id: updatedData.account_id,
created_at: updatedData.created_at,
sandbox: updatedData.sandbox || {
id: '',
pass: '',
vnc_preview: '',
sandbox_url: '',
},
};
return project;
};
export const deleteProject = async (projectId: string): Promise<void> => {
const supabase = createClient();
const { error } = await supabase
.from('projects')
.delete()
.eq('project_id', projectId);
if (error) {
handleApiError(error, { operation: 'delete project', resource: `project ${projectId}` });
throw error;
}
};
// Thread APIs
export const getThreads = async (projectId?: string): Promise<Thread[]> => {
const supabase = createClient();
// Get the current user's ID to filter threads
const { data: userData, error: userError } = await supabase.auth.getUser();
if (userError) {
console.error('Error getting current user:', userError);
return [];
}
// If no user is logged in, return an empty array
if (!userData.user) {
console.log('[API] No user logged in, returning empty threads array');
return [];
}
let query = supabase.from('threads').select('*');
// Always filter by the current user's account ID
query = query.eq('account_id', userData.user.id);
if (projectId) {
console.log('[API] Filtering threads by project_id:', projectId);
query = query.eq('project_id', projectId);
}
const { data, error } = await query;
if (error) {
handleApiError(error, { operation: 'load threads', resource: projectId ? `threads for project ${projectId}` : 'threads' });
throw error;
}
const mappedThreads: Thread[] = (data || [])
.filter((thread) => {
const metadata = thread.metadata || {};
return !metadata.is_agent_builder;
})
.map((thread) => ({
thread_id: thread.thread_id,
account_id: thread.account_id,
project_id: thread.project_id,
created_at: thread.created_at,
updated_at: thread.updated_at,
metadata: thread.metadata,
}));
return mappedThreads;
};
export const getThread = async (threadId: string): Promise<Thread> => {
const supabase = createClient();
const { data, error } = await supabase
.from('threads')
.select('*')
.eq('thread_id', threadId)
.single();
if (error) {
handleApiError(error, { operation: 'load thread', resource: `thread ${threadId}` });
throw error;
}
return data;
};
export const createThread = async (projectId: string): Promise<Thread> => {
const supabase = createClient();
// If user is not logged in, redirect to login
const {
data: { user },
} = await supabase.auth.getUser();
if (!user) {
throw new Error('You must be logged in to create a thread');
}
const { data, error } = await supabase
.from('threads')
.insert({
project_id: projectId,
account_id: user.id, // Use the current user's ID as the account ID
})
.select()
.single();
if (error) {
handleApiError(error, { operation: 'create thread', resource: 'thread' });
throw error;
}
return data;
};
export const addUserMessage = async (
threadId: string,
content: string,
): Promise<void> => {
const supabase = createClient();
// Format the message in the format the LLM expects - keep it simple with only required fields
const message = {
role: 'user',
content: content,
};
// Insert the message into the messages table
const { error } = await supabase.from('messages').insert({
thread_id: threadId,
type: 'user',
is_llm_message: true,
content: JSON.stringify(message),
});
if (error) {
console.error('Error adding user message:', error);
handleApiError(error, { operation: 'add message', resource: 'message' });
throw new Error(`Error adding message: ${error.message}`);
}
};
export const getMessages = async (threadId: string): Promise<Message[]> => {
const supabase = createClient();
let allMessages: Message[] = [];
let from = 0;
const batchSize = 1000;
let hasMore = true;
while (hasMore) {
const { data, error } = await supabase
.from('messages')
.select(`
*,
agents:agent_id (
name,
avatar,
avatar_color
)
`)
.eq('thread_id', threadId)
.neq('type', 'cost')
.neq('type', 'summary')
.order('created_at', { ascending: true })
.range(from, from + batchSize - 1);
if (error) {
console.error('Error fetching messages:', error);
handleApiError(error, { operation: 'load messages', resource: `messages for thread ${threadId}` });
throw new Error(`Error getting messages: ${error.message}`);
}
if (data && data.length > 0) {
allMessages = allMessages.concat(data);
from += batchSize;
hasMore = data.length === batchSize;
} else {
hasMore = false;
}
}
console.log('[API] Messages fetched count:', allMessages.length);
return allMessages;
};
// Agent APIs
export const startAgent = async (
threadId: string,
options?: {
model_name?: string;
enable_thinking?: boolean;
reasoning_effort?: string;
stream?: boolean;
agent_id?: string;
},
): Promise<{ agent_run_id: string }> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
// Check if backend URL is configured
if (!API_URL) {
throw new Error(
'Backend URL is not configured. Set NEXT_PUBLIC_BACKEND_URL in your environment.',
);
}
console.log(
`[API] Starting agent for thread ${threadId} using ${API_URL}/thread/${threadId}/agent/start`,
);
const defaultOptions = {
model_name: 'claude-3-7-sonnet-latest',
enable_thinking: false,
reasoning_effort: 'low',
stream: true,
agent_id: undefined,
};
const finalOptions = { ...defaultOptions, ...options };
const body: any = {
model_name: finalOptions.model_name,
enable_thinking: finalOptions.enable_thinking,
reasoning_effort: finalOptions.reasoning_effort,
stream: finalOptions.stream,
};
// Only include agent_id if it's provided
if (finalOptions.agent_id) {
body.agent_id = finalOptions.agent_id;
}
const response = await fetch(`${API_URL}/thread/${threadId}/agent/start`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${session.access_token}`,
},
body: JSON.stringify(body),
});
if (!response.ok) {
// Check for 402 Payment Required first
if (response.status === 402) {
try {
const errorData = await response.json();
console.error(`[API] Billing error starting agent (402):`, errorData);
// Ensure detail exists and has a message property
const detail = errorData?.detail || { message: 'Payment Required' };
if (typeof detail.message !== 'string') {
detail.message = 'Payment Required'; // Default message if missing
}
throw new BillingError(response.status, detail);
} catch (parseError) {
// Handle cases where parsing fails or the structure isn't as expected
console.error(
'[API] Could not parse 402 error response body:',
parseError,
);
throw new BillingError(
response.status,
{ message: 'Payment Required' },
`Error starting agent: ${response.statusText} (402)`,
);
}
}
// Handle other errors
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`[API] Error starting agent: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error starting agent: ${response.statusText} (${response.status})`,
);
}
const result = await response.json();
return result;
} catch (error) {
// Rethrow BillingError instances directly
if (error instanceof BillingError) {
throw error;
}
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('[API] Failed to start agent:', error);
// Handle different error types with appropriate user messages
if (
error instanceof TypeError &&
error.message.includes('Failed to fetch')
) {
const networkError = new Error(
`Cannot connect to backend server. Please check your internet connection and make sure the backend is running.`,
);
handleApiError(networkError, { operation: 'start agent', resource: 'AI assistant' });
throw networkError;
}
// For other errors, add context and rethrow
handleApiError(error, { operation: 'start agent', resource: 'AI assistant' });
throw error;
}
};
export const stopAgent = async (agentRunId: string): Promise<void> => {
// Add to non-running set immediately to prevent reconnection attempts
nonRunningAgentRuns.add(agentRunId);
// Close any existing stream
const existingStream = activeStreams.get(agentRunId);
if (existingStream) {
console.log(
`[API] Closing existing stream for ${agentRunId} before stopping agent`,
);
existingStream.close();
activeStreams.delete(agentRunId);
}
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
const authError = new NoAccessTokenAvailableError();
handleApiError(authError, { operation: 'stop agent', resource: 'AI assistant' });
throw authError;
}
const response = await fetch(`${API_URL}/agent-run/${agentRunId}/stop`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${session.access_token}`,
},
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
});
if (!response.ok) {
const stopError = new Error(`Error stopping agent: ${response.statusText}`);
handleApiError(stopError, { operation: 'stop agent', resource: 'AI assistant' });
throw stopError;
}
};
export const getAgentStatus = async (agentRunId: string): Promise<AgentRun> => {
console.log(`[API] Requesting agent status for ${agentRunId}`);
// If we already know this agent is not running, throw an error
if (nonRunningAgentRuns.has(agentRunId)) {
console.log(
`[API] Agent run ${agentRunId} is known to be non-running, returning error`,
);
throw new Error(`Agent run ${agentRunId} is not running`);
}
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
console.error('[API] No access token available for getAgentStatus');
throw new NoAccessTokenAvailableError();
}
const url = `${API_URL}/agent-run/${agentRunId}`;
console.log(`[API] Fetching from: ${url}`);
const response = await fetch(url, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`[API] Error getting agent status: ${response.status} ${response.statusText}`,
errorText,
);
// If we get a 404, add to non-running set
if (response.status === 404) {
nonRunningAgentRuns.add(agentRunId);
}
throw new Error(
`Error getting agent status: ${response.statusText} (${response.status})`,
);
}
const data = await response.json();
console.log(`[API] Successfully got agent status:`, data);
// If agent is not running, add to non-running set
if (data.status !== 'running') {
nonRunningAgentRuns.add(agentRunId);
}
return data;
} catch (error) {
console.error('[API] Failed to get agent status:', error);
handleApiError(error, { operation: 'get agent status', resource: 'AI assistant status', silent: true });
throw error;
}
};
export const getAgentRuns = async (threadId: string): Promise<AgentRun[]> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/thread/${threadId}/agent-runs`, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
// Add cache: 'no-store' to prevent caching
cache: 'no-store',
});
if (!response.ok) {
throw new Error(`Error getting agent runs: ${response.statusText}`);
}
const data = await response.json();
return data.agent_runs || [];
} catch (error) {
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('Failed to get agent runs:', error);
handleApiError(error, { operation: 'load agent runs', resource: 'conversation history' });
throw error;
}
};
export const streamAgent = (
agentRunId: string,
callbacks: {
onMessage: (content: string) => void;
onError: (error: Error | string) => void;
onClose: () => void;
},
): (() => void) => {
console.log(`[STREAM] streamAgent called for ${agentRunId}`);
// Check if this agent run is known to be non-running
if (nonRunningAgentRuns.has(agentRunId)) {
console.log(
`[STREAM] Agent run ${agentRunId} is known to be non-running, not creating stream`,
);
// Notify the caller immediately
setTimeout(() => {
callbacks.onError(`Agent run ${agentRunId} is not running`);
callbacks.onClose();
}, 0);
// Return a no-op cleanup function
return () => {};
}
// Check if there's already an active stream for this agent run
const existingStream = activeStreams.get(agentRunId);
if (existingStream) {
console.log(
`[STREAM] Stream already exists for ${agentRunId}, closing it first`,
);
existingStream.close();
activeStreams.delete(agentRunId);
}
// Set up a new stream
try {
const setupStream = async () => {
// First verify the agent is actually running
try {
const status = await getAgentStatus(agentRunId);
if (status.status !== 'running') {
console.log(
`[STREAM] Agent run ${agentRunId} is not running (status: ${status.status}), not creating stream`,
);
nonRunningAgentRuns.add(agentRunId);
callbacks.onError(
`Agent run ${agentRunId} is not running (status: ${status.status})`,
);
callbacks.onClose();
return;
}
} catch (err) {
console.error(`[STREAM] Error verifying agent run ${agentRunId}:`, err);
// Check if this is a "not found" error
const errorMessage = err instanceof Error ? err.message : String(err);
const isNotFoundError =
errorMessage.includes('not found') ||
errorMessage.includes('404') ||
errorMessage.includes('does not exist');
if (isNotFoundError) {
console.log(
`[STREAM] Agent run ${agentRunId} not found, not creating stream`,
);
nonRunningAgentRuns.add(agentRunId);
}
callbacks.onError(errorMessage);
callbacks.onClose();
return;
}
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
const authError = new NoAccessTokenAvailableError();
console.error('[STREAM] No auth token available');
callbacks.onError(authError);
callbacks.onClose();
return;
}
const url = new URL(`${API_URL}/agent-run/${agentRunId}/stream`);
url.searchParams.append('token', session.access_token);
console.log(`[STREAM] Creating EventSource for ${agentRunId}`);
const eventSource = new EventSource(url.toString());
// Store the EventSource in the active streams map
activeStreams.set(agentRunId, eventSource);
eventSource.onopen = () => {
console.log(`[STREAM] Connection opened for ${agentRunId}`);
};
eventSource.onmessage = (event) => {
try {
const rawData = event.data;
if (rawData.includes('"type":"ping"')) return;
// Log raw data for debugging (truncated for readability)
console.log(
`[STREAM] Received data for ${agentRunId}: ${rawData.substring(0, 100)}${rawData.length > 100 ? '...' : ''}`,
);
// Skip empty messages
if (!rawData || rawData.trim() === '') {
console.debug('[STREAM] Received empty message, skipping');
return;
}
// Check for error status messages
try {
const jsonData = JSON.parse(rawData);
if (jsonData.status === 'error') {
console.error(`[STREAM] Error status received for ${agentRunId}:`, jsonData);
// Pass the error message to the callback
callbacks.onError(jsonData.message || 'Unknown error occurred');
// Don't close the stream for error status messages as they may continue
return;
}
} catch (jsonError) {
// Not JSON or invalid JSON, continue with normal processing
}
// Check for "Agent run not found" error
if (
rawData.includes('Agent run') &&
rawData.includes('not found in active runs')
) {
console.log(
`[STREAM] Agent run ${agentRunId} not found in active runs, closing stream`,
);
// Add to non-running set to prevent future reconnection attempts
nonRunningAgentRuns.add(agentRunId);
// Notify about the error
callbacks.onError('Agent run not found in active runs');
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
return;
}
// Check for completion messages
if (
rawData.includes('"type":"status"') &&
rawData.includes('"status":"completed"')
) {
console.log(
`[STREAM] Detected completion status message for ${agentRunId}`,
);
// Check for specific completion messages that indicate we should stop checking
if (
rawData.includes('Run data not available for streaming') ||
rawData.includes('Stream ended with status: completed')
) {
console.log(
`[STREAM] Detected final completion message for ${agentRunId}, adding to non-running set`,
);
// Add to non-running set to prevent future reconnection attempts
nonRunningAgentRuns.add(agentRunId);
}
// Notify about the message
callbacks.onMessage(rawData);
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
return;
}
// Check for thread run end message
if (
rawData.includes('"type":"status"') &&
rawData.includes('"status_type":"thread_run_end"')
) {
console.log(
`[STREAM] Detected thread run end message for ${agentRunId}`,
);
// Add to non-running set
nonRunningAgentRuns.add(agentRunId);
// Notify about the message
callbacks.onMessage(rawData);
// Clean up
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
return;
}
// For all other messages, just pass them through
callbacks.onMessage(rawData);
} catch (error) {
console.error(`[STREAM] Error handling message:`, error);
callbacks.onError(error instanceof Error ? error : String(error));
}
};
eventSource.onerror = (event) => {
console.log(`[STREAM] EventSource error for ${agentRunId}:`, event);
// Check if the agent is still running
getAgentStatus(agentRunId)
.then((status) => {
if (status.status !== 'running') {
console.log(
`[STREAM] Agent run ${agentRunId} is not running after error, closing stream`,
);
nonRunningAgentRuns.add(agentRunId);
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
} else {
console.log(
`[STREAM] Agent run ${agentRunId} is still running after error, keeping stream open`,
);
// Let the browser handle reconnection for non-fatal errors
}
})
.catch((err) => {
console.error(
`[STREAM] Error checking agent status after stream error:`,
err,
);
// Check if this is a "not found" error
const errMsg = err instanceof Error ? err.message : String(err);
const isNotFoundErr =
errMsg.includes('not found') ||
errMsg.includes('404') ||
errMsg.includes('does not exist');
if (isNotFoundErr) {
console.log(
`[STREAM] Agent run ${agentRunId} not found after error, closing stream`,
);
nonRunningAgentRuns.add(agentRunId);
eventSource.close();
activeStreams.delete(agentRunId);
callbacks.onClose();
}
// For other errors, notify but don't close the stream
callbacks.onError(errMsg);
});
};
};
// Start the stream setup
setupStream();
// Return a cleanup function
return () => {
console.log(`[STREAM] Cleanup called for ${agentRunId}`);
const stream = activeStreams.get(agentRunId);
if (stream) {
console.log(`[STREAM] Closing stream for ${agentRunId}`);
stream.close();
activeStreams.delete(agentRunId);
}
};
} catch (error) {
console.error(`[STREAM] Error setting up stream for ${agentRunId}:`, error);
callbacks.onError(error instanceof Error ? error : String(error));
callbacks.onClose();
return () => {};
}
};
// Sandbox API Functions
export const createSandboxFile = async (
sandboxId: string,
filePath: string,
content: string,
): Promise<void> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
// Use FormData to handle both text and binary content more reliably
const formData = new FormData();
formData.append('path', filePath);
// Create a Blob from the content string and append as a file
const blob = new Blob([content], { type: 'application/octet-stream' });
formData.append('file', blob, filePath.split('/').pop() || 'file');
const headers: Record<string, string> = {};
if (session?.access_token) {
headers['Authorization'] = `Bearer ${session.access_token}`;
}
const response = await fetch(`${API_URL}/sandboxes/${sandboxId}/files`, {
method: 'POST',
headers,
body: formData,
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error creating sandbox file: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error creating sandbox file: ${response.statusText} (${response.status})`,
);
}
const result = await response.json();
return result;
} catch (error) {
console.error('Failed to create sandbox file:', error);
handleApiError(error, { operation: 'create file', resource: `file ${filePath}` });
throw error;
}
};
// Fallback method for legacy support using JSON
export const createSandboxFileJson = async (
sandboxId: string,
filePath: string,
content: string,
): Promise<void> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
const headers: Record<string, string> = {
'Content-Type': 'application/json',
};
if (session?.access_token) {
headers['Authorization'] = `Bearer ${session.access_token}`;
}
const response = await fetch(
`${API_URL}/sandboxes/${sandboxId}/files/json`,
{
method: 'POST',
headers,
body: JSON.stringify({
path: filePath,
content: content,
}),
},
);
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error creating sandbox file (JSON): ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error creating sandbox file: ${response.statusText} (${response.status})`,
);
}
const result = await response.json();
return result;
} catch (error) {
console.error('Failed to create sandbox file with JSON:', error);
handleApiError(error, { operation: 'create file', resource: `file ${filePath}` });
throw error;
}
};
// Helper function to normalize file paths with Unicode characters
function normalizePathWithUnicode(path: string): string {
try {
// Replace escaped Unicode sequences with actual characters
return path.replace(/\\u([0-9a-fA-F]{4})/g, (_, hexCode) => {
return String.fromCharCode(parseInt(hexCode, 16));
});
} catch (e) {
console.error('Error processing Unicode escapes in path:', e);
return path;
}
}
export const listSandboxFiles = async (
sandboxId: string,
path: string,
): Promise<FileInfo[]> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
const url = new URL(`${API_URL}/sandboxes/${sandboxId}/files`);
// Normalize the path to handle Unicode escape sequences
const normalizedPath = normalizePathWithUnicode(path);
// Properly encode the path parameter for UTF-8 support
url.searchParams.append('path', normalizedPath);
const headers: Record<string, string> = {};
if (session?.access_token) {
headers['Authorization'] = `Bearer ${session.access_token}`;
}
const response = await fetch(url.toString(), {
headers,
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error listing sandbox files: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error listing sandbox files: ${response.statusText} (${response.status})`,
);
}
const data = await response.json();
return data.files || [];
} catch (error) {
console.error('Failed to list sandbox files:', error);
// handleApiError(error, { operation: 'list files', resource: `directory ${path}` });
throw error;
}
};
export const getSandboxFileContent = async (
sandboxId: string,
path: string,
): Promise<string | Blob> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
const url = new URL(`${API_URL}/sandboxes/${sandboxId}/files/content`);
// Normalize the path to handle Unicode escape sequences
const normalizedPath = normalizePathWithUnicode(path);
// Properly encode the path parameter for UTF-8 support
url.searchParams.append('path', normalizedPath);
const headers: Record<string, string> = {};
if (session?.access_token) {
headers['Authorization'] = `Bearer ${session.access_token}`;
}
const response = await fetch(url.toString(), {
headers,
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error getting sandbox file content: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error getting sandbox file content: ${response.statusText} (${response.status})`,
);
}
// Check if it's a text file or binary file based on content-type
const contentType = response.headers.get('content-type');
if (
(contentType && contentType.includes('text')) ||
contentType?.includes('application/json')
) {
return await response.text();
} else {
return await response.blob();
}
} catch (error) {
console.error('Failed to get sandbox file content:', error);
handleApiError(error, { operation: 'load file content', resource: `file ${path}` });
throw error;
}
};
// Function to get public projects
export const getPublicProjects = async (): Promise<Project[]> => {
try {
const supabase = createClient();
// Query for threads that are marked as public
const { data: publicThreads, error: threadsError } = await supabase
.from('threads')
.select('project_id')
.eq('is_public', true);
if (threadsError) {
console.error('Error fetching public threads:', threadsError);
return [];
}
// If no public threads found, return empty array
if (!publicThreads?.length) {
return [];
}
// Extract unique project IDs from public threads
const publicProjectIds = [
...new Set(publicThreads.map((thread) => thread.project_id)),
].filter(Boolean);
// If no valid project IDs, return empty array
if (!publicProjectIds.length) {
return [];
}
// Get the projects that have public threads
const { data: projects, error: projectsError } = await supabase
.from('projects')
.select('*')
.in('project_id', publicProjectIds);
if (projectsError) {
console.error('Error fetching public projects:', projectsError);
return [];
}
console.log(
'[API] Raw public projects from DB:',
projects?.length,
projects,
);
// Map database fields to our Project type
const mappedProjects: Project[] = (projects || []).map((project) => ({
id: project.project_id,
name: project.name || '',
description: project.description || '',
account_id: project.account_id,
created_at: project.created_at,
updated_at: project.updated_at,
sandbox: project.sandbox || {
id: '',
pass: '',
vnc_preview: '',
sandbox_url: '',
},
is_public: true, // Mark these as public projects
}));
console.log(
'[API] Mapped public projects for frontend:',
mappedProjects.length,
);
return mappedProjects;
} catch (err) {
console.error('Error fetching public projects:', err);
handleApiError(err, { operation: 'load public projects', resource: 'public projects' });
return [];
}
};
export const initiateAgent = async (
formData: FormData,
): Promise<InitiateAgentResponse> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
if (!API_URL) {
throw new Error(
'Backend URL is not configured. Set NEXT_PUBLIC_BACKEND_URL in your environment.',
);
}
console.log(
`[API] Initiating agent with files using ${API_URL}/agent/initiate`,
);
const response = await fetch(`${API_URL}/agent/initiate`, {
method: 'POST',
headers: {
Authorization: `Bearer ${session.access_token}`,
},
body: formData,
cache: 'no-store',
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`[API] Error initiating agent: ${response.status} ${response.statusText}`,
errorText,
);
if (response.status === 402) {
throw new Error('Payment Required');
} else if (response.status === 401) {
throw new Error('Authentication error: Please sign in again');
} else if (response.status >= 500) {
throw new Error('Server error: Please try again later');
}
throw new Error(
`Error initiating agent: ${response.statusText} (${response.status})`,
);
}
const result = await response.json();
return result;
} catch (error) {
console.error('[API] Failed to initiate agent:', error);
if (
error instanceof TypeError &&
error.message.includes('Failed to fetch')
) {
const networkError = new Error(
`Cannot connect to backend server. Please check your internet connection and make sure the backend is running.`,
);
handleApiError(networkError, { operation: 'initiate agent', resource: 'AI assistant' });
throw networkError;
}
handleApiError(error, { operation: 'initiate agent' });
throw error;
}
};
export const checkApiHealth = async (): Promise<HealthCheckResponse> => {
try {
const response = await fetch(`${API_URL}/health`, {
cache: 'no-store',
});
if (!response.ok) {
throw new Error(`API health check failed: ${response.statusText}`);
}
return response.json();
} catch (error) {
throw error;
}
};
// Billing API Types
export interface CreateCheckoutSessionRequest {
price_id: string;
success_url: string;
cancel_url: string;
referral_id?: string;
}
export interface CreatePortalSessionRequest {
return_url: string;
}
export interface SubscriptionStatus {
status: string; // Includes 'active', 'trialing', 'past_due', 'scheduled_downgrade', 'no_subscription'
plan_name?: string;
price_id?: string; // Added
current_period_end?: string; // ISO Date string
cancel_at_period_end: boolean;
trial_end?: string; // ISO Date string
minutes_limit?: number;
cost_limit?: number;
current_usage?: number;
// Fields for scheduled changes
has_schedule: boolean;
scheduled_plan_name?: string;
scheduled_price_id?: string; // Added
scheduled_change_date?: string; // ISO Date string - Deprecate? Check backend usage
schedule_effective_date?: string; // ISO Date string - Added for consistency
}
export interface BillingStatusResponse {
can_run: boolean;
message: string;
subscription: {
price_id: string;
plan_name: string;
minutes_limit?: number;
};
}
export interface Model {
id: string;
display_name: string;
short_name?: string;
requires_subscription?: boolean;
is_available?: boolean;
input_cost_per_million_tokens?: number | null;
output_cost_per_million_tokens?: number | null;
max_tokens?: number | null;
}
export interface AvailableModelsResponse {
models: Model[];
subscription_tier: string;
total_models: number;
}
export interface UsageLogEntry {
message_id: string;
thread_id: string;
created_at: string;
content: {
usage: {
prompt_tokens: number;
completion_tokens: number;
};
model: string;
};
total_tokens: number;
estimated_cost: number;
project_id: string;
}
export interface UsageLogsResponse {
logs: UsageLogEntry[];
has_more: boolean;
message?: string;
}
export interface CreateCheckoutSessionResponse {
status:
| 'upgraded'
| 'downgrade_scheduled'
| 'checkout_created'
| 'no_change'
| 'new'
| 'updated'
| 'scheduled';
subscription_id?: string;
schedule_id?: string;
session_id?: string;
url?: string;
effective_date?: string;
message?: string;
details?: {
is_upgrade?: boolean;
effective_date?: string;
current_price?: number;
new_price?: number;
invoice?: {
id: string;
status: string;
amount_due: number;
amount_paid: number;
};
};
}
// Billing API Functions
export const createCheckoutSession = async (
request: CreateCheckoutSessionRequest,
): Promise<CreateCheckoutSessionResponse> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const requestBody = { ...request, tolt_referral: window.tolt_referral };
console.log('Tolt Referral ID:', requestBody.tolt_referral);
const response = await fetch(`${API_URL}/billing/create-checkout-session`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${session.access_token}`,
},
body: JSON.stringify(requestBody),
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error creating checkout session: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error creating checkout session: ${response.statusText} (${response.status})`,
);
}
const data = await response.json();
console.log('Checkout session response:', data);
// Handle all possible statuses
switch (data.status) {
case 'upgraded':
case 'updated':
case 'downgrade_scheduled':
case 'scheduled':
case 'no_change':
return data;
case 'new':
case 'checkout_created':
if (!data.url) {
throw new Error('No checkout URL provided');
}
return data;
default:
console.warn(
'Unexpected status from createCheckoutSession:',
data.status,
);
return data;
}
} catch (error) {
console.error('Failed to create checkout session:', error);
handleApiError(error, { operation: 'create checkout session', resource: 'billing' });
throw error;
}
};
export const createPortalSession = async (
request: CreatePortalSessionRequest,
): Promise<{ url: string }> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/billing/create-portal-session`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${session.access_token}`,
},
body: JSON.stringify(request),
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error creating portal session: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error creating portal session: ${response.statusText} (${response.status})`,
);
}
return response.json();
} catch (error) {
console.error('Failed to create portal session:', error);
handleApiError(error, { operation: 'create portal session', resource: 'billing portal' });
throw error;
}
};
export const getSubscription = async (): Promise<SubscriptionStatus> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/billing/subscription`, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error getting subscription: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error getting subscription: ${response.statusText} (${response.status})`,
);
}
return response.json();
} catch (error) {
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('Failed to get subscription:', error);
handleApiError(error, { operation: 'load subscription', resource: 'billing information' });
throw error;
}
};
export const getAvailableModels = async (): Promise<AvailableModelsResponse> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/billing/available-models`, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error getting available models: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error getting available models: ${response.statusText} (${response.status})`,
);
}
return response.json();
} catch (error) {
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('Failed to get available models:', error);
handleApiError(error, { operation: 'load available models', resource: 'AI models' });
throw error;
}
};
export const checkBillingStatus = async (): Promise<BillingStatusResponse> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/billing/check-status`, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error checking billing status: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error checking billing status: ${response.statusText} (${response.status})`,
);
}
return response.json();
} catch (error) {
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('Failed to check billing status:', error);
throw error;
}
};
// Transcription API Types
export interface TranscriptionResponse {
text: string;
}
// Transcription API Functions
export const transcribeAudio = async (audioFile: File): Promise<TranscriptionResponse> => {
try {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const formData = new FormData();
formData.append('audio_file', audioFile);
const response = await fetch(`${API_URL}/transcription`, {
method: 'POST',
headers: {
Authorization: `Bearer ${session.access_token}`,
},
body: formData,
});
if (!response.ok) {
const errorText = await response
.text()
.catch(() => 'No error details available');
console.error(
`Error transcribing audio: ${response.status} ${response.statusText}`,
errorText,
);
throw new Error(
`Error transcribing audio: ${response.statusText} (${response.status})`,
);
}
return response.json();
} catch (error) {
if (error instanceof NoAccessTokenAvailableError) {
throw error;
}
console.error('Failed to transcribe audio:', error);
handleApiError(error, { operation: 'transcribe audio', resource: 'speech-to-text' });
throw error;
}
};
export const getAgentBuilderChatHistory = async (agentId: string): Promise<{messages: Message[], thread_id: string | null}> => {
const supabase = createClient();
const {
data: { session },
} = await supabase.auth.getSession();
if (!session?.access_token) {
throw new NoAccessTokenAvailableError();
}
const response = await fetch(`${API_URL}/agents/${agentId}/builder-chat-history`, {
headers: {
Authorization: `Bearer ${session.access_token}`,
},
});
if (!response.ok) {
const errorText = await response.text().catch(() => 'No error details available');
console.error(`Error getting agent builder chat history: ${response.status} ${response.statusText}`, errorText);
throw new Error(`Error getting agent builder chat history: ${response.statusText}`);
}
const data = await response.json();
console.log('[API] Agent builder chat history fetched:', data);
return data;
};
|