npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@interview-sdk/adapter-deepgram

v0.1.2

Published

Deepgram voice (speech-to-text) provider adapter for @interview-sdk/core.

Readme

@interview-sdk/adapter-deepgram

npm

Deepgram voice provider adapter for @interview-sdk/core, built on @deepgram/sdk v5. Implements both transcribe() (speech-to-text, the primary use case) and synthesize() (Deepgram also ships TTS).

Install

npm install @interview-sdk/core @interview-sdk/adapter-deepgram

Usage

import { DeepgramAdapter } from '@interview-sdk/adapter-deepgram';

const voiceAdapter = new DeepgramAdapter({ apiKey: process.env.DEEPGRAM_API_KEY });

<InterviewWidget>'s transcribe/synthesize props are plain functions ((audio: Blob) => Promise<string> / (text: string) => Promise<SynthesisResult>), not a VoiceProviderAdapter instance — synthesize matches directly, but transcribe needs a one-line adapter since VoiceProviderAdapter.transcribe takes an ArrayBuffer/Uint8Array and returns a TranscriptResult:

<InterviewWidget
  transcribe={async (audio) => (await voiceAdapter.transcribe(await audio.arrayBuffer())).text}
  synthesize={voiceAdapter.synthesize.bind(voiceAdapter)}
  // ...
/>

DeepgramAdapter accepts an optional transcribeModel (defaults to nova-3), speakModel (TTS, defaults to aura-2-thalia-en), and an optional pre-configured client for testing.

Behavior

  • transcribe(audio) passes the raw ArrayBuffer/Uint8Array directly to listen.v1.media.transcribeFile — no stream wrapper needed, since v5's Uploadable type accepts binary data natively — with smart_format: true for readable punctuation/casing, and reads results.channels[0].alternatives[0].transcript from the response.
  • synthesize(text) requests container: 'wav' / encoding: 'linear16' explicitly so the adapter can confidently report mimeType: 'audio/wav' back to the caller, rather than guessing from Deepgram's own defaults.
  • Normalizes every DeepgramError (a single generic class with a numeric .statusCode, not a typed hierarchy) onto the shared Provider*Error taxonomy from @interview-sdk/core, the same as the text-generation adapters.
  • v5 auto-retries 429/5xx/connection errors by default (maxRetries: 2), matching Claude's and OpenAI's SDK behavior out of the box — unlike Gemini, no extra opt-in was needed here.

Verified against

@deepgram/[email protected], current as of 2026-07-04. v5 is a breaking rewrite from v4 — the client is new DeepgramClient() (not v4's createClient()), and methods live under versioned namespaces (listen.v1.media.transcribeFile, not v4's listen.prerecorded.transcribeFile). Re-check before assuming this stays accurate for long.