hackernews_radio / src /lib /voices.ts
ldidukh's picture
Initial React upload
80be4da
raw
history blame contribute delete
197 Bytes
export interface PiperVoice {
id: string
label: string
}
export const VOICES: PiperVoice[] = [
{ id: 'en_US-libritts_r-medium', label: 'LibriTTS' },
{ id: 'browser', label: 'Voxtral' },
]