Get started using Deepgram's Voice Agent with this Node demo app
Click the button below to fork the repo:
make init
cp sample.env .env # Add your DEEPGRAM_API_KEY
make startOpen http://localhost:8080 in your browser.
git clone --recurse-submodules https://github.com/deepgram-starters/node-voice-agent.git
cd node-voice-agent
pnpm install
cd frontend && pnpm install && cd ..
cp sample.env .env # Add your DEEPGRAM_API_KEYStart both servers in separate terminals:
# Terminal 1 - Backend (port 8081)
node --no-deprecation server.js
# Terminal 2 - Frontend (port 8080)
cd frontend && corepack pnpm run dev -- --port 8080 --no-openOpen http://localhost:8080 in your browser.
MIT - See LICENSE