npm install @deepgram/agents-widgetimport { init } from "@deepgram/agents-widget"; const destroy = init({ tokenFactory: () => fetch('/api/deepgram-token').then(r => r.text()), agent: { think: { provider: { type: 'open_ai', model: 'gpt-4o-mini' } } },}); // Later: destroy() to unmount