@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
21 lines (20 loc) • 522 B
JavaScript
/**
* Music Generation Type Definitions
*
* Types for music / sound-effect generation across providers (Beatoven,
* ElevenLabs Music, Lyria, Replicate-hosted MusicGen / Riffusion / AudioGen).
*
* Music is a separate modality from TTS — TTS produces voiced speech with
* prosody; Music produces melodic / harmonic / textural audio.
*
* @module types/music
*/
/**
* Valid music audio formats — runtime validation array.
*/
export const VALID_MUSIC_FORMATS = [
"mp3",
"wav",
"flac",
"ogg",
];