File size: 54,282 Bytes
f56a29b | 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 |
import { useState, useCallback, useRef, useEffect } from 'react';
import type {
ChatSession,
SessionType,
SessionStatus,
ChatMessageMetadata,
DirectorState,
} from '@/lib/types/chat';
import type { DiscussionRequest } from '@/components/roundtable';
import type { Action, SpotlightAction, DiscussionAction } from '@/lib/types/action';
import type { UIMessage } from 'ai';
import type { ThinkingConfig } from '@/lib/types/provider';
import { useStageStore } from '@/lib/store';
import { useCanvasStore } from '@/lib/store/canvas';
import { useSettingsStore } from '@/lib/store/settings';
import { useUserProfileStore } from '@/lib/store/user-profile';
import { useAgentRegistry } from '@/lib/orchestration/registry/store';
import { useI18n } from '@/lib/hooks/use-i18n';
import { getCurrentModelConfig } from '@/lib/utils/model-config';
import { USER_AVATAR } from '@/lib/types/roundtable';
import { StreamBuffer } from '@/lib/buffer/stream-buffer';
import type { AgentStartItem, ActionItem } from '@/lib/buffer/stream-buffer';
import { runAgentLoop, type AgentLoopStoreState } from '@/lib/chat/agent-loop';
import { ActionEngine } from '@/lib/action/engine';
import { toast } from 'sonner';
import { createLogger } from '@/lib/logger';
const log = createLogger('ChatSessions');
interface UseChatSessionsOptions {
onLiveSpeech?: (text: string | null, agentId?: string | null) => void;
onSpeechProgress?: (ratio: number | null) => void;
onThinking?: (state: { stage: string; agentId?: string } | null) => void;
onCueUser?: (fromAgentId?: string, prompt?: string) => void;
onActiveBubble?: (messageId: string | null) => void;
onLiveSessionError?: () => void;
/** Called when a QA/Discussion session completes naturally (director end). */
onStopSession?: () => void;
onSegmentSealed?: (
messageId: string,
partId: string,
fullText: string,
agentId: string | null,
) => void;
/** When provided and returns true, StreamBuffer holds on the current text item after reveal. */
shouldHoldAfterReveal?: () => { holding: boolean; segmentDone: number } | boolean;
}
export function useChatSessions(options: UseChatSessionsOptions = {}) {
const onLiveSpeechRef = useRef(options.onLiveSpeech);
const onSpeechProgressRef = useRef(options.onSpeechProgress);
const onThinkingRef = useRef(options.onThinking);
const onCueUserRef = useRef(options.onCueUser);
const onActiveBubbleRef = useRef(options.onActiveBubble);
const onLiveSessionErrorRef = useRef(options.onLiveSessionError);
const onStopSessionRef = useRef(options.onStopSession);
const onSegmentSealedRef = useRef(options.onSegmentSealed);
const shouldHoldAfterRevealRef = useRef(options.shouldHoldAfterReveal);
useEffect(() => {
onLiveSpeechRef.current = options.onLiveSpeech;
onSpeechProgressRef.current = options.onSpeechProgress;
onThinkingRef.current = options.onThinking;
onCueUserRef.current = options.onCueUser;
onActiveBubbleRef.current = options.onActiveBubble;
onLiveSessionErrorRef.current = options.onLiveSessionError;
onStopSessionRef.current = options.onStopSession;
onSegmentSealedRef.current = options.onSegmentSealed;
shouldHoldAfterRevealRef.current = options.shouldHoldAfterReveal;
}, [
options.onLiveSpeech,
options.onSpeechProgress,
options.onThinking,
options.onCueUser,
options.onActiveBubble,
options.onLiveSessionError,
options.onStopSession,
options.onSegmentSealed,
options.shouldHoldAfterReveal,
]);
const { t } = useI18n();
// Track current stageId for data isolation
const stageId = useStageStore((s) => s.stage?.id);
const stageIdRef = useRef(stageId);
const [sessions, setSessions] = useState<ChatSession[]>(() => {
// Restore sessions from store (loaded from IndexedDB)
const stored = useStageStore.getState().chats;
return stored.map((s) =>
s.status === 'active' ? { ...s, status: 'interrupted' as SessionStatus } : s,
);
});
const [activeSessionId, setActiveSessionId] = useState<string | null>(null);
const [expandedSessionIds, setExpandedSessionIds] = useState<Set<string>>(new Set());
const [isStreaming, setIsStreaming] = useState(false);
const abortControllerRef = useRef<AbortController | null>(null);
const streamingSessionIdRef = useRef<string | null>(null);
const sessionsRef = useRef<ChatSession[]>(sessions);
useEffect(() => {
sessionsRef.current = sessions;
}, [sessions]);
// Per-loop-iteration state β tracks done event data and cue_user for the agent loop
const loopDoneDataRef = useRef<{
directorState?: DirectorState;
totalAgents: number;
agentHadContent?: boolean;
cueUserReceived: boolean;
} | null>(null);
// Reload sessions when stage changes (course switch)
// This synchronous setState is intentional: it resets derived state from
// an external store (IndexedDB) when the stageId dependency changes.
useEffect(() => {
if (stageId === stageIdRef.current) return;
stageIdRef.current = stageId;
// Stage changed β reload sessions from store (already populated by loadFromStorage)
const stored = useStageStore.getState().chats;
setSessions(
stored.map((s) =>
s.status === 'active' ? { ...s, status: 'interrupted' as SessionStatus } : s,
),
);
setActiveSessionId(null);
setExpandedSessionIds(new Set());
}, [stageId]);
// Sync sessions back to store for persistence (debounced via store's debouncedSave)
// Guard: only write to the currently active stage
useEffect(() => {
if (stageIdRef.current && stageIdRef.current === useStageStore.getState().stage?.id) {
useStageStore.getState().setChats(sessions);
}
}, [sessions]);
// StreamBuffer instances per session (SSE + lecture share the same buffer model)
const buffersRef = useRef<Map<string, StreamBuffer>>(new Map());
// Abort active stream and destroy buffers on unmount
useEffect(() => {
const buffers = buffersRef.current;
return () => {
if (abortControllerRef.current) {
abortControllerRef.current.abort();
abortControllerRef.current = null;
}
buffers.forEach((buf) => buf.shutdown());
buffers.clear();
};
}, []);
// Session-scoped "paused intent" β survives buffer recreation across turns.
// When true, newly created discussion/QA buffers are immediately paused.
const livePausedRef = useRef(false);
const clearLiveSessionAfterError = useCallback((sessionId: string, message: string) => {
const now = Date.now();
const errorMessageId = `error-${now}`;
const buf = buffersRef.current.get(sessionId);
if (buf) {
buf.shutdown();
buffersRef.current.delete(sessionId);
}
setSessions((prev) =>
prev.map((s) =>
s.id === sessionId
? {
...s,
updatedAt: now,
messages: [
...s.messages,
{
id: errorMessageId,
role: 'assistant' as const,
parts: [{ type: 'text', text: message }],
metadata: {
senderName: 'System',
originalRole: 'agent' as const,
createdAt: now,
},
},
],
}
: s,
),
);
onActiveBubbleRef.current?.(null);
if (onLiveSessionErrorRef.current) {
onLiveSessionErrorRef.current();
} else {
onSpeechProgressRef.current?.(null);
onThinkingRef.current?.(null);
onLiveSpeechRef.current?.(null, null);
}
}, []);
// Tracks the single message ID per lecture session
const lectureMessageIds = useRef<Map<string, string>>(new Map());
// Tracks last action index per lecture session (avoids stale closure reads)
const lectureLastActionIndexRef = useRef<Map<string, number>>(new Map());
const toggleSessionExpand = useCallback((sessionId: string) => {
setExpandedSessionIds((prev) => {
const next = new Set(prev);
if (next.has(sessionId)) {
next.delete(sessionId);
} else {
next.add(sessionId);
}
return next;
});
}, []);
/**
* Create a StreamBuffer for a session and wire its callbacks to React state.
* Returns the buffer instance (also stored in buffersRef).
*/
const createBufferForSession = useCallback(
(sessionId: string, type?: SessionType): StreamBuffer => {
// Dispose previous buffer if any
// Shutdown (not dispose) β avoids stale onLiveSpeech(null,null) callback
const prev = buffersRef.current.get(sessionId);
if (prev) prev.shutdown();
// For discussion/QA sessions, add pacing delays so fast models don't
// rush through text and actions. Lecture pacing is handled by PlaybackEngine.
const pacingOptions = type === 'lecture' ? {} : { postTextDelayMs: 1200, actionDelayMs: 800 };
const buffer = new StreamBuffer(
{
onAgentStart(data: AgentStartItem) {
const now = Date.now();
const agentConfig = useAgentRegistry.getState().getAgent(data.agentId);
const newMsg: UIMessage<ChatMessageMetadata> = {
id: data.messageId,
role: 'assistant',
parts: [],
metadata: {
senderName: agentConfig?.name || data.agentName,
senderAvatar: data.avatar || agentConfig?.avatar,
originalRole: 'agent',
agentId: data.agentId,
createdAt: now,
},
};
setSessions((prev) =>
prev.map((s) =>
s.id === sessionId
? { ...s, messages: [...s.messages, newMsg], updatedAt: now }
: s,
),
);
onActiveBubbleRef.current?.(data.messageId);
},
onAgentEnd() {
// Remove empty assistant messages (agent started but produced no content)
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
const msgs = s.messages.filter(
(m) => !(m.role === 'assistant' && m.parts.length === 0),
);
return msgs.length !== s.messages.length ? { ...s, messages: msgs } : s;
}),
);
},
onTextReveal(
messageId: string,
partId: string,
revealedText: string,
_isComplete: boolean,
) {
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
return {
...s,
messages: s.messages.map((m) => {
if (m.id !== messageId) return m;
const parts = [...m.parts];
// Match by _partId (supports multiple text parts per message, e.g. lecture)
const existingIdx = parts.findIndex(
(p) => (p as unknown as Record<string, unknown>)._partId === partId,
);
if (existingIdx >= 0) {
parts[existingIdx] = {
type: 'text',
text: revealedText,
_partId: partId,
} as UIMessage<ChatMessageMetadata>['parts'][number];
} else {
parts.push({
type: 'text',
text: revealedText,
_partId: partId,
} as UIMessage<ChatMessageMetadata>['parts'][number]);
}
return { ...m, parts };
}),
// Don't update updatedAt on every tick β avoids thrashing persistence sync
};
}),
);
},
onActionReady(messageId: string, data: ActionItem) {
// Add action badge to message parts
const actionPart = {
type: `action-${data.actionName}`,
actionId: data.actionId,
actionName: data.actionName,
input: data.params,
state: 'result',
output: { success: true },
} as unknown as UIMessage<ChatMessageMetadata>['parts'][number];
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
return {
...s,
messages: s.messages.map((m) =>
m.id === messageId ? { ...m, parts: [...m.parts, actionPart] } : m,
),
updatedAt: Date.now(),
};
}),
);
// Execute the action via ActionEngine (fire-and-forget for visual effects)
try {
const actionEngine = new ActionEngine(useStageStore);
const action = {
id: data.actionId,
type: data.actionName,
...data.params,
} as Action;
actionEngine.execute(action);
} catch (err) {
log.warn('[Buffer] Action execution error:', err);
}
},
onLiveSpeech(text: string | null, agentId: string | null) {
// Lecture sessions: roundtable text is managed by PlaybackEngine β setLectureSpeech
// in stage.tsx. Buffer only drives chat area pacing for lectures.
if (type === 'lecture') return;
onLiveSpeechRef.current?.(text, agentId);
},
onSpeechProgress(ratio: number | null) {
onSpeechProgressRef.current?.(ratio);
},
onThinking(data: { stage: string; agentId?: string } | null) {
onThinkingRef.current?.(data);
},
onCueUser(fromAgentId?: string, prompt?: string) {
// Track cue_user for agent loop
if (loopDoneDataRef.current) {
loopDoneDataRef.current.cueUserReceived = true;
} else {
loopDoneDataRef.current = {
totalAgents: 0,
cueUserReceived: true,
};
}
onCueUserRef.current?.(fromAgentId, prompt);
},
onDone(data: {
totalActions: number;
totalAgents: number;
agentHadContent?: boolean;
directorState?: DirectorState;
}) {
// Store done data for agent loop consumption
loopDoneDataRef.current = {
directorState: data.directorState,
totalAgents: data.totalAgents,
agentHadContent: data.agentHadContent ?? true,
cueUserReceived: loopDoneDataRef.current?.cueUserReceived ?? false,
};
// Session completion is handled by runAgentLoopFn, not here
// (Lectures don't use the agent loop and complete via endSession)
},
onError(message: string) {
log.error('[Buffer] Stream error:', message);
},
onSegmentSealed(
messageId: string,
partId: string,
fullText: string,
agentId: string | null,
) {
onSegmentSealedRef.current?.(messageId, partId, fullText, agentId);
},
shouldHoldAfterReveal() {
return shouldHoldAfterRevealRef.current?.() ?? (false as const);
},
},
pacingOptions,
);
buffersRef.current.set(sessionId, buffer);
buffer.start();
// Inherit paused intent for discussion/QA sessions so new-turn buffers
// don't start revealing text while the user has paused reading.
if (type !== 'lecture' && livePausedRef.current) {
buffer.pause();
}
return buffer;
},
[],
);
/**
* Frontend-driven agent loop. Delegates to the shared runAgentLoop
* from lib/chat/agent-loop.ts, wiring StreamBuffer for UI pacing.
*
* Each iteration: POST /api/chat β process SSE β wait for buffer drain β check outcome.
*/
const runAgentLoopFn = useCallback(
async (
sessionId: string,
requestTemplate: {
messages: UIMessage<ChatMessageMetadata>[];
storeState: Record<string, unknown>;
config: {
agentIds: string[];
sessionType?: string;
agentConfigs?: Record<string, unknown>[];
[key: string]: unknown;
};
userProfile?: { nickname?: string; bio?: string };
apiKey: string;
baseUrl?: string;
model?: string;
providerType?: string;
thinkingConfig?: ThinkingConfig;
},
controller: AbortController,
sessionType: SessionType,
): Promise<void> => {
const settingsState = useSettingsStore.getState();
// Attach full configs for generated (non-default) agents so the server can use them.
// The server-side registry only has default agents; generated agents exist only client-side.
const generatedConfigs = requestTemplate.config.agentIds
.filter((id: string) => !id.startsWith('default-'))
.map((id: string) => useAgentRegistry.getState().getAgent(id))
.filter((agent): agent is NonNullable<typeof agent> => Boolean(agent))
.map(({ createdAt: _c, updatedAt: _u, isDefault: _d, ...rest }) => rest);
if (generatedConfigs.length > 0) {
requestTemplate.config.agentConfigs = generatedConfigs;
}
const defaultMaxTurns = requestTemplate.config.agentIds.length <= 1 ? 1 : 10;
const maxTurns = settingsState.maxTurns
? parseInt(settingsState.maxTurns, 10) || defaultMaxTurns
: defaultMaxTurns;
// Per-iteration buffer reference β set in onEvent, used in onIterationEnd
let currentBuffer: StreamBuffer | null = null;
// Tracks agent_start messageId so text_delta/action events with a missing
// messageId can fall back to the current agent.
let currentMessageId: string | null = null;
const outcome = await runAgentLoop(
{
config: requestTemplate.config,
userProfile: requestTemplate.userProfile,
apiKey: requestTemplate.apiKey,
baseUrl: requestTemplate.baseUrl,
model: requestTemplate.model,
providerType: requestTemplate.providerType,
thinkingConfig: requestTemplate.thinkingConfig,
},
{
getStoreState: (): AgentLoopStoreState => {
const freshState = useStageStore.getState();
return {
stage: freshState.stage,
scenes: freshState.scenes,
currentSceneId: freshState.currentSceneId,
mode: freshState.mode,
whiteboardOpen: useCanvasStore.getState().whiteboardOpen,
};
},
getMessages: () => {
const currentSession = sessionsRef.current.find((s) => s.id === sessionId);
return currentSession?.messages ?? requestTemplate.messages;
},
fetchChat: (body, signal) =>
fetch('/api/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(body),
signal,
}),
onEvent: (event) => {
// Create buffer on first event of each iteration
if (!currentBuffer) {
currentBuffer = createBufferForSession(sessionId, sessionType);
}
// Pipe SSE events into StreamBuffer.
switch (event.type) {
case 'agent_start': {
const { messageId, agentId, agentName, agentAvatar, agentColor } = event.data;
currentMessageId = messageId;
currentBuffer.pushAgentStart({
messageId,
agentId,
agentName,
avatar: agentAvatar,
color: agentColor,
});
break;
}
case 'agent_end': {
currentBuffer.pushAgentEnd({
messageId: event.data.messageId,
agentId: event.data.agentId,
});
break;
}
case 'text_delta': {
const targetId = event.data.messageId ?? currentMessageId;
if (!targetId) break;
currentBuffer.pushText(targetId, event.data.content);
break;
}
case 'action': {
const targetId = event.data.messageId ?? currentMessageId;
if (!targetId) break;
if (controller.signal.aborted) break;
currentBuffer.pushAction({
actionId: event.data.actionId,
actionName: event.data.actionName,
params: event.data.params,
messageId: targetId,
agentId: event.data.agentId,
});
break;
}
case 'thinking':
currentBuffer.pushThinking(event.data);
break;
case 'cue_user':
currentBuffer.pushCueUser(event.data);
break;
case 'done':
currentBuffer.pushDone(event.data);
break;
case 'error':
// Surface the error to the buffer (for UI), then throw so the
// shared agent loop breaks out instead of silently continuing.
currentBuffer.pushError(event.data.message);
throw new Error(event.data.message);
}
},
onIterationEnd: async () => {
if (!currentBuffer) return null;
// Wait for buffer to finish playing all items (character animations, delays)
try {
await currentBuffer.waitUntilDrained();
} catch {
// Buffer was disposed/shutdown (abort or session end)
currentBuffer = null;
return null;
}
currentBuffer = null;
// Read the iteration result from loopDoneDataRef
// (populated by buffer's onDone/onCueUser callbacks)
const doneData = loopDoneDataRef.current;
loopDoneDataRef.current = null;
if (!doneData) return null;
return {
directorState: doneData.directorState,
totalAgents: doneData.totalAgents,
agentHadContent: doneData.agentHadContent ?? true,
cueUserReceived: doneData.cueUserReceived,
};
},
},
controller.signal,
maxTurns,
);
// Handle loop completion (UI-specific)
if (!controller.signal.aborted) {
if (outcome.reason !== 'cue_user') {
setSessions((prev) =>
prev.map((s) =>
s.id === sessionId
? {
...s,
status: 'completed' as SessionStatus,
updatedAt: Date.now(),
}
: s,
),
);
onStopSessionRef.current?.();
}
}
},
[createBufferForSession],
);
/**
* Create a new chat session
*/
const createSession = useCallback(async (type: SessionType, title: string): Promise<string> => {
const sessionId = `session-${Date.now()}-${Math.random().toString(36).slice(2)}`;
const now = Date.now();
const newSession: ChatSession = {
id: sessionId,
type,
title,
status: 'active',
messages: [],
config: {
agentIds: ['default-1'],
maxTurns: 0, // Not used for runtime β frontend loop manages maxTurns
currentTurn: 0,
defaultAgentId: 'default-1',
},
toolCalls: [],
pendingToolCalls: [],
createdAt: now,
updatedAt: now,
};
setSessions((prev) => [...prev, newSession]);
setActiveSessionId(sessionId);
setExpandedSessionIds((prev) => new Set([...prev, sessionId]));
log.info(`[ChatArea] Created session: ${sessionId} (${type})`);
return sessionId;
}, []);
/**
* End a chat session.
* For QA/Discussion sessions with active streaming, appends "..." + interrupted marker.
*/
const endSession = useCallback(
async (sessionId: string): Promise<void> => {
log.info(`[ChatArea] Ending session: ${sessionId}`);
livePausedRef.current = false;
const session = sessionsRef.current.find((s) => s.id === sessionId);
const isLiveSession = session && (session.type === 'qa' || session.type === 'discussion');
const wasStreaming = !!(
abortControllerRef.current && streamingSessionIdRef.current === sessionId
);
// Only abort if this session owns the active stream
if (wasStreaming) {
abortControllerRef.current!.abort();
abortControllerRef.current = null;
streamingSessionIdRef.current = null;
setIsStreaming(false);
}
// Destroy buffer β shutdown avoids firing stale onLiveSpeech(null,null)
const buf = buffersRef.current.get(sessionId);
if (buf) {
buf.shutdown();
buffersRef.current.delete(sessionId);
}
lectureMessageIds.current.delete(sessionId);
lectureLastActionIndexRef.current.delete(sessionId);
if (isLiveSession && wasStreaming) {
// Append "..." + interrupted marker to last assistant message
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
const messages = [...s.messages];
for (let i = messages.length - 1; i >= 0; i--) {
if (messages[i].role === 'assistant') {
const parts = [...messages[i].parts];
let appended = false;
for (let j = parts.length - 1; j >= 0; j--) {
if (parts[j].type === 'text') {
const textPart = parts[j] as { type: 'text'; text: string };
parts[j] = {
type: 'text',
text: (textPart.text || '') + '...',
} as UIMessage<ChatMessageMetadata>['parts'][number];
appended = true;
break;
}
}
if (!appended) {
parts.push({
type: 'text',
text: '...',
} as UIMessage<ChatMessageMetadata>['parts'][number]);
}
messages[i] = {
...messages[i],
parts,
metadata: { ...messages[i].metadata, interrupted: true },
};
break;
}
}
return { ...s, messages, status: 'completed' as SessionStatus };
}),
);
// Clear roundtable state via callbacks
onLiveSpeechRef.current?.(null, null);
onThinkingRef.current?.(null);
} else {
setSessions((prev) =>
prev.map((s) =>
s.id === sessionId ? { ...s, status: 'completed' as SessionStatus } : s,
),
);
}
if (activeSessionId === sessionId) {
setActiveSessionId(null);
}
},
[activeSessionId],
);
/**
* End the currently active QA/Discussion session (if any).
*/
const endActiveSession = useCallback(async (): Promise<void> => {
const active = sessionsRef.current.find(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
if (active) {
await endSession(active.id);
}
}, [endSession]);
/**
* Soft-pause the active QA/Discussion session.
* Aborts SSE and appends "..." + interrupted marker, but keeps session 'active'
* so the user can continue speaking in the same topic.
*/
const softPauseSession = useCallback(async (sessionId: string): Promise<void> => {
livePausedRef.current = false;
const session = sessionsRef.current.find((s) => s.id === sessionId);
if (!session) return;
const isLiveSession = session.type === 'qa' || session.type === 'discussion';
if (!isLiveSession || session.status !== 'active') return;
const wasStreaming = !!(
abortControllerRef.current && streamingSessionIdRef.current === sessionId
);
// Destroy buffer β no more ticks, no stale onDone/onLiveSpeech callbacks.
// Resume will create a fresh buffer.
const buf = buffersRef.current.get(sessionId);
if (buf) {
buf.shutdown();
buffersRef.current.delete(sessionId);
}
// Abort SSE stream
if (wasStreaming) {
abortControllerRef.current!.abort();
abortControllerRef.current = null;
streamingSessionIdRef.current = null;
setIsStreaming(false);
}
if (wasStreaming) {
// Append "..." + interrupted marker to last assistant message, keep status 'active'
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
const messages = [...s.messages];
for (let i = messages.length - 1; i >= 0; i--) {
if (messages[i].role === 'assistant') {
const parts = [...messages[i].parts];
let appended = false;
for (let j = parts.length - 1; j >= 0; j--) {
if (parts[j].type === 'text') {
const textPart = parts[j] as { type: 'text'; text: string };
parts[j] = {
type: 'text',
text: (textPart.text || '') + '...',
} as UIMessage<ChatMessageMetadata>['parts'][number];
appended = true;
break;
}
}
if (!appended) {
parts.push({
type: 'text',
text: '...',
} as UIMessage<ChatMessageMetadata>['parts'][number]);
}
messages[i] = {
...messages[i],
parts,
metadata: { ...messages[i].metadata, interrupted: true },
};
break;
}
}
// Keep status 'active' β session continues when user speaks
return { ...s, messages, updatedAt: Date.now() };
}),
);
// Note: Do NOT call onLiveSpeech/onThinking here.
// Caller (doSoftPause) manages roundtable state to keep the interrupted bubble visible.
}
log.info(`[ChatArea] Soft-paused session: ${sessionId}`);
}, []);
/**
* Soft-pause the currently active QA/Discussion session (if any).
*/
const softPauseActiveSession = useCallback(async (): Promise<void> => {
const active = sessionsRef.current.find(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
if (active) {
await softPauseSession(active.id);
}
}, [softPauseSession]);
/**
* Resume a soft-paused session by re-calling /chat with existing messages.
* The director will pick the next agent to continue the topic.
*/
const resumeSession = useCallback(
async (sessionId: string): Promise<void> => {
const session = sessionsRef.current.find((s) => s.id === sessionId);
if (!session || session.status !== 'active') return;
const controller = new AbortController();
abortControllerRef.current = controller;
streamingSessionIdRef.current = sessionId;
setIsStreaming(true);
const currentState = useStageStore.getState();
try {
log.info(`[ChatArea] Resuming session: ${sessionId}`);
const userProfileState = useUserProfileStore.getState();
const mc = getCurrentModelConfig();
const agentIds =
useSettingsStore.getState().selectedAgentIds?.length > 0
? useSettingsStore.getState().selectedAgentIds
: session.config.agentIds;
await runAgentLoopFn(
sessionId,
{
messages: session.messages,
storeState: {
stage: currentState.stage,
scenes: currentState.scenes,
currentSceneId: currentState.currentSceneId,
mode: currentState.mode,
whiteboardOpen: useCanvasStore.getState().whiteboardOpen,
},
config: {
agentIds,
sessionType: session.type,
},
userProfile: {
nickname: userProfileState.nickname || undefined,
bio: userProfileState.bio || undefined,
},
apiKey: mc.apiKey,
baseUrl: mc.baseUrl,
model: mc.modelString,
providerType: mc.providerType,
thinkingConfig: mc.thinkingConfig,
},
controller,
session.type,
);
} catch (error) {
if (error instanceof DOMException && error.name === 'AbortError') {
log.info('[ChatArea] Resume aborted');
return;
}
log.error('[ChatArea] Resume error:', error);
clearLiveSessionAfterError(
sessionId,
`Error: ${error instanceof Error ? error.message : String(error)}`,
);
} finally {
if (abortControllerRef.current === controller) {
abortControllerRef.current = null;
streamingSessionIdRef.current = null;
setIsStreaming(false);
}
}
},
[clearLiveSessionAfterError, runAgentLoopFn],
);
/**
* Resume the currently active soft-paused session (if any).
*/
const resumeActiveSession = useCallback(async (): Promise<void> => {
const active = sessionsRef.current.find(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
if (active) {
await resumeSession(active.id);
}
}, [resumeSession]);
/**
* Send a message to the active session
*/
const sendMessage = useCallback(
async (content: string): Promise<void> => {
let sessionId = activeSessionId;
// Interrupt active generation: abort stream and append "..." to the last agent message
if (isStreaming && abortControllerRef.current) {
abortControllerRef.current.abort();
abortControllerRef.current = null;
if (sessionId) {
setSessions((prev) =>
prev.map((s) => {
if (s.id !== sessionId) return s;
const messages = [...s.messages];
for (let i = messages.length - 1; i >= 0; i--) {
if (messages[i].role === 'assistant') {
const parts = [...messages[i].parts];
for (let j = parts.length - 1; j >= 0; j--) {
if (parts[j].type === 'text') {
const textPart = parts[j] as {
type: 'text';
text: string;
};
parts[j] = {
type: 'text',
text: (textPart.text || '') + '...',
} as UIMessage<ChatMessageMetadata>['parts'][number];
messages[i] = { ...messages[i], parts };
return { ...s, messages, updatedAt: Date.now() };
}
}
break;
}
}
return s;
}),
);
}
}
// Validate model configuration before sending
const modelConfig = getCurrentModelConfig();
if (!modelConfig.modelId) {
toast.error(t('settings.modelNotConfigured'));
return;
}
if (modelConfig.requiresApiKey && !modelConfig.apiKey && !modelConfig.isServerConfigured) {
toast.error(t('settings.setupNeeded'), {
description: t('settings.apiKeyDesc'),
});
return;
}
// Create a new session when there's no active QA session to append to.
// A completed session should NOT be reused β start a fresh one instead.
const activeSession = sessionsRef.current.find((s) => s.id === sessionId);
const needNewSession =
!sessionId || activeSession?.type === 'lecture' || activeSession?.status === 'completed';
if (needNewSession) {
// End all active QA/Discussion sessions before creating new one
const activeQAOrDiscussion = sessionsRef.current.filter(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
for (const session of activeQAOrDiscussion) {
await endSession(session.id);
}
sessionId = await createSession('qa', 'Q&A');
}
const controller = new AbortController();
abortControllerRef.current = controller;
streamingSessionIdRef.current = sessionId;
setIsStreaming(true);
const now = Date.now();
const userMessageId = `user-${now}`;
// Read all selected agent IDs from settings store
const settingsState = useSettingsStore.getState();
const agentIds: string[] =
settingsState.selectedAgentIds?.length > 0 ? settingsState.selectedAgentIds : ['default-1'];
const userMessage: UIMessage<ChatMessageMetadata> = {
id: userMessageId,
role: 'user',
parts: [{ type: 'text', text: content }],
metadata: {
senderName: t('common.you'),
senderAvatar: USER_AVATAR,
originalRole: 'user',
createdAt: now,
},
};
// Read current session data from ref (avoids stale closure AND keeps updater pure)
const existingSession = sessionsRef.current.find((s) => s.id === sessionId);
const sessionMessages: UIMessage<ChatMessageMetadata>[] = existingSession
? [...existingSession.messages, userMessage]
: [userMessage];
const sessionType: SessionType = existingSession?.type || 'qa';
// Pure updater β no side effects
setSessions((prev) => {
const exists = prev.some((s) => s.id === sessionId);
if (exists) {
return prev.map((s) =>
s.id === sessionId
? {
...s,
messages: [...s.messages, userMessage],
status: 'active' as SessionStatus,
updatedAt: now,
}
: s,
);
} else {
const newSession: ChatSession = {
id: sessionId!,
type: 'qa',
title: 'Q&A',
status: 'active',
messages: [userMessage],
config: {
agentIds,
maxTurns: 0, // Not used for runtime β frontend loop manages maxTurns
currentTurn: 0,
defaultAgentId: agentIds[0],
},
toolCalls: [],
pendingToolCalls: [],
createdAt: now,
updatedAt: now,
};
return [...prev, newSession];
}
});
const currentState = useStageStore.getState();
try {
log.info(
`[ChatArea] Sending message: "${content.slice(0, 50)}..." agents: ${agentIds.join(', ')}`,
);
const userProfileState = useUserProfileStore.getState();
const mc = getCurrentModelConfig();
await runAgentLoopFn(
sessionId!,
{
messages: sessionMessages,
storeState: {
stage: currentState.stage,
scenes: currentState.scenes,
currentSceneId: currentState.currentSceneId,
mode: currentState.mode,
whiteboardOpen: useCanvasStore.getState().whiteboardOpen,
},
config: {
agentIds,
sessionType,
},
userProfile: {
nickname: userProfileState.nickname || undefined,
bio: userProfileState.bio || undefined,
},
apiKey: mc.apiKey,
baseUrl: mc.baseUrl,
model: mc.modelString,
providerType: mc.providerType,
thinkingConfig: mc.thinkingConfig,
},
controller,
sessionType,
);
} catch (error) {
// Ignore AbortError β it's intentional (user interrupted)
if (error instanceof DOMException && error.name === 'AbortError') {
log.info('[ChatArea] Request aborted by user');
return;
}
log.error('[ChatArea] Error:', error);
clearLiveSessionAfterError(
sessionId!,
`Error: ${error instanceof Error ? error.message : String(error)}`,
);
} finally {
// Only clean up if this is still the active controller (avoid race with interrupt)
if (abortControllerRef.current === controller) {
abortControllerRef.current = null;
streamingSessionIdRef.current = null;
setIsStreaming(false);
}
}
},
[
activeSessionId,
clearLiveSessionAfterError,
isStreaming,
createSession,
endSession,
runAgentLoopFn,
t,
],
);
/**
* Start a discussion with agent speaking first
*/
const startDiscussion = useCallback(
async (request: DiscussionRequest): Promise<void> => {
log.info(`[ChatArea] Starting discussion: "${request.topic}"`);
// Explicitly clear buffer-pause intent (also cleared transitively via endSession,
// but being explicit guards against future refactors)
livePausedRef.current = false;
// Validate model configuration before starting discussion
const modelConfig = getCurrentModelConfig();
if (!modelConfig.modelId) {
toast.error(t('settings.modelNotConfigured'));
return;
}
if (modelConfig.requiresApiKey && !modelConfig.apiKey && !modelConfig.isServerConfigured) {
toast.error(t('settings.setupNeeded'), {
description: t('settings.apiKeyDesc'),
});
return;
}
// Auto-end previous active QA/Discussion sessions to ensure only one is active
const activeQAOrDiscussion = sessionsRef.current.filter(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
for (const session of activeQAOrDiscussion) {
await endSession(session.id);
}
const sessionId = `session-${Date.now()}-${Math.random().toString(36).slice(2)}`;
const now = Date.now();
const agentId = request.agentId || 'default-1';
// Read all selected agent IDs from settings store
const settingsState = useSettingsStore.getState();
const agentIds: string[] =
settingsState.selectedAgentIds?.length > 0
? [...settingsState.selectedAgentIds]
: [agentId];
// Ensure the trigger agent is included
if (!agentIds.includes(agentId)) {
agentIds.unshift(agentId);
}
// No pre-created assistant message β agent_start events create them dynamically
const newSession: ChatSession = {
id: sessionId,
type: 'discussion',
title: request.topic,
status: 'active',
messages: [],
config: {
agentIds,
maxTurns: 0, // Not used for runtime β frontend loop manages maxTurns
currentTurn: 0,
triggerAgentId: agentId,
},
toolCalls: [],
pendingToolCalls: [],
createdAt: now,
updatedAt: now,
};
setSessions((prev) => [...prev, newSession]);
setActiveSessionId(sessionId);
setExpandedSessionIds((prev) => new Set([...prev, sessionId]));
const controller = new AbortController();
abortControllerRef.current = controller;
streamingSessionIdRef.current = sessionId;
setIsStreaming(true);
const currentState = useStageStore.getState();
try {
const userProfileState = useUserProfileStore.getState();
const mc = getCurrentModelConfig();
await runAgentLoopFn(
sessionId,
{
messages: [],
storeState: {
stage: currentState.stage,
scenes: currentState.scenes,
currentSceneId: currentState.currentSceneId,
mode: currentState.mode,
whiteboardOpen: useCanvasStore.getState().whiteboardOpen,
},
config: {
agentIds,
sessionType: 'discussion',
discussionTopic: request.topic,
discussionPrompt: request.prompt,
triggerAgentId: agentId,
},
userProfile: {
nickname: userProfileState.nickname || undefined,
bio: userProfileState.bio || undefined,
},
apiKey: mc.apiKey,
baseUrl: mc.baseUrl,
model: mc.modelString,
providerType: mc.providerType,
thinkingConfig: mc.thinkingConfig,
},
controller,
'discussion',
);
} catch (error) {
// Ignore AbortError β it's intentional (user interrupted)
if (error instanceof DOMException && error.name === 'AbortError') {
log.info('[ChatArea] Discussion aborted by user');
return;
}
log.error('[ChatArea] Discussion error:', error);
clearLiveSessionAfterError(
sessionId,
`Error starting discussion: ${error instanceof Error ? error.message : String(error)}`,
);
} finally {
// Only clean up if this is still the active controller (avoid race with interrupt)
if (abortControllerRef.current === controller) {
abortControllerRef.current = null;
streamingSessionIdRef.current = null;
setIsStreaming(false);
}
}
},
// eslint-disable-next-line react-hooks/exhaustive-deps -- t is stable from i18n context
[clearLiveSessionAfterError, endSession, runAgentLoopFn],
);
/**
* Handle interruption
*/
const handleInterrupt = useCallback(() => {
if (!abortControllerRef.current) return;
log.info('[ChatArea] Interrupting active request');
abortControllerRef.current.abort();
abortControllerRef.current = null;
setIsStreaming(false);
streamingSessionIdRef.current = null;
}, []);
/**
* Start a lecture session for a scene.
* Creates a single assistant message that all actions will be appended to.
* Deduplicates: returns existing active lecture session for the same sceneId if found.
*/
const startLecture = useCallback(
async (sceneId: string): Promise<string> => {
// Check for existing lecture session with same sceneId (active or completed)
const existing = sessions.find(
(s) =>
s.type === 'lecture' &&
s.sceneId === sceneId &&
(s.status === 'active' || s.status === 'completed'),
);
if (existing) {
// Reactivate a completed session so the chat panel shows it as active again.
// Actions won't be re-appended because lastActionIndex already covers them.
if (existing.status === 'completed') {
setSessions((prev) =>
prev.map((s) =>
s.id === existing.id ? { ...s, status: 'active' as SessionStatus } : s,
),
);
// Restore lecture tracking refs (cleared by endSession)
const messageId = existing.messages[0]?.id;
if (messageId) {
lectureMessageIds.current.set(existing.id, messageId);
}
if (existing.lastActionIndex !== undefined) {
lectureLastActionIndexRef.current.set(existing.id, existing.lastActionIndex);
}
}
setActiveSessionId(existing.id);
setExpandedSessionIds((prev) => new Set([...prev, existing.id]));
return existing.id;
}
const sessionId = `session-${Date.now()}-${Math.random().toString(36).slice(2)}`;
const now = Date.now();
const messageId = `lecture-msg-${now}`;
const scene = useStageStore.getState().scenes.find((s) => s.id === sceneId);
const title = scene?.title || t('chat.lecture');
const agentConfig = useAgentRegistry.getState().getAgent('default-1');
// Create session with a single assistant message (all actions append parts here)
const lectureMessage: UIMessage<ChatMessageMetadata> = {
id: messageId,
role: 'assistant',
parts: [],
metadata: {
senderName: agentConfig?.name || t('settings.agentNames.default-1'),
senderAvatar: agentConfig?.avatar,
originalRole: 'teacher',
agentId: 'default-1',
createdAt: now,
},
};
const newSession: ChatSession = {
id: sessionId,
type: 'lecture',
title,
status: 'active',
messages: [lectureMessage],
config: {
agentIds: ['default-1'],
maxTurns: 0,
currentTurn: 0,
},
toolCalls: [],
pendingToolCalls: [],
sceneId,
lastActionIndex: -1,
createdAt: now,
updatedAt: now,
};
lectureMessageIds.current.set(sessionId, messageId);
setSessions((prev) => [...prev, newSession]);
setActiveSessionId(sessionId);
setExpandedSessionIds((prev) => new Set([...prev, sessionId]));
log.info(`[ChatArea] Created lecture session: ${sessionId} for scene ${sceneId}`);
return sessionId;
},
[sessions, t],
);
/**
* Add a lecture action to the single message bubble via StreamBuffer.
* Speech β pushText + sealText (buffer handles pacing).
* Spotlight/laser/discussion β pushAction (badge appears after preceding text is revealed).
*/
const addLectureMessage = useCallback(
(sessionId: string, action: Action, actionIndex: number) => {
const messageId = lectureMessageIds.current.get(sessionId);
if (!messageId) return;
// Skip if this action was already appended in a previous run
const lastIndex = lectureLastActionIndexRef.current.get(sessionId) ?? -1;
if (actionIndex <= lastIndex) return;
lectureLastActionIndexRef.current.set(sessionId, actionIndex);
// Update lastActionIndex in session
setSessions((prev) =>
prev.map((s) =>
s.id === sessionId ? { ...s, lastActionIndex: actionIndex, updatedAt: Date.now() } : s,
),
);
// Get or create buffer for this lecture session
let buffer = buffersRef.current.get(sessionId);
if (!buffer || buffer.disposed) {
buffer = createBufferForSession(sessionId, 'lecture');
}
if (action.type === 'speech') {
buffer.pushText(messageId, action.text, 'default-1');
buffer.sealText(messageId);
} else if (
action.type === 'spotlight' ||
action.type === 'laser' ||
action.type === 'discussion'
) {
const now = Date.now();
buffer.pushAction({
messageId,
actionId: `${action.type}-${now}`,
actionName: action.type,
params:
action.type === 'spotlight'
? {
elementId: action.elementId,
dimOpacity: (action as SpotlightAction).dimOpacity,
}
: action.type === 'laser'
? { elementId: action.elementId }
: {
topic: (action as DiscussionAction).topic,
prompt: (action as DiscussionAction).prompt,
},
agentId: 'default-1',
});
}
},
[createBufferForSession],
);
// Derive active session type for external consumers
const activeSession = sessions.find((s) => s.id === activeSessionId);
const activeSessionType = activeSession?.type ?? null;
const getLectureMessageId = useCallback((sessionId: string): string | null => {
return lectureMessageIds.current.get(sessionId) ?? null;
}, []);
/** Pause the buffer for a session (lecture pause support). */
const pauseBuffer = useCallback((sessionId: string) => {
const buf = buffersRef.current.get(sessionId);
if (buf) buf.pause();
}, []);
/** Resume the buffer for a session. */
const resumeBuffer = useCallback((sessionId: string) => {
const buf = buffersRef.current.get(sessionId);
if (buf) buf.resume();
}, []);
/** Pause the active live (QA/Discussion) buffer and set sticky intent. Returns true if paused. */
const pauseActiveLiveBuffer = useCallback((): boolean => {
const active = sessionsRef.current.find(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
if (!active) return false;
const buf = buffersRef.current.get(active.id);
if (!buf || buf.disposed) return false;
livePausedRef.current = true;
buf.pause();
log.info('[ChatArea] Buffer-paused discussion:', active.id);
return true;
}, []);
/** Resume the active live (QA/Discussion) buffer and clear sticky intent. */
const resumeActiveLiveBuffer = useCallback(() => {
const active = sessionsRef.current.find(
(s) => (s.type === 'qa' || s.type === 'discussion') && s.status === 'active',
);
if (!active) return;
livePausedRef.current = false;
const buf = buffersRef.current.get(active.id);
if (buf) buf.resume();
log.info('[ChatArea] Buffer-resumed discussion:', active.id);
}, []);
return {
sessions,
activeSessionId,
activeSessionType,
expandedSessionIds,
isStreaming,
createSession,
endSession,
endActiveSession,
softPauseActiveSession,
resumeActiveSession,
sendMessage,
startDiscussion,
startLecture,
addLectureMessage,
toggleSessionExpand,
handleInterrupt,
getLectureMessageId,
pauseBuffer,
resumeBuffer,
pauseActiveLiveBuffer,
resumeActiveLiveBuffer,
};
}
|