chore: uptick

This commit is contained in:
Brooklyn Nicholson
2026-05-01 19:53:41 -05:00
parent d5d7b5c6dc
commit e00297782d
19 changed files with 782 additions and 153 deletions
+2
View File
@@ -4,6 +4,7 @@ export type VoicePlaybackSource = 'read-aloud' | 'voice-conversation'
export type VoicePlaybackStatus = 'idle' | 'preparing' | 'speaking'
export interface VoicePlaybackState {
audioElement: HTMLAudioElement | null
messageId: string | null
sequence: number
source: VoicePlaybackSource | null
@@ -11,6 +12,7 @@ export interface VoicePlaybackState {
}
export const $voicePlayback = atom<VoicePlaybackState>({
audioElement: null,
messageId: null,
sequence: 0,
source: null,