/** * Default earcons for speech sessions. We reuse two of the bundled * Chat notification sounds rather than ship new MP3s — same lazy chunk * already pays for them, and the tonal palette stays consistent across * the chat + dictation UI. * * - `start` → the chat "stream start" chime (calm low-key tone). * - `stop` → the chat "sent" tick (2KB, very short — feels like * "captured" rather than a notification ping). * Previously used `notification.mp3` (30KB, long, loud) which was * too attention-grabbing for a self-initiated action. * * Inlined as base64 data URLs in the Chat sound modules, so consumers * get working audio with zero loader / ambient-type setup. */ import start from '../../../../chat/core/audio/sounds/start'; import sent from '../../../../chat/core/audio/sounds/sent'; export type VoiceSoundEvent = 'start' | 'stop'; export const DEFAULT_VOICE_SOUNDS: Record = { start, stop: sent, };