ReferenceAsk
Remy Reference/models/Deepgram Nova-3
D

Deepgram Nova-3

Deepgram Nova-3, a transcription model from Deepgram.
transcriptionModelOverride: { model: "deepgram-nova-3" }
Deepgram·Released February 2025
Pricing
List price
$0.0058 / min of audio
Per second
$0.000097
Per minute
$0.0058
Specifications
Released
February 2025
Model string
nova-3
Capabilities
RealtimeLow latency
Parameters
Model options, passed in transcriptionModelOverride.config.
ParameterTypeDefaultRange / options
includeSpeakers
Label each utterance with a speaker index when multiple people talk.
Selectnoyesno
includeWordTimings
Add per-word start/end times and confidence inside each transcript segment. Increases the size of the result considerably.
Selectnoyesno
detectLanguage
Detect the spoken language instead of assuming English. Leave off for known-English audio.
Selectnoyesno
Use this model
await mindstudio.transcribeAudio({
  audioUrl: "...",
  transcriptionModelOverride: {
    model: "deepgram-nova-3",
    config: {
      includeSpeakers: "no",
      includeWordTimings: "no",
    },
  },
});