ai
Version:
AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript
27 lines (18 loc) • 796 B
text/mdx
title: AI_InvalidDataContentError
description: How to fix AI_InvalidDataContentError
# AI_InvalidDataContentError
This error occurs when the data content provided in a multi-modal message part is invalid. Check out the [ prompt examples for multi-modal messages ](/docs/foundations/prompts#message-prompts).
## Properties
- `content`: The invalid content value
- `cause`: The underlying error that caused this error (optional)
- `message`: The error message describing the expected and received content types (optional, auto-generated)
## Checking for this Error
You can check if an error is an instance of `AI_InvalidDataContentError` using:
```typescript
import { InvalidDataContentError } from 'ai';
if (InvalidDataContentError.isInstance(error)) {
// Handle the error
}
```