ai
Version:
AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.
25 lines (16 loc) • 572 B
text/mdx
title: AI_NoTranscriptGeneratedError
description: Learn how to fix AI_NoTranscriptGeneratedError
# 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:
```typescript
import { NoTranscriptGeneratedError } from 'ai';
if (NoTranscriptGeneratedError.isInstance(error)) {
// Handle the error
}
```