UNPKG

@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

20 lines (19 loc) 508 B
/** * Avatar / Lip-sync Type Definitions * * Types for generating talking-head videos by combining a portrait image * with narration audio (or text routed through a TTS provider first). * * Avatar is a separate modality from Video — Video is image-to-video * (motion synthesis); Avatar is image + audio → lip-synced video. * * @module types/avatar */ /** * Valid avatar video formats — runtime validation array. */ export const VALID_AVATAR_FORMATS = [ "mp4", "webm", "mov", ];