AI_NoTranscriptGeneratedError

This error occurs when no transcript could be generated from the input.

Properties

  • responses: Array of transcription model response metadata (required in constructor)

Checking for this Error

You can check if an error is an instance of AI_NoTranscriptGeneratedError using:

import { NoTranscriptGeneratedError } from 'ai';
if (NoTranscriptGeneratedError.isInstance(error)) {
// Handle the error
}