Spaces:
Running on Zero
Running on Zero
File size: 29,331 Bytes
9936912 c008bd9 a5c67b7 f9502c9 d9f2434 f9502c9 9936912 d9f2434 c008bd9 9936912 d9f2434 c008bd9 9936912 d9f2434 c008bd9 9936912 d9f2434 c008bd9 9936912 d9f2434 9936912 d9f2434 9936912 48ee375 9936912 48ee375 9936912 48ee375 9936912 48ee375 9936912 48ee375 9936912 | 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 | // Control-LLM Web Console Client Logic (Streaming, KaTeX Math Protection, Font Size, Python Plots)
document.addEventListener('DOMContentLoaded', () => {
const sidebar = document.getElementById('sidebar');
const btnSidebarToggle = document.getElementById('btn-sidebar-toggle');
const btnNewChat = document.getElementById('btn-new-chat');
const historyList = document.getElementById('history-list');
const chatViewport = document.getElementById('chat-viewport') || document.getElementById('chat-thread');
const chatThread = document.getElementById('chat-thread');
const chatForm = document.getElementById('chat-form');
const chatInput = document.getElementById('chat-input');
const btnSend = document.getElementById('btn-send');
const btnThemeToggle = document.getElementById('btn-theme-toggle');
// File Attachment Elements
const btnAttachFile = document.getElementById('btn-attach-file');
const chatFileInput = document.getElementById('chat-file-input');
const attachmentPreview = document.getElementById('attachment-preview');
const attachmentName = document.getElementById('attachment-name');
const btnRemoveAttachment = document.getElementById('btn-remove-attachment');
let attachedFile = null;
let isGenerating = false;
// Modals
const btnUploadModal = document.getElementById('btn-upload-modal');
const uploadModal = document.getElementById('upload-modal');
const btnCloseUploadModal = document.getElementById('btn-close-upload-modal');
const modalDropZone = document.getElementById('modal-drop-zone');
const modalFileInput = document.getElementById('modal-file-input');
const modalUploadStatus = document.getElementById('modal-upload-status');
const btnSettingsModal = document.getElementById('btn-settings-modal');
const settingsModal = document.getElementById('settings-modal');
const btnCloseSettingsModal = document.getElementById('btn-close-settings-modal');
const btnClearChats = document.getElementById('btn-clear-chats');
// Font Size Management
const savedFontSize = localStorage.getItem('control_llm_fontsize') || '15px';
document.documentElement.style.setProperty('--chat-font-size', savedFontSize);
document.querySelectorAll('.btn-font-size').forEach((btn) => {
const size = btn.getAttribute('data-size');
if (size === savedFontSize) btn.classList.add('active');
btn.addEventListener('click', () => {
document.querySelectorAll('.btn-font-size').forEach((b) => b.classList.remove('active'));
btn.classList.add('active');
document.documentElement.style.setProperty('--chat-font-size', size);
localStorage.setItem('control_llm_fontsize', size);
});
});
// Session Data in LocalStorage
const STORAGE_KEY = 'control_llm_sessions_v1';
let sessions = loadSessions();
let currentSessionId = null;
function loadSessions() {
try {
return JSON.parse(localStorage.getItem(STORAGE_KEY)) || [];
} catch {
return [];
}
}
function saveSessions() {
localStorage.setItem(STORAGE_KEY, JSON.stringify(sessions));
}
// Theme Management
const savedTheme = localStorage.getItem('control_llm_theme') || 'dark';
document.documentElement.setAttribute('data-theme', savedTheme);
btnThemeToggle.addEventListener('click', () => {
const currentTheme = document.documentElement.getAttribute('data-theme') || 'dark';
const nextTheme = currentTheme === 'dark' ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', nextTheme);
localStorage.setItem('control_llm_theme', nextTheme);
});
// Sidebar Toggle
btnSidebarToggle.addEventListener('click', () => {
sidebar.classList.toggle('collapsed');
});
// Configure Marked with Highlight.js and Custom Code Blocks
const customRenderer = new marked.Renderer();
customRenderer.code = function(code, lang) {
let highlighted = code;
const validLang = lang && window.hljs && hljs.getLanguage(lang) ? lang : '';
if (window.hljs) {
try {
highlighted = validLang
? hljs.highlight(code, { language: validLang, ignoreIllegals: true }).value
: hljs.highlightAuto(code).value;
} catch (e) {
highlighted = code;
}
}
const displayLang = (validLang || lang || 'code').toUpperCase();
const encodedCode = encodeURIComponent(code);
return `
<div class="code-block-wrapper">
<div class="code-block-header">
<span class="code-lang-label">${displayLang}</span>
<button type="button" class="btn-copy-code" data-code="${encodedCode}" title="Copy code">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>
<span>Copy</span>
</button>
</div>
<pre><code class="hljs ${validLang}">${highlighted}</code></pre>
</div>
`;
};
marked.setOptions({
breaks: true,
gfm: true,
renderer: customRenderer,
});
// Global Copy Code Handler
document.addEventListener('click', (e) => {
const copyBtn = e.target.closest('.btn-copy-code');
if (copyBtn) {
const codeText = decodeURIComponent(copyBtn.getAttribute('data-code') || '');
navigator.clipboard.writeText(codeText).then(() => {
const origHtml = copyBtn.innerHTML;
copyBtn.innerHTML = `
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="20 6 9 17 4 12"></polyline></svg>
<span>Copied!</span>
`;
setTimeout(() => {
copyBtn.innerHTML = origHtml;
}, 2000);
});
}
});
// Robust Markdown + KaTeX Renderer (Protects all Math delimiters before Markdown processing)
function renderMarkdownWithKaTeX(rawText) {
if (!rawText) return '';
const mathPlaceholders = [];
let text = rawText;
// A later, wider extraction (e.g. step 1's $$...$$) can swallow a
// placeholder already emitted by an earlier step (e.g. step 0's bare
// \begin{bmatrix}...\end{bmatrix}), since $$ \begin{bmatrix}...\end{bmatrix} $$
// is valid LaTeX and gets caught whole. Without this, the captured
// "formula" is literally the placeholder token text (e.g. "R =
// KATEXBLOCK0KATEX"), which is not valid LaTeX -- KaTeX then renders
// that placeholder string itself instead of the matrix it stood for.
// Resolve any nested placeholder back to its original formula before
// storing a new one.
const resolveNestedPlaceholders = (str) =>
str.replace(/KATEX(?:BLOCK|INLINE)(\d+)KATEX/g, (m, idx) => {
const item = mathPlaceholders[Number(idx)];
return item ? item.formula : m;
});
// Clean up any raw LaTeX document structure artifacts
text = text.replace(/\\section\*?\{([\s\S]*?)\}/g, '### $1\n\n');
text = text.replace(/\\subsection\*?\{([\s\S]*?)\}/g, '#### $1\n\n');
text = text.replace(/\\subsubsection\*?\{([\s\S]*?)\}/g, '##### $1\n\n');
text = text.replace(/\\begin\{figure\}[\s\S]*?\\end\{figure\}/g, (match) => {
const capMatch = match.match(/\\caption\{([\s\S]*?)\}/);
const imgMatch = match.match(/\\includegraphics.*?\{([^\}]+)\}/);
let out = '';
if (imgMatch) {
const fname = imgMatch[1].trim();
out += `\n\n![${capMatch ? capMatch[1] : 'Simulation Plot'}](/plots/${fname})\n\n`;
}
if (capMatch && !imgMatch) {
out += `\n\n*${capMatch[1]}*\n\n`;
}
return out;
});
text = text.replace(/\\(centering|begin\{center\}|end\{center\})/g, '');
text = text.replace(/\\includegraphics.*?\{([^\}]+)\}/g, '');
text = text.replace(/\\caption\{([\s\S]*?)\}/g, '*$1*');
// 0. Extract LaTeX Environments: \begin{aligned}...\end{aligned}, \begin{bmatrix}...\end{bmatrix}, etc.
text = text.replace(/\\begin\{(aligned|bmatrix|matrix|pmatrix|vmatrix|cases|equation\*?)\}[\s\S]*?\\end\{\1\}/g, (match) => {
const ph = `KATEXBLOCK${mathPlaceholders.length}KATEX`;
mathPlaceholders.push({ type: 'block', formula: match.trim() });
return `\n\n${ph}\n\n`;
});
// 1. Extract Display Math: $$ ... $$
text = text.replace(/\$\$([\s\S]*?)\$\$/g, (match, formula) => {
const ph = `KATEXBLOCK${mathPlaceholders.length}KATEX`;
mathPlaceholders.push({ type: 'block', formula: resolveNestedPlaceholders(formula.trim()) });
return `\n\n${ph}\n\n`;
});
// 2. Extract Display Math: \[ ... \]
text = text.replace(/\\\[([\s\S]*?)\\\]/g, (match, formula) => {
const ph = `KATEXBLOCK${mathPlaceholders.length}KATEX`;
mathPlaceholders.push({ type: 'block', formula: resolveNestedPlaceholders(formula.trim()) });
return `\n\n${ph}\n\n`;
});
// 3. Extract Inline Math: $ ... $ (excluding empty or multi-line)
text = text.replace(/\$([^\$\n]+?)\$/g, (match, formula) => {
const ph = `KATEXINLINE${mathPlaceholders.length}KATEX`;
mathPlaceholders.push({ type: 'inline', formula: resolveNestedPlaceholders(formula.trim()) });
return ph;
});
// 4. Extract Inline Math: \( ... \)
text = text.replace(/\\\(([\s\S]*?)\\\)/g, (match, formula) => {
const ph = `KATEXINLINE${mathPlaceholders.length}KATEX`;
mathPlaceholders.push({ type: 'inline', formula: resolveNestedPlaceholders(formula.trim()) });
return ph;
});
// Parse Markdown
let html = marked.parse(text);
// Replace placeholders with KaTeX rendered HTML
mathPlaceholders.forEach((item, index) => {
const ph = item.type === 'block' ? `KATEXBLOCK${index}KATEX` : `KATEXINLINE${index}KATEX`;
let renderedMath = item.formula;
if (window.katex) {
try {
renderedMath = window.katex.renderToString(item.formula, {
displayMode: item.type === 'block',
throwOnError: false,
});
} catch (e) {
renderedMath = item.formula;
}
}
const regex = new RegExp(`(<p>\\s*)?${ph}(\\s*<\\/p>)?`, 'g');
html = html.replace(regex, renderedMath);
html = html.split(ph).join(renderedMath);
});
return html;
}
// Math Helper Toolbar
document.querySelectorAll('.math-btn').forEach((btn) => {
btn.addEventListener('click', () => {
const snippet = btn.getAttribute('data-insert');
if (snippet) insertSnippetAtCursor(snippet);
});
});
function insertSnippetAtCursor(snippet) {
const startPos = chatInput.selectionStart || 0;
const endPos = chatInput.selectionEnd || 0;
const currentText = chatInput.value;
chatInput.value = currentText.substring(0, startPos) + snippet + currentText.substring(endPos);
chatInput.focus();
chatInput.selectionStart = startPos + snippet.length;
chatInput.selectionEnd = startPos + snippet.length;
chatInput.style.height = 'auto';
chatInput.style.height = `${Math.min(chatInput.scrollHeight, 160)}px`;
}
// File Attachment Handling
btnAttachFile.addEventListener('click', () => chatFileInput.click());
chatFileInput.addEventListener('change', () => {
if (chatFileInput.files.length > 0) {
const file = chatFileInput.files[0];
const reader = new FileReader();
reader.onload = (e) => {
attachedFile = {
name: file.name,
content: e.target.result,
};
attachmentName.textContent = file.name;
attachmentPreview.style.display = 'flex';
};
reader.readAsText(file);
}
});
btnRemoveAttachment.addEventListener('click', () => {
attachedFile = null;
attachmentPreview.style.display = 'none';
chatFileInput.value = '';
});
// History List
function renderHistorySidebar() {
historyList.innerHTML = '';
if (sessions.length === 0) {
historyList.innerHTML = '<div style="font-size: 12px; color: var(--text-muted); padding: 6px 10px;">No chats yet</div>';
return;
}
sessions.forEach((s) => {
const item = document.createElement('div');
item.className = `history-item ${s.id === currentSessionId ? 'active' : ''}`;
const titleSpan = document.createElement('span');
titleSpan.className = 'history-item-title';
titleSpan.textContent = s.title || 'Untitled Session';
titleSpan.title = s.title;
const deleteBtn = document.createElement('button');
deleteBtn.className = 'btn-delete-chat';
deleteBtn.innerHTML = '×';
deleteBtn.title = 'Delete chat';
deleteBtn.addEventListener('click', (e) => {
e.stopPropagation();
deleteSession(s.id);
});
item.appendChild(titleSpan);
item.appendChild(deleteBtn);
item.addEventListener('click', () => switchSession(s.id));
historyList.appendChild(item);
});
}
function startNewSession() {
currentSessionId = `session_${Date.now()}`;
const newSession = {
id: currentSessionId,
title: 'New Chat',
createdAt: Date.now(),
messages: [],
};
sessions.unshift(newSession);
saveSessions();
renderHistorySidebar();
renderActiveSession();
}
function switchSession(id) {
currentSessionId = id;
renderHistorySidebar();
renderActiveSession();
}
function deleteSession(id) {
const wasCurrent = currentSessionId === id;
sessions = sessions.filter((s) => s.id !== id);
saveSessions();
if (!wasCurrent) {
// Deleting a different chat must never touch the thread that's on
// screen -- rebuilding it here would wipe an in-progress streaming
// response out from under itself.
renderHistorySidebar();
return;
}
currentSessionId = sessions.length > 0 ? sessions[0].id : null;
if (!currentSessionId) {
startNewSession();
return;
}
renderHistorySidebar();
renderActiveSession();
}
function renderActiveSession() {
chatThread.innerHTML = '';
const current = sessions.find((s) => s.id === currentSessionId);
if (!current || current.messages.length === 0) {
chatThread.innerHTML = `
<div class="hero-container" id="hero-container">
<div class="hero-title">ControlAI</div>
<div class="hero-subtitle">Control Systems • Computational Python • Mathematical Simulation</div>
<div class="preset-cards">
<div class="preset-card" data-prompt="Design an LQR controller for A=[[0, 1], [-2, -3]], B=[[0], [1]], Q=diag([10, 1]), R=1 and simulate the step response.">
<div class="preset-heading">Optimal LQR Synthesis</div>
<div class="preset-detail">Solve CARE, calculate feedback gain K, and simulate closed-loop response.</div>
</div>
<div class="preset-card" data-prompt="Write and run a Python script to simulate and plot the step response of a second order system with damping ratio zeta=0.6 and natural frequency wn=1.4 rad/s.">
<div class="preset-heading">Second-Order Simulation</div>
<div class="preset-detail">Execute Python ODE simulation and generate step response plot.</div>
</div>
<div class="preset-card" data-prompt="Compute the Gain Margin, Phase Margin, and crossover frequencies for G(s) = 10 / (s*(s+1)*(s+5)).">
<div class="preset-heading">Stability Margins</div>
<div class="preset-detail">Frequency response, phase margin, gain margin, and Bode plot.</div>
</div>
<div class="preset-card" data-prompt="Discretize A=[[0, 1], [-4, -2]], B=[[0], [2]] with Ts=0.05s using exact Zero-Order Hold (ZOH).">
<div class="preset-heading">Exact ZOH Discretization</div>
<div class="preset-detail">Matrix exponential Van Loan calculation for discrete Ad, Bd.</div>
</div>
</div>
</div>
`;
attachPresetEvents();
return;
}
current.messages.forEach((msg) => {
renderMessage(msg.role, msg.content, msg.tool_traces, msg.plots, msg.thoughts);
});
chatViewport.scrollTop = chatViewport.scrollHeight;
}
function renderThoughtBox(thoughts, isOpen = false) {
if (!thoughts || thoughts.length === 0) return '';
const thoughtList = Array.isArray(thoughts) ? thoughts : [thoughts];
const text = thoughtList.join('\n\n');
return `
<details class="thought-accordion" ${isOpen ? 'open' : ''}>
<summary class="thought-summary">
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
<span>Thinking Process (${thoughtList.length} steps)</span>
</summary>
<div class="thought-content">${escapeHtml(text)}</div>
</details>
`;
}
function renderMessage(role, rawContent, toolTraces = [], plots = [], thoughts = []) {
const isUser = role === 'user';
const label = isUser ? 'You' : 'ControlAI';
const entry = document.createElement('div');
entry.className = `message-entry ${isUser ? 'user' : 'bot'}`;
const lbl = document.createElement('div');
lbl.className = 'message-label';
lbl.textContent = label;
const content = document.createElement('div');
content.className = 'message-content';
let html = '';
if (isUser) {
html = escapeHtml(rawContent);
} else {
if (thoughts && thoughts.length > 0) {
html += renderThoughtBox(thoughts, false);
}
let cleanText = (rawContent || '').replace(/\{\s*["']name["']\s*:[\s\S]*?\}\s*\}/g, '').trim();
cleanText = cleanText.replace(/<tool_call>[\s\S]*?<\/tool_call>/g, '').trim();
if (cleanText) {
html += `<div class="response-body">${renderMarkdownWithKaTeX(cleanText)}</div>`;
}
}
content.innerHTML = html;
if (!isUser) {
if (plots && plots.length > 0) {
plots.forEach((url) => {
const plotDiv = document.createElement('div');
plotDiv.className = 'plot-container';
const img = document.createElement('img');
img.className = 'plot-image';
img.src = url;
img.alt = 'Simulation Plot';
const cap = document.createElement('div');
cap.className = 'plot-caption';
cap.textContent = `Plot: ${url.split('/').pop()}`;
plotDiv.appendChild(img);
plotDiv.appendChild(cap);
content.appendChild(plotDiv);
});
}
}
entry.appendChild(lbl);
entry.appendChild(content);
chatThread.appendChild(entry);
return entry;
}
function workingIndicatorHtml(label) {
return `<span class="generating-indicator">${label}<span class="dot"></span><span class="dot"></span><span class="dot"></span></span>`;
}
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
function attachPresetEvents() {
document.querySelectorAll('.preset-card').forEach((card) => {
card.addEventListener('click', () => {
const prompt = card.getAttribute('data-prompt');
if (prompt) {
chatInput.value = prompt;
sendMessage(prompt);
}
});
});
}
// Modals Handling
btnUploadModal.addEventListener('click', () => {
uploadModal.classList.add('active');
modalUploadStatus.textContent = '';
});
btnCloseUploadModal.addEventListener('click', () => uploadModal.classList.remove('active'));
btnSettingsModal.addEventListener('click', () => settingsModal.classList.add('active'));
btnCloseSettingsModal.addEventListener('click', () => settingsModal.classList.remove('active'));
window.addEventListener('click', (e) => {
if (e.target === uploadModal) uploadModal.classList.remove('active');
if (e.target === settingsModal) settingsModal.classList.remove('active');
});
btnClearChats.addEventListener('click', () => {
if (confirm('Clear all chat history?')) {
sessions = [];
saveSessions();
startNewSession();
settingsModal.classList.remove('active');
}
});
// Modal File Upload
modalDropZone.addEventListener('click', () => modalFileInput.click());
modalDropZone.addEventListener('dragover', (e) => {
e.preventDefault();
modalDropZone.classList.add('dragover');
});
modalDropZone.addEventListener('dragleave', () => modalDropZone.classList.remove('dragover'));
modalDropZone.addEventListener('drop', (e) => {
e.preventDefault();
modalDropZone.classList.remove('dragover');
if (e.dataTransfer.files.length > 0) handleModalFileUpload(e.dataTransfer.files[0]);
});
modalFileInput.addEventListener('change', () => {
if (modalFileInput.files.length > 0) handleModalFileUpload(modalFileInput.files[0]);
});
async function handleModalFileUpload(file) {
modalUploadStatus.style.color = 'var(--text-accent)';
modalUploadStatus.textContent = `Indexing ${file.name}...`;
const formData = new FormData();
formData.append('file', file);
try {
const res = await fetch('/api/upload', {
method: 'POST',
body: formData,
});
const data = await res.json();
if (res.ok) {
modalUploadStatus.style.color = 'var(--text-accent)';
modalUploadStatus.textContent = `Indexed: +${data.chunks_added} chunks (${data.pages_parsed} pages)`;
setTimeout(() => uploadModal.classList.remove('active'), 1800);
} else {
modalUploadStatus.style.color = 'var(--text-danger)';
modalUploadStatus.textContent = `Error: ${data.detail || 'Upload failed'}`;
}
} catch (err) {
modalUploadStatus.style.color = 'var(--text-danger)';
modalUploadStatus.textContent = `Error: ${err.message}`;
}
}
// New Chat Click
btnNewChat.addEventListener('click', () => startNewSession());
// Textarea Auto-resize
chatInput.addEventListener('input', () => {
chatInput.style.height = 'auto';
chatInput.style.height = `${Math.min(chatInput.scrollHeight, 160)}px`;
});
chatInput.addEventListener('keydown', (e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
if (chatInput.value.trim() && !isGenerating) {
chatForm.dispatchEvent(new Event('submit'));
}
}
});
// Submit Handler
chatForm.addEventListener('submit', (e) => {
e.preventDefault();
const text = chatInput.value.trim();
if (!text || isGenerating) return;
sendMessage(text);
});
// Smart Scroll Detection (allows user to scroll up freely without fighting the stream)
let userScrolledUp = false;
chatViewport.addEventListener('scroll', () => {
const distanceFromBottom = chatViewport.scrollHeight - chatViewport.scrollTop - chatViewport.clientHeight;
userScrolledUp = distanceFromBottom > 90;
});
function smartScroll() {
if (!userScrolledUp) {
chatViewport.scrollTop = chatViewport.scrollHeight;
}
}
// Real-Time Token Streaming Message Sender
async function sendMessage(promptText) {
const hero = document.getElementById('hero-container');
if (hero) hero.style.display = 'none';
let current = sessions.find((s) => s.id === currentSessionId);
if (!current) {
startNewSession();
current = sessions.find((s) => s.id === currentSessionId);
}
if (current.messages.length === 0) {
current.title = promptText.length > 28 ? promptText.substring(0, 28) + '...' : promptText;
renderHistorySidebar();
}
let fullPrompt = promptText;
if (attachedFile) {
fullPrompt += `\n\n[Attached File: ${attachedFile.name}]\n\`\`\`\n${attachedFile.content}\n\`\`\``;
attachedFile = null;
attachmentPreview.style.display = 'none';
chatFileInput.value = '';
}
// Reset scroll lock on new user message
userScrolledUp = false;
// Append User Message
current.messages.push({ role: 'user', content: fullPrompt, tool_traces: [], plots: [] });
saveSessions();
renderMessage('user', fullPrompt);
chatInput.value = '';
chatInput.style.height = 'auto';
// Create Bot Message Box for live streaming
const botEntry = document.createElement('div');
botEntry.className = 'message-entry bot';
botEntry.innerHTML = `
<div class="message-label">ControlAI</div>
<div class="message-content">${workingIndicatorHtml('Working')}</div>
`;
chatThread.appendChild(botEntry);
smartScroll();
const contentBox = botEntry.querySelector('.message-content');
isGenerating = true;
btnSend.disabled = true;
let accumulatedText = '';
let toolTraces = [];
let plots = [];
let thoughts = [];
// Build conversation history (excluding the user message we just added)
const historyPayload = current.messages.slice(0, -1).map((m) => ({
role: m.role === 'user' ? 'user' : 'assistant',
content: m.content,
}));
try {
const response = await fetch('/api/chat/stream', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: fullPrompt, history: historyPayload }),
});
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
const reader = response.body.getReader();
const decoder = new TextDecoder('utf-8');
let buffer = '';
while (true) {
const { done, value } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const lines = buffer.split('\n\n');
buffer = lines.pop(); // Keep partial line in buffer
for (const line of lines) {
if (!line.startsWith('data: ')) continue;
const jsonStr = line.replace('data: ', '').trim();
if (!jsonStr) continue;
try {
const event = JSON.parse(jsonStr);
if (event.type === 'thought') {
thoughts.push(event.content);
const thoughtHtml = renderThoughtBox(thoughts, true);
const textHtml = accumulatedText
? `<div class="response-body">${renderMarkdownWithKaTeX(accumulatedText)}<span class="streaming-cursor"></span></div>`
: `<div class="response-body">${workingIndicatorHtml('Working')}<span class="streaming-cursor"></span></div>`;
contentBox.innerHTML = thoughtHtml + textHtml;
smartScroll();
} else if (event.type === 'token') {
accumulatedText += event.content;
const thoughtHtml = renderThoughtBox(thoughts, false);
contentBox.innerHTML = thoughtHtml + `<div class="response-body">${renderMarkdownWithKaTeX(accumulatedText)}<span class="streaming-cursor"></span></div>`;
smartScroll();
} else if (event.type === 'tool_start') {
// Tool starting indicator
} else if (event.type === 'tool_end') {
toolTraces.push(event.trace);
} else if (event.type === 'plot') {
if (!plots.includes(event.url)) plots.push(event.url);
} else if (event.type === 'done') {
accumulatedText = event.response || accumulatedText;
if (event.traces) toolTraces = event.traces;
if (event.plots) plots = event.plots;
if (event.thoughts) thoughts = event.thoughts;
} else if (event.type === 'error') {
throw new Error(event.error);
}
} catch (e) {
console.error('Parse SSE event error:', e);
}
}
}
// Final Render without cursor
const finalThoughtHtml = renderThoughtBox(thoughts, false);
contentBox.innerHTML = finalThoughtHtml + `<div class="response-body">${renderMarkdownWithKaTeX(accumulatedText)}</div>`;
// Append plots
if (plots.length > 0) {
plots.forEach((url) => {
const plotDiv = document.createElement('div');
plotDiv.className = 'plot-container';
const img = document.createElement('img');
img.className = 'plot-image';
img.src = url;
img.alt = 'Simulation Plot';
const cap = document.createElement('div');
cap.className = 'plot-caption';
cap.textContent = `Plot: ${url.split('/').pop()}`;
plotDiv.appendChild(img);
plotDiv.appendChild(cap);
contentBox.appendChild(plotDiv);
});
}
// Save assistant message to session
current.messages.push({
role: 'assistant',
content: accumulatedText,
tool_traces: toolTraces,
plots: plots,
thoughts: thoughts,
});
saveSessions();
} catch (err) {
contentBox.innerHTML = `<span style="color: var(--text-danger);">Execution Error: ${err.message}</span>`;
} finally {
isGenerating = false;
btnSend.disabled = false;
smartScroll();
}
}
// Initialize
if (sessions.length === 0) {
startNewSession();
} else {
currentSessionId = sessions[0].id;
renderHistorySidebar();
renderActiveSession();
}
});
|