import { heygenSearch } from "./heygen-search.mjs"; export const bgmProvider = { async search(intent) { const results = heygenSearch("audio sounds list", intent, { type: "music" }); if (!results) return null; const best = results[0]; return { url: best.audio_url, source: "search", // ext derived from audio_url by resolve.mjs — catalog tracks are .mp3 or .wav metadata: { description: best.description || intent, duration: best.duration || null, provider: "heygen.audio.sounds", provenance: { track_id: best.id, score: best.score, query: intent }, }, }; }, };