Spaces:
Running
Running
File size: 51,650 Bytes
521f25e | 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 | /* ================================================================
R.A.D.H.A Frontend β Main Application Logic
================================================================
ARCHITECTURE OVERVIEW
---------------------
This file powers the entire frontend of the R.A.D.H.A AI assistant.
It handles:
1. CHAT MESSAGING β The user types (or speaks) a message, which is
sent to the backend via a POST request. The backend responds using
Server-Sent Events (SSE), allowing the reply to stream in
token-by-token (like ChatGPT's typing effect).
2. TEXT-TO-SPEECH (TTS) β When TTS is enabled, the backend also
sends base64-encoded audio chunks inside the SSE stream. These
are queued up and played sequentially through a single <audio>
element. This queue-based approach prevents overlapping audio
and supports mobile browsers (especially iOS/Safari).
3. SPEECH RECOGNITION β The Web Speech API captures the user's
voice, transcribes it in real time, and auto-sends the final
transcript as a chat message.
4. ANIMATED ORB β A WebGL-powered visual orb (rendered by a
separate OrbRenderer class) acts as a visual indicator. It
"activates" when J.A.R.V.I.S is speaking and goes idle otherwise.
5. MODE SWITCHING β The UI supports two modes:
- "General" mode β uses the /chat/stream endpoint
- "Realtime" mode β uses the /chat/realtime/stream endpoint
The mode determines which backend pipeline processes the message.
6. SESSION MANAGEMENT β A session ID is returned by the server on
the first message. Subsequent messages include that ID so the
backend can maintain conversation context. Starting a "New Chat"
clears the session.
DATA FLOW (simplified):
User input β sendMessage() β POST to backend β SSE stream opens β
tokens arrive as JSON chunks β rendered into the DOM in real time β
optional audio chunks are enqueued in TTSPlayer β played sequentially.
================================================================ */
/*
* API β The base URL for all backend requests.
*
* In production, this resolves to the same origin the page was loaded from
* (e.g., "https://radha.example.com"). During local development, it falls
* back to "http://localhost:8000" (the default FastAPI dev server port).
*
* `window.location.origin` gives us the protocol + host + port of the
* current page, making the frontend deployment-agnostic (no hardcoded URLs).
*/
const API = (typeof window !== 'undefined' && window.location.origin)
? window.location.origin
: 'http://localhost:8000';
/* ================================================================
APPLICATION STATE
================================================================
These variables track the global state of the application. They are
intentionally kept as simple top-level variables rather than in a
class or store, since this is a single-page app with one chat view.
================================================================ */
/*
* sessionId β Unique conversation identifier returned by the server.
* Starts as null (no conversation yet). Once the first server response
* arrives, it contains a UUID string that we send back with every
* subsequent message so the backend knows which conversation we're in.
*/
let sessionId = null;
/*
* currentMode β Which AI pipeline to use: 'general' or 'realtime'.
* This determines which backend endpoint we POST to (/chat/stream
* vs /chat/realtime/stream). The mode can be toggled via the UI buttons.
*/
let currentMode = 'general';
/*
* isStreaming β Guard flag that is true while an SSE response is being
* received. Prevents the user from sending another message while the
* assistant is still replying (avoids race conditions and garbled output).
*/
let isStreaming = false;
/*
* isListening β True while the speech recognition engine is actively
* capturing audio from the microphone. Used to toggle the mic button
* styling and to decide whether to start or stop listening on click.
*/
let isListening = false;
/*
* orb β Reference to the OrbRenderer instance (the animated WebGL orb).
* Null if OrbRenderer is unavailable or failed to initialize.
* We call orb.setActive(true/false) to animate it during TTS playback.
*/
let orb = null;
/*
* recognition β The SpeechRecognition instance from the Web Speech API.
* Null if the browser doesn't support speech recognition.
*/
let recognition = null;
/*
* ttsPlayer β Instance of the TTSPlayer class (defined below) that
* manages queuing and playing audio segments received from the server.
*/
let ttsPlayer = null;
/* ================================================================
DOM REFERENCES
================================================================
We grab references to frequently-used DOM elements once at startup
rather than querying for them every time we need them. This is both
a performance optimization and a readability convenience.
================================================================ */
/*
* $ β Shorthand helper for document.getElementById. Writing $('foo')
* is more concise than document.getElementById('foo').
*/
const $ = id => document.getElementById(id);
const chatMessages = $('chat-messages'); // The scrollable container that holds all chat messages
const messageInput = $('message-input'); // The <textarea> where the user types their message
const sendBtn = $('send-btn'); // The send button (arrow icon)
const micBtn = $('mic-btn'); // The microphone button for speech-to-text
const ttsBtn = $('tts-btn'); // The speaker button to toggle text-to-speech
const newChatBtn = $('new-chat-btn'); // The "New Chat" button that resets the conversation
const modeLabel = $('mode-label'); // Displays the current mode name ("General Mode" / "Realtime Mode")
const charCount = $('char-count'); // Shows character count when the message gets long
const welcomeTitle = $('welcome-title'); // The greeting text on the welcome screen ("Good morning.", etc.)
const modeSlider = $('mode-slider'); // The sliding pill indicator behind the mode toggle buttons
const btnGeneral = $('btn-general'); // The "General" mode button
const btnRealtime = $('btn-realtime'); // The "Realtime" mode button
const statusDot = document.querySelector('.status-dot'); // Green/red dot showing backend status
const statusText = document.querySelector('.status-text'); // Text next to the dot ("Online" / "Offline")
const orbContainer = $('orb-container'); // The container <div> that holds the WebGL orb canvas
const searchResultsToggle = $('search-results-toggle'); // Header button to open search results panel
const searchResultsWidget = $('search-results-widget'); // Right-side panel for Tavily search data
const searchResultsClose = $('search-results-close'); // Close button inside the panel
const searchResultsQuery = $('search-results-query'); // Displays the search query
const searchResultsAnswer = $('search-results-answer'); // Displays the AI answer from search
const searchResultsList = $('search-results-list'); // Container for source result cards
/* ================================================================
TTS AUDIO PLAYER (Text-to-Speech Queue System)
================================================================
HOW THE TTS QUEUE WORKS β EXPLAINED FOR LEARNERS
-------------------------------------------------
When TTS is enabled, the backend doesn't send one giant audio file.
Instead, it sends many small base64-encoded MP3 *chunks* as part of
the SSE stream (one chunk per sentence or phrase). This approach has
two advantages:
1. Audio starts playing before the full response is generated
(lower latency β the user hears the first sentence immediately).
2. Each chunk is small, so there's no long download wait.
The TTSPlayer works like a conveyor belt:
- enqueue() adds a new audio chunk to the end of the queue.
- _playLoop() picks up chunks one by one and plays them.
- When a chunk finishes playing (audio.onended), the loop moves
to the next chunk.
- When the queue is empty and no more chunks are arriving, playback
stops and the orb goes back to idle.
WHY A SINGLE <audio> ELEMENT?
iOS Safari has strict autoplay policies β it only allows audio
playback from a user-initiated event. By reusing one <audio> element
that was "unlocked" during a user gesture, all subsequent plays
through that same element are allowed. Creating new Audio() objects
each time would trigger autoplay blocks on iOS.
================================================================ */
class TTSPlayer {
/**
* Creates a new TTSPlayer instance.
*
* Properties:
* queue β Array of base64 audio strings waiting to be played.
* playing β True if the play loop is currently running.
* enabled β True if the user has toggled TTS on (via the speaker button).
* stopped β True if playback was forcibly stopped (e.g., new chat).
* This prevents queued audio from playing after a stop.
* audio β A single persistent <audio> element reused for all playback.
*/
constructor() {
this.queue = [];
this.playing = false;
this.enabled = true; // TTS on by default
this.stopped = false;
this.audio = document.createElement('audio');
this.audio.preload = 'auto';
}
/**
* unlock() β "Warms up" the audio element so browsers (especially iOS
* Safari) allow subsequent programmatic playback.
*
* This should be called during a user gesture (e.g., clicking "Send").
*
* It does two things:
* 1. Plays a tiny silent WAV file on the <audio> element, which
* tells the browser "the user initiated audio playback."
* 2. Creates a brief AudioContext oscillator at zero volume β this
* unlocks the Web Audio API context on iOS (a separate lock from
* the <audio> element).
*
* After this, the browser treats subsequent .play() calls on the same
* <audio> element as user-initiated, even if they happen in an async
* callback (like our SSE stream handler).
*/
unlock() {
// A minimal valid WAV file (44-byte header + 2 bytes of silence)
const silentWav = 'data:audio/wav;base64,UklGRigAAABXQVZFZm10IBIAAAABAAEARKwAAIhYAQACABAAAABkYXRhAgAAAAEA';
this.audio.src = silentWav;
const p = this.audio.play();
if (p) p.catch(() => { });
try {
// Create a Web Audio context and play a zero-volume oscillator for <1ms
const ctx = new (window.AudioContext || window.webkitAudioContext)();
const g = ctx.createGain();
g.gain.value = 0;
const o = ctx.createOscillator();
o.connect(g);
g.connect(ctx.destination);
o.start(0);
o.stop(ctx.currentTime + 0.001);
setTimeout(() => ctx.close(), 200);
} catch (_) { }
}
/**
* enqueue(base64Audio) β Adds a base64-encoded MP3 chunk to the
* playback queue.
*
* @param {string} base64Audio - The base64 string of the MP3 audio data.
*
* If TTS is disabled or playback has been force-stopped, the chunk
* is silently discarded. Otherwise it's pushed onto the queue.
* If the play loop isn't already running, we kick it off.
*/
enqueue(base64Audio) {
if (!this.enabled || this.stopped) return;
this.queue.push(base64Audio);
if (!this.playing) this._playLoop();
}
/**
* stop() β Immediately halts all audio playback and clears the queue.
*
* Called when:
* - The user starts a "New Chat"
* - The user toggles TTS off while audio is playing
* - We need to reset before a new streaming response
*
* It also removes visual indicators (CSS classes on the TTS button,
* the orb container, and deactivates the orb animation).
*/
stop() {
this.stopped = true;
this.audio.pause();
this.audio.removeAttribute('src');
this.audio.load(); // Fully resets the audio element
this.queue = []; // Discard any pending audio chunks
this.playing = false;
if (ttsBtn) ttsBtn.classList.remove('tts-speaking');
if (orbContainer) orbContainer.classList.remove('speaking');
if (orb) orb.setActive(false);
}
/**
* reset() β Stops playback AND clears the "stopped" flag so new
* audio can be enqueued again.
*
* Called at the beginning of each new message send. Without clearing
* `this.stopped`, enqueue() would keep discarding audio from the
* previous stop() call.
*/
reset() {
this.stop();
this.stopped = false;
}
/**
* _playLoop() β The internal playback engine. Processes the queue
* one chunk at a time in a while-loop.
*
* WHY THE LOOP ID (_loopId)?
* If stop() is called and then a new stream starts, there could be
* two concurrent _playLoop() calls β the old one (still awaiting a
* Promise) and the new one. The loop ID lets us detect when a loop
* has been superseded: each invocation gets a unique ID, and if the
* ID changes mid-loop (because a new loop started), the old loop
* exits gracefully. This prevents double-playback or stale loops.
*
* VISUAL INDICATORS:
* While playing, we add CSS classes 'tts-speaking' (to the button)
* and 'speaking' (to the orb container) for visual feedback. These
* are removed when the queue is drained or playback is stopped.
*/
async _playLoop() {
if (this.playing) return;
this.playing = true;
this._loopId = (this._loopId || 0) + 1;
const myId = this._loopId;
// Activate visual indicators: button glow + orb animation
if (ttsBtn) ttsBtn.classList.add('tts-speaking');
if (orbContainer) orbContainer.classList.add('speaking');
if (orb) orb.setActive(true);
// Process queued audio chunks one at a time
while (this.queue.length > 0) {
if (this.stopped || myId !== this._loopId) break; // Exit if stopped or superseded
const b64 = this.queue.shift(); // Take the next chunk from the front
try {
await this._playB64(b64); // Wait for it to finish playing
} catch (e) {
console.warn('TTS segment error:', e);
}
}
// If another loop took over, don't touch the shared state
if (myId !== this._loopId) return;
this.playing = false;
// Deactivate visual indicators
if (ttsBtn) ttsBtn.classList.remove('tts-speaking');
if (orbContainer) orbContainer.classList.remove('speaking');
if (orb) orb.setActive(false);
}
/**
* _playB64(b64) β Plays a single base64-encoded MP3 chunk.
*
* @param {string} b64 - Base64-encoded MP3 audio data.
* @returns {Promise<void>} Resolves when the audio finishes playing
* (or errors out).
*
* Sets the <audio> element's src to a data URL and calls .play().
* Returns a Promise that resolves on 'ended' or 'error', so the
* _playLoop() can await it and move to the next chunk.
*/
_playB64(b64) {
return new Promise(resolve => {
this.audio.src = 'data:audio/mp3;base64,' + b64;
const done = () => { resolve(); };
this.audio.onended = done; // Normal completion
this.audio.onerror = done; // Error β resolve anyway so the loop continues
const p = this.audio.play();
if (p) p.catch(done); // Handle play() rejection (e.g., autoplay block)
});
}
}
/* ================================================================
INITIALIZATION
================================================================
init() is the entry point for the entire application. It is called
once when the DOM is fully loaded (see the DOMContentLoaded listener
at the bottom of this file).
It sets up every subsystem in the correct order:
1. TTSPlayer β so audio is ready before any messages
2. Greeting β display a time-appropriate welcome message
3. Orb β initialize the WebGL visual
4. Speech β set up the microphone / speech recognition
5. Health β ping the backend to check if it's online
6. Events β wire up all button clicks and keyboard shortcuts
7. Input β auto-resize the textarea to fit content
================================================================ */
function init() {
ttsPlayer = new TTSPlayer();
if (ttsBtn) ttsBtn.classList.add('tts-active'); // Show TTS as on by default
setGreeting();
initOrb();
initSpeech();
checkHealth();
bindEvents();
autoResizeInput();
}
/* ================================================================
GREETING
================================================================ */
/**
* setGreeting() β Sets the welcome screen title based on the current
* time of day.
*
* Time ranges:
* 00:00β11:59 β "Good morning."
* 12:00β16:59 β "Good afternoon."
* 17:00β21:59 β "Good evening."
* 22:00β23:59 β "Burning the midnight oil?" (a fun late-night touch)
*
* This is called on page load and when starting a new chat.
*/
function setGreeting() {
const h = new Date().getHours();
let g = 'Good evening.';
if (h < 12) g = 'Good morning.';
else if (h < 17) g = 'Good afternoon.';
else if (h >= 22) g = 'Burning the midnight oil?';
welcomeTitle.textContent = g;
}
/* ================================================================
WEBGL ORB INITIALIZATION
================================================================ */
/**
* initOrb() β Creates the animated WebGL orb inside the orbContainer.
*
* OrbRenderer is defined in a separate JS file (orb.js). If that file
* hasn't loaded (e.g., network error), OrbRenderer will be undefined
* and we skip initialization gracefully.
*
* Configuration:
* hue: 0 β The base hue of the orb color
* hoverIntensity: 0.3 β How much the orb reacts to mouse hover
* backgroundColor: [0.02,0.02,0.06] β Near-black dark blue background (RGB, 0β1 range)
*
* The orb's "active" state (pulsing animation) is toggled via
* orb.setActive(true/false), which we call when TTS starts/stops.
*/
function initOrb() {
if (typeof OrbRenderer === 'undefined') return;
try {
orb = new OrbRenderer(orbContainer, {
hue: 0,
hoverIntensity: 0.3,
backgroundColor: [0.02, 0.02, 0.06]
});
} catch (e) { console.warn('Orb init failed:', e); }
}
/* ================================================================
SPEECH RECOGNITION (Speech-to-Text)
================================================================
HOW SPEECH RECOGNITION WORKS β EXPLAINED FOR LEARNERS
------------------------------------------------------
The Web Speech API (SpeechRecognition) is a browser-native feature
that converts spoken audio from the microphone into text. Here's
the lifecycle:
1. User clicks the mic button β startListening() is called.
2. recognition.start() begins capturing audio from the mic.
3. As the user speaks, the browser fires 'result' events with
partial (interim) transcripts. We display these in the input
field in real time so the user sees what's being recognized.
4. When the user pauses, the browser finalizes the transcript
(result.isFinal becomes true).
5. On finalization, we stop listening and automatically send the
recognized text as a chat message.
IMPORTANT PROPERTIES:
- continuous: false β Stops after one utterance (sentence). If true,
it would keep listening for multiple sentences.
- interimResults: true β We get partial results as the user speaks
(not just the final result). This gives real-time feedback.
- lang: 'en-US' β Optimize recognition for American English.
BROWSER SUPPORT: Chrome has the best support. Firefox and Safari
have limited or no support for this API. We gracefully degrade by
checking if the API exists before using it.
================================================================ */
/**
* initSpeech() β Sets up the SpeechRecognition instance and its
* event handlers.
*
* If the browser doesn't support the API, we update the mic button's
* tooltip to inform the user and return early.
*/
function initSpeech() {
// SpeechRecognition is prefixed in some browsers (webkit for Chrome/Safari)
const SR = window.SpeechRecognition || window.webkitSpeechRecognition;
if (!SR) { micBtn.title = 'Speech not supported in this browser'; return; }
recognition = new SR();
recognition.continuous = false; // Stop after one complete utterance
recognition.interimResults = true; // Emit partial results for real-time feedback
recognition.lang = 'en-US'; // Recognition language
// Fired every time the recognizer has a new or updated result
recognition.onresult = e => {
const result = e.results[e.results.length - 1]; // Get the latest result
const text = result[0].transcript; // The recognized text string
messageInput.value = text; // Show it in the input field
autoResizeInput(); // Resize textarea to fit
if (result.isFinal) {
// The browser has finalized this utterance β send it
stopListening();
if (text.trim()) sendMessage(text.trim());
}
};
recognition.onerror = () => stopListening(); // Stop on any recognition error
recognition.onend = () => { if (isListening) stopListening(); }; // Clean up if recognition ends unexpectedly
}
/**
* startListening() β Activates the microphone and begins speech recognition.
*
* Guards:
* - Does nothing if recognition isn't available (unsupported browser).
* - Does nothing if we're currently streaming a response (to avoid
* accidentally sending a voice message mid-stream).
*/
function startListening() {
if (!recognition || isStreaming) return;
isListening = true;
micBtn.classList.add('listening'); // Visual feedback: highlight the mic button
try { recognition.start(); } catch (_) { }
}
/**
* stopListening() β Deactivates the microphone and stops recognition.
*
* Called when:
* - A final transcript is received (auto-send).
* - The user clicks the mic button again (manual toggle off).
* - An error occurs.
* - The recognition engine stops unexpectedly.
*/
function stopListening() {
isListening = false;
micBtn.classList.remove('listening'); // Remove visual highlight
try { recognition.stop(); } catch (_) { }
}
/* ================================================================
BACKEND HEALTH CHECK
================================================================ */
/**
* checkHealth() β Pings the backend's /health endpoint to determine
* if the server is running and healthy.
*
* Updates the status indicator in the UI:
* - Green dot + "Online" if the server responds with { status: "healthy" }
* - Red dot + "Offline" if the request fails or returns unhealthy
*
* Uses AbortSignal.timeout(5000) to avoid waiting forever if the
* server is down β the request will automatically abort after 5 seconds.
*/
async function checkHealth() {
try {
const r = await fetch(`${API}/health`, { signal: AbortSignal.timeout(5000) });
const d = await r.json();
const ok = d.status === 'healthy';
statusDot.classList.toggle('offline', !ok); // Add 'offline' class if NOT healthy
statusText.textContent = ok ? 'Online' : 'Offline';
} catch {
statusDot.classList.add('offline');
statusText.textContent = 'Offline';
}
}
/* ================================================================
EVENT BINDING
================================================================
All user-interaction event listeners are centralized here for
clarity. This function is called once during init().
================================================================ */
/**
* bindEvents() β Wires up all click, keydown, and input event
* listeners for the UI.
*/
function bindEvents() {
// SEND BUTTON β Send the message when clicked (if not already streaming)
sendBtn.addEventListener('click', () => { if (!isStreaming) sendMessage(); });
// ENTER KEY β Send on Enter (but allow Shift+Enter for new lines)
messageInput.addEventListener('keydown', e => {
if (e.key === 'Enter' && !e.shiftKey) { e.preventDefault(); if (!isStreaming) sendMessage(); }
});
// INPUT CHANGE β Auto-resize the textarea and show character count for long messages
messageInput.addEventListener('input', () => {
autoResizeInput();
const len = messageInput.value.length;
// Only show the counter once the message exceeds 100 characters (avoids clutter)
charCount.textContent = len > 100 ? `${len.toLocaleString()} / 32,000` : '';
});
// MIC BUTTON β Toggle speech recognition on/off
micBtn.addEventListener('click', () => { isListening ? stopListening() : startListening(); });
// TTS BUTTON β Toggle text-to-speech on/off
ttsBtn.addEventListener('click', () => {
ttsPlayer.enabled = !ttsPlayer.enabled;
ttsBtn.classList.toggle('tts-active', ttsPlayer.enabled); // Visual indicator
if (!ttsPlayer.enabled) ttsPlayer.stop(); // Stop any playing audio immediately
});
// NEW CHAT BUTTON β Reset the conversation
newChatBtn.addEventListener('click', newChat);
// MODE TOGGLE BUTTONS β Switch between General and Realtime modes
btnGeneral.addEventListener('click', () => setMode('general'));
btnRealtime.addEventListener('click', () => setMode('realtime'));
// QUICK-ACTION CHIPS β Predefined messages on the welcome screen
// Each chip has a data-msg attribute containing the message to send
document.querySelectorAll('.chip').forEach(c => {
c.addEventListener('click', () => { if (!isStreaming) sendMessage(c.dataset.msg); });
});
// SEARCH RESULTS WIDGET β Toggle panel open from header button; close from panel button
if (searchResultsToggle) {
searchResultsToggle.addEventListener('click', () => {
if (searchResultsWidget) searchResultsWidget.classList.add('open');
});
}
if (searchResultsClose && searchResultsWidget) {
searchResultsClose.addEventListener('click', () => searchResultsWidget.classList.remove('open'));
}
}
/**
* autoResizeInput() β Dynamically adjusts the textarea height to fit
* its content, up to a maximum of 120px.
*
* How it works:
* 1. Reset height to 'auto' so scrollHeight reflects actual content height.
* 2. Set height to the smaller of scrollHeight or 120px.
* This creates a textarea that grows as the user types but doesn't
* take over the whole screen for very long messages.
*/
function autoResizeInput() {
messageInput.style.height = 'auto';
messageInput.style.height = Math.min(messageInput.scrollHeight, 120) + 'px';
}
/* ================================================================
MODE SWITCH (General β Realtime)
================================================================
The app supports two AI modes, each hitting a different backend
endpoint:
- "General" β /chat/stream (standard LLM pipeline)
- "Realtime" β /chat/realtime/stream (realtime/low-latency pipeline)
The mode is purely a UI + routing concern β the frontend logic for
streaming and rendering is identical for both modes.
================================================================ */
/**
* setMode(mode) β Switches the active mode and updates the UI.
*
* @param {string} mode - Either 'general' or 'realtime'.
*
* Updates:
* - currentMode variable (used when sending messages)
* - Button active states (highlights the selected button)
* - Slider position (slides the pill indicator left or right)
* - Mode label text (displayed in the header area)
*/
function setMode(mode) {
currentMode = mode;
btnGeneral.classList.toggle('active', mode === 'general');
btnRealtime.classList.toggle('active', mode === 'realtime');
modeSlider.classList.toggle('right', mode === 'realtime'); // CSS slides the pill to the right
modeLabel.textContent = mode === 'general' ? 'General Mode' : 'Realtime Mode';
}
/* ================================================================
NEW CHAT
================================================================ */
/**
* newChat() β Resets the entire conversation to a fresh state.
*
* Steps:
* 1. Stop any playing TTS audio.
* 2. Clear the session ID (server will create a new one on next message).
* 3. Clear all messages from the chat container.
* 4. Re-create and display the welcome screen.
* 5. Clear the input field and reset its size.
* 6. Update the greeting text (in case time-of-day changed).
*/
function newChat() {
if (ttsPlayer) ttsPlayer.stop();
sessionId = null;
chatMessages.innerHTML = '';
chatMessages.appendChild(createWelcome());
messageInput.value = '';
autoResizeInput();
setGreeting();
if (searchResultsWidget) searchResultsWidget.classList.remove('open');
if (searchResultsToggle) searchResultsToggle.style.display = 'none';
}
/**
* createWelcome() β Builds and returns the welcome screen DOM element.
*
* @returns {HTMLDivElement} The welcome screen element, ready to be
* appended to the chat container.
*
* The welcome screen includes:
* - A decorative SVG icon
* - A time-based greeting (same logic as setGreeting)
* - A subtitle prompt ("How may I assist you today?")
* - Quick-action chip buttons with predefined messages
*
* The chip buttons get their own click listeners here because they
* are dynamically created (not present in the original HTML).
*/
function createWelcome() {
const h = new Date().getHours();
let g = 'Good evening.';
if (h < 12) g = 'Good morning.';
else if (h < 17) g = 'Good afternoon.';
else if (h >= 22) g = 'Burning the midnight oil?';
const div = document.createElement('div');
div.className = 'welcome-screen';
div.id = 'welcome-screen';
div.innerHTML = `
<div class="welcome-icon">
<svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
</div>
<h2 class="welcome-title">${g}</h2>
<p class="welcome-sub">How may I assist you today?</p>
<div class="welcome-chips">
<button class="chip" data-msg="What can you do?">What can you do?</button>
<button class="chip" data-msg="Open YouTube for me">Open YouTube</button>
<button class="chip" data-msg="Tell me a fun fact">Fun fact</button>
<button class="chip" data-msg="Play some music">Play music</button>
</div>`;
// Attach click handlers to the dynamically created chip buttons
div.querySelectorAll('.chip').forEach(c => {
c.addEventListener('click', () => { if (!isStreaming) sendMessage(c.dataset.msg); });
});
return div;
}
/* ================================================================
MESSAGE RENDERING
================================================================
These functions build the chat message DOM elements. Each message
consists of:
- An avatar circle ("R" for Radha, "U" for user)
- A body containing a label (name + mode) and the content text
The structure mirrors common chat UIs (Slack, Discord, ChatGPT).
================================================================ */
/**
* isUrlLike(str) β True if the string looks like a URL or encoded path (not a readable title/snippet).
*/
function isUrlLike(str) {
if (!str || typeof str !== 'string') return false;
const s = str.trim();
return s.length > 40 && (/^https?:\/\//i.test(s) || /\%2f|\%3a|\.com\/|\.org\//i.test(s));
}
/**
* friendlyUrlLabel(url) β Short, readable label for a URL (domain + path hint) for display.
*/
function friendlyUrlLabel(url) {
if (!url || typeof url !== 'string') return 'View source';
try {
const u = new URL(url.startsWith('http') ? url : 'https://' + url);
const host = u.hostname.replace(/^www\./, '');
const path = u.pathname !== '/' ? u.pathname.slice(0, 20) + (u.pathname.length > 20 ? 'β¦' : '') : '';
return path ? host + path : host;
} catch (_) {
return url.length > 40 ? url.slice(0, 37) + 'β¦' : url;
}
}
/**
* truncateSnippet(text, maxLen) β Truncate to maxLen with ellipsis, one line for card content.
*/
function truncateSnippet(text, maxLen) {
if (!text || typeof text !== 'string') return '';
const t = text.trim();
if (t.length <= maxLen) return t;
return t.slice(0, maxLen).trim() + 'β¦';
}
/**
* renderSearchResults(payload) β Fills the right-side search results widget
* with Tavily data (query, AI answer, and source cards). Filters junk, truncates
* content, and shows friendly URL labels so layout stays clean and responsive.
*/
function renderSearchResults(payload) {
if (!payload) return;
if (searchResultsQuery) searchResultsQuery.textContent = (payload.query || '').trim() || 'Search';
if (searchResultsAnswer) searchResultsAnswer.textContent = (payload.answer || '').trim() || '';
if (!searchResultsList) return;
searchResultsList.innerHTML = '';
const results = payload.results || [];
const maxContentLen = 220;
for (const r of results) {
let title = (r.title || '').trim();
let content = (r.content || '').trim();
const url = (r.url || '').trim();
if (isUrlLike(title)) title = friendlyUrlLabel(url) || 'Source';
if (!title) title = friendlyUrlLabel(url) || 'Source';
if (isUrlLike(content)) content = '';
content = truncateSnippet(content, maxContentLen);
const score = r.score != null ? Math.round((r.score || 0) * 100) : null;
const card = document.createElement('div');
card.className = 'search-result-card';
const urlDisplay = url ? escapeHtml(friendlyUrlLabel(url)) : '';
const urlSafe = url ? url.replace(/"/g, '"').replace(/</g, '<').replace(/>/g, '>') : '';
card.innerHTML = `
<div class="card-title">${escapeHtml(title)}</div>
${content ? `<div class="card-content">${escapeHtml(content)}</div>` : ''}
${url ? `<a href="${urlSafe}" target="_blank" rel="noopener" class="card-url" title="${escapeAttr(url)}">${urlDisplay}</a>` : ''}
${score != null ? `<div class="card-score">Relevance: ${escapeHtml(String(score))}%</div>` : ''}`;
searchResultsList.appendChild(card);
}
}
/**
* escapeAttr(str) β Escape for HTML attribute (e.g. href, title).
*/
function escapeAttr(str) {
if (typeof str !== 'string') return '';
const div = document.createElement('div');
div.textContent = str;
return div.innerHTML.replace(/"/g, '"');
}
/**
* escapeHtml(str) β Escapes & < > " ' for safe insertion into HTML.
*/
function escapeHtml(str) {
if (typeof str !== 'string') return '';
const div = document.createElement('div');
div.textContent = str;
return div.innerHTML;
}
/**
* hideWelcome() β Removes the welcome screen from the DOM.
*
* Called before adding the first message, since the welcome screen
* should disappear once a conversation begins.
*/
function hideWelcome() {
const w = document.getElementById('welcome-screen');
if (w) w.remove();
}
/**
* addMessage(role, text) β Creates and appends a chat message bubble.
*
* @param {string} role - Either 'user' or 'assistant'. Determines
* styling, avatar letter, and label text.
* @param {string} text - The message content to display.
* @returns {HTMLDivElement} The inner content element β returned so
* the caller (sendMessage) can update it
* later during streaming.
*
* DOM structure created:
* <div class="message user|assistant">
* <div class="msg-avatar"><svg>...</svg></div>
* <div class="msg-body">
* <div class="msg-label">Radha (General) | You</div>
* <div class="msg-content">...text...</div>
* </div>
* </div>
*/
/* Inline SVG icons for chat avatars (user = person, assistant = bot). */
const AVATAR_ICON_USER = '<svg class="msg-avatar-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>';
const AVATAR_ICON_ASSISTANT = '<svg class="msg-avatar-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="10" rx="2"/><circle cx="12" cy="5" r="2"/><path d="M12 7v4"/><circle cx="9" cy="16" r="1" fill="currentColor"/><circle cx="15" cy="16" r="1" fill="currentColor"/></svg>';
function addMessage(role, text) {
hideWelcome();
const msg = document.createElement('div');
msg.className = `message ${role}`;
const avatar = document.createElement('div');
avatar.className = 'msg-avatar';
avatar.innerHTML = role === 'assistant' ? AVATAR_ICON_ASSISTANT : AVATAR_ICON_USER;
const body = document.createElement('div');
body.className = 'msg-body';
const label = document.createElement('div');
label.className = 'msg-label';
label.textContent = role === 'assistant'
? `Radha (${currentMode === 'realtime' ? 'Realtime' : 'General'})`
: 'You';
const content = document.createElement('div');
content.className = 'msg-content';
content.textContent = text;
body.appendChild(label);
body.appendChild(content);
msg.appendChild(avatar);
msg.appendChild(body);
chatMessages.appendChild(msg);
scrollToBottom();
return content; // Returned so the streaming logic can update it in real time
}
/**
* addTypingIndicator() β Shows an animated "..." typing indicator
* while waiting for the assistant's response to begin streaming.
*
* @returns {HTMLDivElement} The content element (containing the dots).
*
* This creates a message bubble that looks like the assistant is
* typing. It's removed once actual content starts arriving.
* The three <span> elements inside .typing-dots are animated via CSS
* to create the bouncing dots effect.
*/
function addTypingIndicator() {
hideWelcome();
const msg = document.createElement('div');
msg.className = 'message assistant';
msg.id = 'typing-msg'; // ID so we can find and remove it later
const avatar = document.createElement('div');
avatar.className = 'msg-avatar';
avatar.innerHTML = AVATAR_ICON_ASSISTANT;
const body = document.createElement('div');
body.className = 'msg-body';
const label = document.createElement('div');
label.className = 'msg-label';
label.textContent = `Radha (${currentMode === 'realtime' ? 'Realtime' : 'General'})`;
const content = document.createElement('div');
content.className = 'msg-content';
content.innerHTML = '<span class="typing-dots"><span></span><span></span><span></span></span>';
body.appendChild(label);
body.appendChild(content);
msg.appendChild(avatar);
msg.appendChild(body);
chatMessages.appendChild(msg);
scrollToBottom();
return content;
}
/**
* removeTypingIndicator() β Removes the typing indicator from the DOM.
*
* Called when:
* - The first token of the response arrives (replaced by real content).
* - An error occurs (replaced by an error message).
*/
function removeTypingIndicator() {
const t = document.getElementById('typing-msg');
if (t) t.remove();
}
/**
* scrollToBottom() β Scrolls the chat container to show the latest message.
*
* Uses requestAnimationFrame so the scroll runs after the browser has
* laid out newly added content (typing indicator, "Thinking...", or
* streamed chunks). Without this, scroll can happen before layout and
* the user would have to scroll manually to see new content.
*/
function scrollToBottom() {
requestAnimationFrame(() => {
chatMessages.scrollTop = chatMessages.scrollHeight;
});
}
/* ================================================================
SEND MESSAGE + SSE STREAMING
================================================================
HOW SSE (Server-Sent Events) STREAMING WORKS β EXPLAINED FOR LEARNERS
----------------------------------------------------------------------
Instead of waiting for the entire AI response to generate (which
could take seconds), we use SSE streaming to receive the response
token-by-token as it's generated. This creates the "typing" effect.
STANDARD SSE FORMAT:
The server sends a stream of lines like:
data: {"chunk": "Hello"}
data: {"chunk": " there"}
data: {"chunk": "!"}
data: {"done": true}
Each line starts with "data: " followed by a JSON payload. Lines
are separated by newlines ("\n"). An empty line separates events.
HOW WE READ THE STREAM:
1. We POST the user's message to the backend.
2. The server responds with Content-Type: text/event-stream.
3. We use res.body.getReader() to read the response body as a
stream of raw bytes (Uint8Array chunks).
4. We decode each chunk to text and append it to an SSE buffer.
5. We split the buffer by newlines and process each complete line.
6. Lines starting with "data: " are parsed as JSON.
7. Each JSON payload may contain:
- chunk: a piece of the text response (appended to the UI)
- audio: a base64 MP3 segment (enqueued for TTS playback)
- session_id: the conversation ID (saved for future messages)
- error: an error message from the server
- done: true when the response is complete
WHY NOT USE EventSource?
The native EventSource API only supports GET requests. We need POST
(to send the message body), so we use fetch() + manual SSE parsing.
THE SSE BUFFER:
Network chunks don't align with SSE line boundaries β one chunk
might contain half a line, or multiple lines. The sseBuffer variable
accumulates raw text. We split by '\n', process all complete lines,
and keep the last (potentially incomplete) line in the buffer for
the next iteration.
================================================================ */
/**
* sendMessage(textOverride) β The main function that sends a user
* message and streams the AI's response.
*
* @param {string} [textOverride] - Optional text to send instead of
* the input field's value. Used by
* chip buttons and voice input.
*
* This is an async function because it awaits the streaming fetch
* response. The full flow:
*
* 1. Get the message text (from parameter or input field).
* 2. Clear the input field and show the user's message in the chat.
* 3. Show a typing indicator while waiting for the server.
* 4. Lock the UI (isStreaming = true, disable send button).
* 5. Reset the TTS player and unlock audio for iOS.
* 6. POST to the appropriate endpoint based on currentMode.
* 7. Read the SSE stream chunk by chunk.
* 8. For each data line: parse JSON, append text to the DOM,
* enqueue audio, save session ID.
* 9. When done, clean up the streaming cursor and unlock the UI.
* 10. On error, show an error message in the chat.
*/
async function sendMessage(textOverride) {
// Step 1: Get the message text, trimming whitespace
const text = (textOverride || messageInput.value).trim();
if (!text || isStreaming) return; // Ignore empty messages or if already streaming
// Step 2: Clear the input field immediately (responsive UX)
messageInput.value = '';
autoResizeInput();
charCount.textContent = '';
// Step 3: Display the user's message and show typing indicator
addMessage('user', text);
addTypingIndicator();
// Step 4: Lock the UI to prevent double-sending
isStreaming = true;
sendBtn.disabled = true;
// Step 5: Reset TTS for this new response and unlock audio (iOS)
if (ttsPlayer) { ttsPlayer.reset(); ttsPlayer.unlock(); }
// Step 6: Choose the endpoint based on the current mode
const endpoint = currentMode === 'realtime' ? '/chat/realtime/stream' : '/chat/stream';
try {
// Step 7: Send the POST request to the backend
const res = await fetch(`${API}${endpoint}`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
message: text, // The user's message
session_id: sessionId, // null on first message; UUID after that
tts: !!(ttsPlayer && ttsPlayer.enabled) // Tell the backend whether to generate audio
}),
});
// Handle HTTP errors (4xx, 5xx)
if (!res.ok) {
const err = await res.json().catch(() => null);
throw new Error(err?.detail || `HTTP ${res.status}`);
}
// Step 8: Replace the typing indicator with an empty assistant message
removeTypingIndicator();
const contentEl = addMessage('assistant', '');
const placeholder = currentMode === 'realtime' ? 'Searching...' : 'Thinking...';
contentEl.innerHTML = `<span class="msg-stream-text">${placeholder}</span>`;
scrollToBottom(); // Scroll so placeholder is visible without manual scroll
// Set up the stream reader and SSE parser
const reader = res.body.getReader(); // ReadableStream reader for the response body
const decoder = new TextDecoder(); // Converts raw bytes (Uint8Array) to strings
let sseBuffer = ''; // Accumulates partial SSE lines between chunks
let fullResponse = ''; // The complete assistant response text so far
let cursorEl = null; // The blinking "|" cursor shown during streaming
// Step 9: Read the stream in a loop until it's done
while (true) {
const { done, value } = await reader.read();
if (done) break; // Stream has ended
// Decode the bytes and add to our SSE buffer
sseBuffer += decoder.decode(value, { stream: true });
// Split by newlines to get individual SSE lines
const lines = sseBuffer.split('\n');
// The last element might be an incomplete line β keep it in the buffer
sseBuffer = lines.pop();
// Process each complete line
for (const line of lines) {
// SSE lines that don't start with "data: " are empty lines or comments β skip them
if (!line.startsWith('data: ')) continue;
try {
// Parse the JSON payload (everything after "data: ")
const data = JSON.parse(line.slice(6));
// Save the session ID if the server sends one
if (data.session_id) sessionId = data.session_id;
// SEARCH RESULTS β Tavily data (realtime): show in right-side widget and reveal toggle
if (data.search_results) {
renderSearchResults(data.search_results);
if (searchResultsToggle) searchResultsToggle.style.display = '';
if (searchResultsWidget) searchResultsWidget.classList.add('open');
}
// TEXT CHUNK β Append to the displayed response
if (data.chunk) {
fullResponse += data.chunk;
const textSpan = contentEl.querySelector('.msg-stream-text');
if (textSpan) textSpan.textContent = fullResponse;
// Add a blinking cursor at the end (created once, on the first chunk)
if (!cursorEl) {
cursorEl = document.createElement('span');
cursorEl.className = 'stream-cursor';
cursorEl.textContent = '|';
contentEl.appendChild(cursorEl);
}
scrollToBottom();
}
// AUDIO CHUNK β Enqueue for TTS playback
if (data.audio && ttsPlayer) {
ttsPlayer.enqueue(data.audio);
}
// ERROR β The server reported an error in the stream
if (data.error) throw new Error(data.error);
// DONE β The server signals that the response is complete
if (data.done) break;
} catch (parseErr) {
// Ignore JSON parse errors (e.g., partial lines) but re-throw real errors
if (parseErr.message && !parseErr.message.includes('JSON'))
throw parseErr;
}
}
}
// Step 10: Clean up β remove the blinking cursor
if (cursorEl) cursorEl.remove();
// If the server sent nothing, show a placeholder
const textSpan = contentEl.querySelector('.msg-stream-text');
if (textSpan && !fullResponse) textSpan.textContent = '(No response)';
} catch (err) {
// On any error, remove the typing indicator and show the error
removeTypingIndicator();
addMessage('assistant', `Something went wrong: ${err.message}`);
} finally {
// Always unlock the UI, whether the request succeeded or failed
isStreaming = false;
sendBtn.disabled = false;
}
}
/* ================================================================
BOOT β Application Entry Point
================================================================
DOMContentLoaded fires when the HTML document has been fully parsed
(but before images/stylesheets finish loading). This is the ideal
time to initialize our app because all DOM elements are available.
================================================================ */
document.addEventListener('DOMContentLoaded', init); |