File size: 15,030 Bytes
f4bf6a0 | 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 | // @ts-check
/**
* App wiring: the avatar stage + the speech-to-speech session.
*
* A session is one tap away: tap the button โ mic โ same-origin `/api/session`
* handshake โ WebSocket to the granted compute โ talk. The avatar carries all
* conversational state (listening, thinking, speaking) with its body; the
* caption under it is a quiet machine-voice echo of the same state.
*/
import { S2sWsRealtimeClient } from "./s2s/s2s-ws-client.js";
import { AvatarStage, AVATAR_MOODS, AVATAR_GESTURES } from "./avatar.js";
const VOICES = [
"Aiden",
"Ryan",
"Dylan",
"Eric",
"Ono_Anna",
"Serena",
"Sohee",
"Uncle_Fu",
"Vivian",
];
const DEFAULT_VOICE = "Sohee";
const DEFAULT_INSTRUCTIONS = [
"You are a friendly voice assistant with a visible, human-like 3D avatar: the user",
"sees you as a person on their screen. This is a spoken conversation: keep replies",
"short, natural and warm, never list-like.",
"You can control your avatar body with tools: set_mood changes your overall emotional",
"state, make_hand_gesture plays a hand gesture, make_facial_expression makes a quick",
"facial expression from a single face emoji. Use them naturally and sparingly to",
"express yourself: smile when greeting, shrug when unsure, thumbs up when agreeing.",
"Never mention the tools or that you are controlling an avatar.",
].join(" ");
const STORAGE_KEYS = {
voice: "avatar.voice",
instructions: "avatar.instructions",
directUrl: "avatar.directUrl",
subtitles: "avatar.subtitles",
};
/** Function tools declared to the backend: the model plays the avatar. */
const TOOL_DEFS = [
{
type: "function",
name: "set_mood",
description: "Change your avatar's overall mood/emotional state.",
parameters: {
type: "object",
properties: {
mood: { type: "string", enum: AVATAR_MOODS, description: "Mood name." },
},
required: ["mood"],
},
},
{
type: "function",
name: "make_hand_gesture",
description: "Make a hand gesture with your avatar.",
parameters: {
type: "object",
properties: {
gesture: { type: "string", enum: AVATAR_GESTURES, description: "Gesture name." },
},
required: ["gesture"],
},
},
{
type: "function",
name: "make_facial_expression",
description: "Make a quick facial expression with your avatar, given as a single face emoji (e.g. ๐, ๐ฎ, ๐ค).",
parameters: {
type: "object",
properties: {
emoji: { type: "string", description: "A single face emoji." },
},
required: ["emoji"],
},
},
];
// โโ DOM โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
const $ = (sel) => /** @type {HTMLElement} */ (document.querySelector(sel));
const stageNode = $("#stage");
const mainBtn = /** @type {HTMLButtonElement} */ ($("#main-btn"));
const mainBtnLabel = $("#main-btn-label");
const muteBtn = /** @type {HTMLButtonElement} */ ($("#mute-btn"));
const caption = $("#caption");
const subtitles = $("#subtitles");
const loading = $("#loading");
const settingsBtn = /** @type {HTMLButtonElement} */ ($("#settings-btn"));
const settingsDialog = /** @type {HTMLDialogElement} */ ($("#settings"));
const inputVoice = /** @type {HTMLSelectElement} */ ($("#voice"));
const inputInstructions = /** @type {HTMLTextAreaElement} */ ($("#instructions"));
const inputDirectUrl = /** @type {HTMLInputElement} */ ($("#direct-url"));
const inputSubtitles = /** @type {HTMLInputElement} */ ($("#subtitles-toggle"));
const directUrlRow = $("#direct-url-row");
// โโ State โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
const stage = new AvatarStage(stageNode);
/** @type {S2sWsRealtimeClient | null} */
let client = null;
let muted = false;
let subtitleTimer = 0;
/** @type {{ lb: boolean, allowDirect: boolean }} */
let config = { lb: false, allowDirect: true };
function loadSettings() {
return {
voice: localStorage.getItem(STORAGE_KEYS.voice) || DEFAULT_VOICE,
instructions: localStorage.getItem(STORAGE_KEYS.instructions) || "",
directUrl: localStorage.getItem(STORAGE_KEYS.directUrl) || "",
// Off by default: the face already carries the conversation.
subtitles: localStorage.getItem(STORAGE_KEYS.subtitles) === "1",
};
}
let settings = loadSettings();
function saveSettings() {
localStorage.setItem(STORAGE_KEYS.voice, settings.voice);
localStorage.setItem(STORAGE_KEYS.instructions, settings.instructions);
localStorage.setItem(STORAGE_KEYS.directUrl, settings.directUrl);
localStorage.setItem(STORAGE_KEYS.subtitles, settings.subtitles ? "1" : "0");
}
/** Persona + whatever extra guidance the user typed in Settings. */
function effectiveInstructions() {
const extra = settings.instructions.trim();
return extra ? `${DEFAULT_INSTRUCTIONS}\n\nAdditional instructions from the user:\n${extra}` : DEFAULT_INSTRUCTIONS;
}
// โโ Captions / subtitles โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/** @param {string} text @param {""|"live"|"error"} [kind] */
function setCaption(text, kind = "") {
caption.textContent = text;
caption.className = kind;
}
/** @param {string} text */
function showSubtitles(text) {
if (!settings.subtitles) return;
clearTimeout(subtitleTimer);
subtitles.textContent = text;
subtitles.classList.add("visible");
}
function fadeSubtitles(delayMs = 2600) {
clearTimeout(subtitleTimer);
subtitleTimer = window.setTimeout(() => subtitles.classList.remove("visible"), delayMs);
}
// โโ Button โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/** @type {"start" | "join" | "stop" | "busy"} */
let mainAction = "start";
/** @param {"start" | "join" | "stop" | "busy"} action @param {string} label */
function setMainButton(action, label) {
mainAction = action;
mainBtnLabel.textContent = label;
mainBtn.disabled = action === "busy";
mainBtn.classList.toggle("live", action === "stop");
muteBtn.hidden = action !== "stop";
}
// โโ Status handling โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
const CAPTIONS = {
idle: "TAP TO TALK",
"creating-session": "REQUESTING A SLOTโฆ",
queued: "WAITING IN LINEโฆ",
"your-turn": "YOUR TURN, TAP TO JOIN",
connecting: "CONNECTINGโฆ",
connected: "GO AHEAD, I'M LISTENING",
"user-speaking": "LISTENING",
processing: "THINKINGโฆ",
"ai-speaking": "SPEAKING",
closed: "TAP TO TALK",
error: "SOMETHING BROKE, TAP TO RETRY",
};
/** @param {string} status */
function onStatus(status) {
stage.setConversationState(status);
setCaption(CAPTIONS[status] ?? status, status === "error" ? "error" : status === "idle" || status === "closed" ? "" : "live");
switch (status) {
case "idle":
case "closed":
setMainButton("start", "Start talking");
break;
case "error":
setMainButton("start", "Retry");
break;
case "creating-session":
case "connecting":
setMainButton("busy", "Connectingโฆ");
break;
case "queued":
setMainButton("stop", "Leave queue");
break;
case "your-turn":
setMainButton("join", "Join now");
break;
default:
// connected / user-speaking / processing / ai-speaking
setMainButton("stop", "End conversation");
break;
}
if (status === "user-speaking") {
subtitles.classList.remove("visible");
}
}
// โโ Tool executor โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/** @param {string} name @param {string} argsJson @param {string} callId */
function runTool(name, argsJson, callId) {
if (!client) return;
/** @type {Record<string, unknown>} */
let args = {};
try {
args = JSON.parse(argsJson || "{}");
} catch {
// keep {}
}
const result = stage.runTool(name, args) ?? `Unknown tool: ${name}`;
client.sendToolOutput(callId, result);
// The turn continues after a tool call only when we ask for the follow-up.
client.requestResponse();
}
// โโ Session lifecycle โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async function startSession() {
// Everything audible hangs off the avatar's AudioContext; resume it inside
// the tap gesture or iOS keeps it suspended (silent).
stage.resume();
let micStream;
if (new URLSearchParams(location.search).has("fakemic")) {
// Dev/testing hook: a silent synthetic mic, so the session can be driven
// end-to-end (handshake, WS, TTS playback, lip-sync) without a real mic
// or a native permission prompt.
const ctx = /** @type {AudioContext} */ (stage.audioCtx);
micStream = ctx.createMediaStreamDestination().stream;
} else {
try {
micStream = await navigator.mediaDevices.getUserMedia({
audio: { echoCancellation: true, noiseSuppression: true, autoGainControl: true },
});
} catch {
setCaption("MIC BLOCKED, ALLOW IT IN THE BROWSER AND RETRY", "error");
return;
}
}
const audioCtx = stage.audioCtx;
const voiceSink = stage.voiceSink;
if (!audioCtx || !voiceSink) return;
const c = new S2sWsRealtimeClient({
...(config.lb ? { sessionUrl: "api/session" } : { directUrl: settings.directUrl }),
voice: settings.voice,
instructions: effectiveInstructions(),
micStream,
audioContext: audioCtx,
outputNode: voiceSink,
workletBaseUrl: "/worklets/",
tools: TOOL_DEFS,
});
client = c;
c.addEventListener("status", (e) => onStatus(/** @type {CustomEvent} */ (e).detail.status));
c.addEventListener("queue", (e) => {
const { position } = /** @type {CustomEvent} */ (e).detail;
setCaption(position > 0 ? `#${position} IN LINEโฆ` : "ALMOST THEREโฆ", "live");
});
c.addEventListener("transcript", (e) => {
const { role, text } = /** @type {CustomEvent} */ (e).detail;
if (role === "assistant" && text) showSubtitles(text);
});
c.addEventListener("response-finished", () => {
fadeSubtitles();
});
c.addEventListener("toolcall", (e) => {
const { name, arguments: args, callId } = /** @type {CustomEvent} */ (e).detail;
runTool(name, args, callId);
});
c.addEventListener("server-error", (e) => {
console.warn("server error:", /** @type {CustomEvent} */ (e).detail.error);
});
c.addEventListener("error", () => {
void endSession();
});
try {
await c.connect();
} catch (err) {
const code = /** @type {Error & {code?: string}} */ (err)?.code;
if (code === "limit") {
setCaption("DAILY CONVERSATION LIMIT REACHED, TRY AGAIN TOMORROW", "error");
} else if (code === "queue-full") {
setCaption("EVERY SEAT IS TAKEN, TRY AGAIN SHORTLY", "error");
} else if (code === "join-expired") {
setCaption("YOUR SPOT EXPIRED, TAP TO TRY AGAIN", "error");
} else if (code !== "aborted") {
console.error(err);
setCaption("COULD NOT CONNECT, TAP TO RETRY", "error");
}
await endSession(true);
return;
}
}
/** @param {boolean} [silent] Keep the current caption (e.g. an error). */
async function endSession(silent = false) {
const c = client;
client = null;
if (c) {
for (const track of c.options.micStream?.getTracks() ?? []) track.stop();
await c.close().catch(() => {});
}
stage.setConversationState("idle");
subtitles.classList.remove("visible");
if (!silent) setCaption(CAPTIONS.idle);
setMainButton("start", "Start talking");
}
// โโ UI events โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
mainBtn.addEventListener("click", () => {
if (mainAction === "start") void startSession();
else if (mainAction === "join") {
stage.resume(); // fresh gesture: re-arm audio before dialing
client?.join();
} else if (mainAction === "stop") void endSession();
});
muteBtn.addEventListener("click", () => {
muted = !muted;
client?.setMuted(muted);
muteBtn.classList.toggle("active", muted);
muteBtn.setAttribute("aria-label", muted ? "Unmute microphone" : "Mute microphone");
});
settingsBtn.addEventListener("click", () => {
inputVoice.value = settings.voice;
inputInstructions.value = settings.instructions;
inputDirectUrl.value = settings.directUrl;
inputSubtitles.checked = settings.subtitles;
settingsDialog.showModal();
});
settingsDialog.addEventListener("close", () => {
settings = {
voice: inputVoice.value || DEFAULT_VOICE,
instructions: inputInstructions.value,
directUrl: inputDirectUrl.value.trim(),
subtitles: inputSubtitles.checked,
};
saveSettings();
if (!settings.subtitles) subtitles.classList.remove("visible");
// Voice/instructions apply live to an ongoing session.
client?.updateSession({ voice: settings.voice, instructions: effectiveInstructions() });
});
window.addEventListener("beforeunload", () => {
client?.close();
});
// โโ Boot โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async function boot() {
for (const v of VOICES) {
const o = document.createElement("option");
o.value = v;
o.textContent = v.replaceAll("_", " ");
inputVoice.append(o);
}
try {
const resp = await fetch("api/config");
if (resp.ok) config = { ...config, ...(await resp.json()) };
} catch {
// defaults keep direct mode available
}
directUrlRow.hidden = !config.allowDirect;
setCaption("WAKING HER UPโฆ");
setMainButton("busy", "Loadingโฆ");
try {
await stage.init({
onprogress: (ev) => {
if (ev.lengthComputable) {
const pct = Math.min(100, Math.round((ev.loaded / ev.total) * 100));
loading.textContent = `Loading avatar ${pct}%`;
}
},
});
} catch (err) {
console.error(err);
loading.textContent = "The avatar failed to load. Check the console and reload.";
setCaption("AVATAR FAILED TO LOAD", "error");
return;
}
loading.classList.add("done");
setCaption(CAPTIONS.idle);
setMainButton("start", "Start talking");
// Debug handles
Object.assign(window, { stage, getClient: () => client });
}
void boot(); |