File size: 32,849 Bytes
ed1b365 | 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 | /* ============================================================
Codette Chat UI β Frontend Logic
Pure vanilla JS. Zero dependencies.
============================================================ */
// Adapter color map
const COLORS = {
newton: '#3b82f6', davinci: '#f59e0b', empathy: '#a855f7',
philosophy: '#10b981', quantum: '#ef4444', consciousness: '#e2e8f0',
multi_perspective: '#f97316', systems_architecture: '#06b6d4',
_base: '#94a3b8', auto: '#94a3b8',
};
const LABELS = {
newton: 'N', davinci: 'D', empathy: 'E', philosophy: 'P',
quantum: 'Q', consciousness: 'C', multi_perspective: 'M',
systems_architecture: 'S',
};
// State
let isLoading = false;
let spiderwebViz = null;
let serverConnected = true;
let reconnectTimer = null;
// ββ Initialization ββ
document.addEventListener('DOMContentLoaded', () => {
initUI();
pollStatus();
loadSessions();
initCoverageDots();
initAdapterDots();
// Initialize spiderweb canvas
const canvas = document.getElementById('spiderweb-canvas');
if (canvas) {
spiderwebViz = new SpiderwebViz(canvas);
}
});
function initUI() {
const input = document.getElementById('chat-input');
const sendBtn = document.getElementById('send-btn');
const micBtn = document.getElementById('mic-btn');
const newBtn = document.getElementById('btn-new-chat');
const panelBtn = document.getElementById('btn-toggle-panel');
const maxAdapters = document.getElementById('max-adapters');
// Send on Enter (Shift+Enter for newline)
input.addEventListener('keydown', (e) => {
if (e.key === 'Enter' && !e.shiftKey) {
e.preventDefault();
sendMessage();
}
});
// Auto-resize textarea
input.addEventListener('input', () => {
input.style.height = 'auto';
input.style.height = Math.min(input.scrollHeight, 120) + 'px';
});
sendBtn.addEventListener('click', sendMessage);
newBtn.addEventListener('click', newChat);
const exportBtn = document.getElementById('btn-export');
const importBtn = document.getElementById('btn-import');
const importFile = document.getElementById('import-file');
exportBtn.addEventListener('click', exportSession);
importBtn.addEventListener('click', () => importFile.click());
importFile.addEventListener('change', importSession);
panelBtn.addEventListener('click', () => {
const panel = document.getElementById('side-panel');
panel.classList.toggle('collapsed');
// Update button label
panelBtn.textContent = panel.classList.contains('collapsed') ? 'Cocoon' : 'Close';
});
maxAdapters.addEventListener('input', () => {
document.getElementById('max-adapters-value').textContent = maxAdapters.value;
});
// Voice input via Web Speech API
initVoice(micBtn);
// TTS toggle β read responses aloud when enabled
const ttsToggle = document.getElementById('tts-toggle');
if (ttsToggle) {
ttsToggle.addEventListener('change', () => {
if (ttsToggle.checked && !window.speechSynthesis) {
ttsToggle.checked = false;
ttsToggle.parentElement.title = 'Speech synthesis not supported';
}
});
}
}
// ββ Voice Input ββ
let _recognition = null;
let _isRecording = false;
function initVoice(micBtn) {
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
if (!SpeechRecognition) {
micBtn.title = 'Voice not supported in this browser';
micBtn.style.opacity = '0.3';
micBtn.style.cursor = 'not-allowed';
return;
}
_recognition = new SpeechRecognition();
_recognition.continuous = false;
_recognition.interimResults = true;
_recognition.lang = 'en-US';
const input = document.getElementById('chat-input');
_recognition.onstart = () => {
_isRecording = true;
micBtn.classList.add('recording');
micBtn.title = 'Listening... click to stop';
};
_recognition.onresult = (event) => {
let transcript = '';
let isFinal = false;
for (let i = event.resultIndex; i < event.results.length; i++) {
transcript += event.results[i][0].transcript;
if (event.results[i].isFinal) isFinal = true;
}
// Show interim results in the input box
input.value = transcript;
input.style.height = 'auto';
input.style.height = Math.min(input.scrollHeight, 120) + 'px';
if (isFinal) {
stopVoice(micBtn);
}
};
_recognition.onerror = (event) => {
console.log('Speech recognition error:', event.error);
stopVoice(micBtn);
if (event.error === 'not-allowed') {
micBtn.title = 'Microphone access denied';
}
};
_recognition.onend = () => {
stopVoice(micBtn);
};
micBtn.addEventListener('click', () => {
if (_isRecording) {
_recognition.stop();
stopVoice(micBtn);
} else {
try {
_recognition.start();
} catch (e) {
console.log('Speech recognition start error:', e);
}
}
});
}
function stopVoice(micBtn) {
_isRecording = false;
micBtn.classList.remove('recording');
micBtn.title = 'Voice input';
}
// ββ Status Polling ββ
function pollStatus() {
fetch('/api/status')
.then(r => r.json())
.then(status => {
setConnected();
updateStatus(status);
if (status.state === 'loading') {
setTimeout(pollStatus, 2000);
} else if (status.state === 'ready') {
hideLoadingScreen();
} else if (status.state === 'error') {
// Model failed to load β show error and dismiss loading screen
hideLoadingScreen();
updateStatus({ state: 'error', message: status.message || 'Model failed to load' });
} else if (status.state === 'idle') {
// Model not loaded yet, keep polling
setTimeout(pollStatus, 3000);
}
})
.catch(() => {
setDisconnected();
setTimeout(pollStatus, 5000);
});
}
function setDisconnected() {
if (serverConnected) {
serverConnected = false;
updateStatus({ state: 'error', message: 'Server disconnected' });
}
}
function setConnected() {
if (!serverConnected) {
serverConnected = true;
if (reconnectTimer) {
clearInterval(reconnectTimer);
reconnectTimer = null;
}
}
}
function updateStatus(status) {
const dot = document.getElementById('status-dot');
const text = document.getElementById('status-text');
dot.className = 'status-dot ' + (status.state || 'loading');
text.textContent = status.message || status.state;
// Update loading screen
const loadingStatus = document.getElementById('loading-status');
if (loadingStatus) {
loadingStatus.textContent = status.message || 'Loading...';
}
// Update adapter dots if available
if (status.adapters) {
updateAdapterDots(status.adapters);
}
}
function hideLoadingScreen() {
const screen = document.getElementById('loading-screen');
if (screen) {
screen.classList.add('hidden');
setTimeout(() => screen.remove(), 500);
}
}
// ββ Adapter Dots ββ
function initAdapterDots() {
const container = document.getElementById('adapter-dots');
Object.keys(LABELS).forEach(name => {
const dot = document.createElement('span');
dot.className = 'adapter-dot';
dot.style.backgroundColor = COLORS[name];
dot.title = name;
dot.id = `dot-${name}`;
container.appendChild(dot);
});
}
function updateAdapterDots(available) {
Object.keys(LABELS).forEach(name => {
const dot = document.getElementById(`dot-${name}`);
if (dot) {
dot.classList.toggle('available', available.includes(name));
}
});
}
function setActiveAdapter(name) {
// Remove previous active
document.querySelectorAll('.adapter-dot').forEach(d => d.classList.remove('active'));
// Set new active
const dot = document.getElementById(`dot-${name}`);
if (dot) dot.classList.add('active');
// Update CSS accent color
const color = COLORS[name] || COLORS._base;
document.documentElement.style.setProperty('--accent', color);
document.documentElement.style.setProperty('--accent-glow', color + '25');
}
// ββ Coverage Dots ββ
function initCoverageDots() {
const container = document.getElementById('coverage-dots');
Object.entries(LABELS).forEach(([name, label]) => {
const dot = document.createElement('span');
dot.className = 'coverage-dot';
dot.style.color = COLORS[name];
dot.textContent = label;
dot.title = name;
dot.id = `cov-${name}`;
container.appendChild(dot);
});
}
function updateCoverage(usage) {
Object.keys(LABELS).forEach(name => {
const dot = document.getElementById(`cov-${name}`);
if (dot) {
dot.classList.toggle('active', (usage[name] || 0) > 0);
}
});
}
// ββ Chat ββ
function sendMessage() {
const input = document.getElementById('chat-input');
const query = input.value.trim();
if (!query || isLoading) return;
// Hide welcome
const welcome = document.getElementById('welcome');
if (welcome) welcome.style.display = 'none';
// Add user message
addMessage('user', query);
// Clear input
input.value = '';
input.style.height = 'auto';
// Get settings
const adapter = document.getElementById('adapter-select').value;
const maxAdapters = parseInt(document.getElementById('max-adapters').value);
// Show thinking
const thinkingEl = showThinking(adapter);
isLoading = true;
document.getElementById('send-btn').disabled = true;
// Send request with timeout (20 min for multi-perspective CPU inference)
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 1200000);
fetch('/api/chat', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
query: query,
adapter: adapter === 'auto' ? null : adapter,
max_adapters: maxAdapters,
}),
signal: controller.signal,
})
.then(r => r.json())
.then(data => {
clearTimeout(timeoutId);
thinkingEl.remove();
if (data.error) {
addMessage('error', data.error);
return;
}
// Add assistant message
const adapterUsed = data.adapter || '_base';
setActiveAdapter(adapterUsed);
addMessage('assistant', data.response, {
adapter: adapterUsed,
confidence: data.confidence,
reasoning: data.reasoning,
tokens: data.tokens,
time: data.time,
perspectives: data.perspectives,
multi_perspective: data.multi_perspective,
tools_used: data.tools_used,
});
// Speak response if TTS is enabled
const ttsOn = document.getElementById('tts-toggle');
if (ttsOn && ttsOn.checked && window.speechSynthesis) {
const utter = new SpeechSynthesisUtterance(data.response);
utter.rate = 1.0;
utter.pitch = 1.0;
window.speechSynthesis.speak(utter);
}
// Update cocoon state
if (data.cocoon) {
updateCocoonUI(data.cocoon);
}
// Update epistemic metrics
if (data.epistemic) {
updateEpistemicUI(data.epistemic);
}
})
.catch(err => {
clearTimeout(timeoutId);
thinkingEl.remove();
if (err.name === 'AbortError') {
addMessage('error', 'Request timed out. The model may be processing a complex query β try again or reduce perspectives.');
} else if (err.message === 'Failed to fetch' || err.name === 'TypeError') {
setDisconnected();
addMessage('error', 'Server disconnected. Attempting to reconnect...');
startReconnectPolling();
} else {
addMessage('error', `Request failed: ${err.message}`);
}
})
.finally(() => {
isLoading = false;
document.getElementById('send-btn').disabled = false;
document.getElementById('chat-input').focus();
});
}
function askQuestion(query) {
document.getElementById('chat-input').value = query;
sendMessage();
}
function addMessage(role, content, meta = {}) {
const area = document.getElementById('chat-area');
const msg = document.createElement('div');
msg.className = `message message-${role}`;
if (role === 'user') {
msg.innerHTML = `<div class="bubble"><div class="message-text">${escapeHtml(content)}</div></div>`;
} else if (role === 'assistant') {
const adapter = meta.adapter || '_base';
const color = COLORS[adapter] || COLORS._base;
const conf = meta.confidence || 0;
const tps = meta.tokens && meta.time ? (meta.tokens / meta.time).toFixed(1) : '?';
let html = `<div class="bubble" style="border-left-color:${color}">`;
html += `<div class="message-header">`;
html += `<span class="adapter-badge" style="color:${color}">${adapter}</span>`;
html += `<div class="confidence-bar"><div class="confidence-fill" style="width:${conf*100}%;background:${color}"></div></div>`;
html += `<span>${(conf*100).toFixed(0)}%</span>`;
html += `</div>`;
html += `<div class="message-text">${renderMarkdown(content)}</div>`;
html += `<div class="message-meta">${meta.tokens || '?'} tokens | ${tps} tok/s | ${(meta.time||0).toFixed(1)}s</div>`;
// Tool usage indicator
if (meta.tools_used && meta.tools_used.length > 0) {
const toolNames = meta.tools_used.map(t => t.tool).join(', ');
html += `<div class="tools-badge">π§ Tools: ${toolNames}</div>`;
}
// Multi-perspective expandable
if (meta.perspectives && Object.keys(meta.perspectives).length > 1) {
const perspId = 'persp-' + Date.now();
html += `<button class="perspectives-toggle" onclick="togglePerspectives('${perspId}')">`;
html += `Show ${Object.keys(meta.perspectives).length} perspectives</button>`;
html += `<div class="perspectives-panel" id="${perspId}">`;
for (const [name, text] of Object.entries(meta.perspectives)) {
const pc = COLORS[name] || COLORS._base;
html += `<div class="perspective-card" style="border-left-color:${pc}">`;
html += `<div class="perspective-card-header" style="color:${pc}">${name}</div>`;
html += `<div>${renderMarkdown(text)}</div></div>`;
}
html += `</div>`;
}
html += `</div>`;
msg.innerHTML = html;
} else if (role === 'error') {
msg.innerHTML = `<div class="bubble" style="border-left-color:var(--quantum)">
<div class="message-text" style="color:var(--quantum)">${escapeHtml(content)}</div></div>`;
}
area.appendChild(msg);
area.scrollTop = area.scrollHeight;
}
function showThinking(adapter) {
const area = document.getElementById('chat-area');
const el = document.createElement('div');
el.className = 'thinking';
el.innerHTML = `
<div class="thinking-dots"><span></span><span></span><span></span></div>
<span>Codette is thinking${adapter && adapter !== 'auto' ? ` (${adapter})` : ''}...</span>
`;
area.appendChild(el);
area.scrollTop = area.scrollHeight;
return el;
}
function togglePerspectives(id) {
document.getElementById(id).classList.toggle('open');
}
// ββ Cocoon UI Updates ββ
function updateCocoonUI(state) {
// Metrics
const metrics = state.metrics || {};
const coherence = metrics.current_coherence || 0;
const tension = metrics.current_tension || 0;
document.getElementById('metric-coherence').textContent = coherence.toFixed(4);
document.getElementById('bar-coherence').style.width = (coherence * 100) + '%';
document.getElementById('metric-tension').textContent = tension.toFixed(4);
document.getElementById('bar-tension').style.width = Math.min(tension * 100, 100) + '%';
document.getElementById('cocoon-attractors').textContent = metrics.attractor_count || 0;
document.getElementById('cocoon-glyphs').textContent = metrics.glyph_count || 0;
// Cocoon status
const cocoon = state.cocoon || {};
document.getElementById('cocoon-encryption').textContent =
cocoon.has_sync ? 'Active' : 'Available';
// AEGIS eta feeds the main eta metric when available
if (state.aegis && state.aegis.eta !== undefined) {
document.getElementById('metric-eta').textContent = state.aegis.eta.toFixed(4);
}
// Coverage
updateCoverage(state.perspective_usage || {});
// Spiderweb
if (spiderwebViz && state.spiderweb) {
spiderwebViz.update(state.spiderweb);
}
// New subsystem panels (AEGIS, Nexus, Memory, Resonance, Guardian)
updateSubsystemUI(state);
}
function updateEpistemicUI(epistemic) {
if (epistemic.ensemble_coherence !== undefined) {
const val = epistemic.ensemble_coherence;
document.getElementById('metric-coherence').textContent = val.toFixed(4);
document.getElementById('bar-coherence').style.width = (val * 100) + '%';
}
if (epistemic.tension_magnitude !== undefined) {
const val = epistemic.tension_magnitude;
document.getElementById('metric-tension').textContent = val.toFixed(4);
document.getElementById('bar-tension').style.width = Math.min(val * 100, 100) + '%';
}
// Update ethical alignment if available
if (epistemic.ethical_alignment !== undefined) {
document.getElementById('metric-eta').textContent =
epistemic.ethical_alignment.toFixed(3);
} else if (epistemic.mean_coherence !== undefined) {
// Fall back: derive eta from mean coherence as a proxy
document.getElementById('metric-eta').textContent =
epistemic.mean_coherence.toFixed(3);
}
}
// ββ Session Management ββ
function newChat() {
fetch('/api/session/new', { method: 'POST' })
.then(r => r.json())
.then(() => {
// Clear chat
const area = document.getElementById('chat-area');
area.innerHTML = '';
// Show welcome with starter cards
const welcome = document.createElement('div');
welcome.className = 'welcome';
welcome.id = 'welcome';
welcome.innerHTML = `
<h2>What would you like to explore?</h2>
<p>Codette routes your question to the best reasoning perspective automatically.</p>
<div class="welcome-grid">
<div class="welcome-card" onclick="askQuestion('Explain why objects fall to the ground')">
<div class="welcome-card-title" style="color:var(--newton)">Newton</div>
<div class="welcome-card-desc">Explain why objects fall to the ground</div>
</div>
<div class="welcome-card" onclick="askQuestion('Design a creative solution for sustainable cities')">
<div class="welcome-card-title" style="color:var(--davinci)">DaVinci</div>
<div class="welcome-card-desc">Design a creative solution for sustainable cities</div>
</div>
<div class="welcome-card" onclick="askQuestion('How do I cope with feeling overwhelmed?')">
<div class="welcome-card-title" style="color:var(--empathy)">Empathy</div>
<div class="welcome-card-desc">How do I cope with feeling overwhelmed?</div>
</div>
<div class="welcome-card" onclick="askQuestion('What is consciousness and can AI have it?')">
<div class="welcome-card-title" style="color:var(--consciousness)">Consciousness</div>
<div class="welcome-card-desc">What is consciousness and can AI have it?</div>
</div>
</div>
`;
area.appendChild(welcome);
// Reset metrics
document.getElementById('metric-coherence').textContent = '0.00';
document.getElementById('metric-tension').textContent = '0.00';
document.getElementById('metric-eta').textContent = '--';
document.getElementById('bar-coherence').style.width = '0%';
document.getElementById('bar-tension').style.width = '0%';
document.getElementById('cocoon-attractors').textContent = '0';
document.getElementById('cocoon-glyphs').textContent = '0';
// Reset subsystem panels
['section-aegis','section-nexus','section-resonance','section-memory','section-guardian'].forEach(id => {
const el = document.getElementById(id);
if (el) el.style.display = 'none';
});
// Reset spiderweb
if (spiderwebViz) {
spiderwebViz._initDefaultState();
spiderwebViz.coherence = 0;
spiderwebViz.attractors = [];
}
loadSessions();
});
}
function loadSessions() {
fetch('/api/sessions')
.then(r => r.json())
.then(data => {
const list = document.getElementById('session-list');
const sessions = data.sessions || [];
document.getElementById('cocoon-sessions').textContent = sessions.length;
list.innerHTML = sessions.map(s => `
<div class="session-item" onclick="loadSession('${s.session_id}')"
title="${s.title}">
${s.title || 'Untitled'}
</div>
`).join('');
})
.catch(() => {});
}
function loadSession(sessionId) {
fetch('/api/session/load', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ session_id: sessionId }),
})
.then(r => r.json())
.then(data => {
if (data.error) return;
// Clear and rebuild chat
const area = document.getElementById('chat-area');
area.innerHTML = '';
(data.messages || []).forEach(msg => {
addMessage(msg.role, msg.content, msg.metadata || {});
});
if (data.state) {
updateCocoonUI(data.state);
}
})
.catch(err => {
console.log('Failed to load session:', err);
});
}
// ββ Session Export/Import ββ
function exportSession() {
fetch('/api/session/export', { method: 'POST' })
.then(r => {
if (!r.ok) throw new Error('Export failed');
const disposition = r.headers.get('Content-Disposition') || '';
const match = disposition.match(/filename="(.+)"/);
const filename = match ? match[1] : 'codette_session.json';
return r.blob().then(blob => ({ blob, filename }));
})
.then(({ blob, filename }) => {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
a.click();
URL.revokeObjectURL(url);
})
.catch(err => {
console.log('Export failed:', err);
});
}
function importSession(event) {
const file = event.target.files[0];
if (!file) return;
const reader = new FileReader();
reader.onload = (e) => {
try {
const data = JSON.parse(e.target.result);
fetch('/api/session/import', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
})
.then(r => r.json())
.then(result => {
if (result.error) {
addMessage('error', `Import failed: ${result.error}`);
return;
}
// Rebuild chat from imported session
const area = document.getElementById('chat-area');
area.innerHTML = '';
(result.messages || []).forEach(msg => {
addMessage(msg.role, msg.content, msg.metadata || {});
});
if (result.state) {
updateCocoonUI(result.state);
}
loadSessions();
})
.catch(err => {
addMessage('error', `Import failed: ${err.message}`);
});
} catch (parseErr) {
addMessage('error', 'Invalid JSON file');
}
};
reader.readAsText(file);
// Reset file input so same file can be imported again
event.target.value = '';
}
// ββ Reconnection ββ
function startReconnectPolling() {
if (reconnectTimer) return; // Already polling
reconnectTimer = setInterval(() => {
fetch('/api/status')
.then(r => r.json())
.then(status => {
setConnected();
updateStatus(status);
addMessage('error', 'Server reconnected!');
})
.catch(() => {
// Still disconnected, keep polling
});
}, 5000);
}
// ββ Subsystem UI Updates ββ
function updateSubsystemUI(state) {
updateAegisUI(state.aegis);
updateNexusUI(state.nexus);
updateResonanceUI(state.resonance);
updateMemoryUI(state.memory);
updateGuardianUI(state.guardian);
}
function updateAegisUI(aegis) {
const section = document.getElementById('section-aegis');
if (!aegis) { section.style.display = 'none'; return; }
section.style.display = '';
const eta = aegis.eta || 0;
document.getElementById('aegis-eta').textContent = eta.toFixed(4);
document.getElementById('bar-aegis-eta').style.width = (eta * 100) + '%';
document.getElementById('aegis-evals').textContent = aegis.total_evaluations || 0;
document.getElementById('aegis-vetoes').textContent = aegis.veto_count || 0;
const trendEl = document.getElementById('aegis-trend');
const trend = aegis.alignment_trend || '--';
trendEl.textContent = trend;
trendEl.className = 'metric-value';
if (trend === 'improving') trendEl.classList.add('trend-improving');
else if (trend === 'declining') trendEl.classList.add('trend-declining');
else if (trend === 'stable') trendEl.classList.add('trend-stable');
}
function updateNexusUI(nexus) {
const section = document.getElementById('section-nexus');
if (!nexus) { section.style.display = 'none'; return; }
section.style.display = '';
document.getElementById('nexus-processed').textContent = nexus.total_processed || 0;
document.getElementById('nexus-interventions').textContent = nexus.interventions || 0;
const rate = (nexus.intervention_rate || 0) * 100;
document.getElementById('nexus-rate').textContent = rate.toFixed(1) + '%';
// Risk dots for recent signals
const risksEl = document.getElementById('nexus-risks');
const risks = nexus.recent_risks || [];
risksEl.innerHTML = risks.map(r =>
`<span class="risk-dot ${r}" title="${r} risk"></span>`
).join('');
}
function updateResonanceUI(resonance) {
const section = document.getElementById('section-resonance');
if (!resonance) { section.style.display = 'none'; return; }
section.style.display = '';
const psi = resonance.psi_r || 0;
document.getElementById('resonance-psi').textContent = psi.toFixed(4);
// Normalize psi_r to 0-100% bar (clamp between -2 and 2)
const psiNorm = Math.min(100, Math.max(0, (psi + 2) / 4 * 100));
document.getElementById('bar-resonance-psi').style.width = psiNorm + '%';
document.getElementById('resonance-quality').textContent =
(resonance.resonance_quality || 0).toFixed(4);
document.getElementById('resonance-convergence').textContent =
(resonance.convergence_rate || 0).toFixed(4);
document.getElementById('resonance-stability').textContent =
resonance.stability || '--';
const peakEl = document.getElementById('resonance-peak');
const atPeak = resonance.at_peak || false;
peakEl.textContent = atPeak ? 'ACTIVE' : 'dormant';
peakEl.className = 'metric-value' + (atPeak ? ' peak-active' : '');
}
function updateMemoryUI(memory) {
const section = document.getElementById('section-memory');
if (!memory) { section.style.display = 'none'; return; }
section.style.display = '';
document.getElementById('memory-count').textContent = memory.total_memories || 0;
// Emotional profile tags
const emotionsEl = document.getElementById('memory-emotions');
const profile = memory.emotional_profile || {};
const sorted = Object.entries(profile).sort((a, b) => b[1] - a[1]);
emotionsEl.innerHTML = sorted.slice(0, 8).map(([emotion, count]) =>
`<span class="emotion-tag${count > 0 ? ' active' : ''}" title="${count} memories">${emotion} ${count}</span>`
).join('');
}
function updateGuardianUI(guardian) {
const section = document.getElementById('section-guardian');
if (!guardian) { section.style.display = 'none'; return; }
section.style.display = '';
const ethics = guardian.ethics || {};
document.getElementById('guardian-ethics').textContent =
(ethics.ethical_score !== undefined) ? ethics.ethical_score.toFixed(4) : '--';
const trust = guardian.trust || {};
document.getElementById('guardian-trust').textContent =
trust.total_interactions || 0;
}
// ββ Utilities ββ
function escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
function renderMarkdown(text) {
// Lightweight markdown renderer β no dependencies
let html = escapeHtml(text);
// Code blocks: ```lang\n...\n```
html = html.replace(/```(\w*)\n([\s\S]*?)```/g,
'<pre class="code-block"><code>$2</code></pre>');
// Inline code: `code`
html = html.replace(/`([^`\n]+)`/g, '<code class="inline-code">$1</code>');
// Bold: **text** or __text__
html = html.replace(/\*\*([^*\n]+?)\*\*/g, '<strong>$1</strong>');
html = html.replace(/__([^_\n]+?)__/g, '<strong>$1</strong>');
// Headers: ### text (on its own line) β before bullets to avoid conflict
html = html.replace(/^### (.+)$/gm, '<div class="md-h3">$1</div>');
html = html.replace(/^## (.+)$/gm, '<div class="md-h2">$1</div>');
html = html.replace(/^# (.+)$/gm, '<div class="md-h1">$1</div>');
// Bullet lists: - item or * item β before italic to prevent * conflicts
html = html.replace(/^[\-\*] (.+)$/gm, '<div class="md-li">$1</div>');
// Numbered lists: 1. item
html = html.replace(/^\d+\. (.+)$/gm, '<div class="md-li md-oli">$1</div>');
// Italic: *text* or _text_ β AFTER bullets, restricted to single line
html = html.replace(/(?<!\w)\*([^*\n]+?)\*(?!\w)/g, '<em>$1</em>');
html = html.replace(/(?<!\w)_([^_\n]+?)_(?!\w)/g, '<em>$1</em>');
// Line breaks (preserve double newlines as paragraph breaks)
html = html.replace(/\n\n/g, '<br><br>');
html = html.replace(/\n/g, '<br>');
return html;
}
|