Mic FAB opens an overlay panel. Change options to hot-reload.
import { init } from '@deepgram/agent-widget'; const teardown = init({ tokenFactory: () => fetch('/api/token').then(r => r.json()).then(d => d.token), agent: { /* ... */ }, layout: 'floating', placement: 'bottom-right', colorScheme: 'dark', }); // Unmount: teardown();