ai
Version:
AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript
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
}
```