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) • 541 B
text/mdx
title: AI_NoContentGeneratedError
description: Learn how to fix AI_NoContentGeneratedError
# AI_NoContentGeneratedError
This error occurs when the AI provider fails to generate content.
## Properties
- `message`: The error message (optional, defaults to `'No content generated.'`)
## Checking for this Error
You can check if an error is an instance of `AI_NoContentGeneratedError` using:
```typescript
import { NoContentGeneratedError } from 'ai';
if (NoContentGeneratedError.isInstance(error)) {
// Handle the error
}
```