@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
11 lines • 476 B
TypeScript
import type { Attachment } from '@ai-sdk/ui-utils';
import type { FilePart, ImagePart, TextPart } from 'ai';
type ContentPart = TextPart | ImagePart | FilePart;
/**
* Converts a list of attachments to a list of content parts
* for consumption by `ai/core` functions.
* Currently only supports images and text attachments.
*/
export declare function attachmentsToParts(attachments: Attachment[]): ContentPart[];
export {};
//# sourceMappingURL=attachments-to-parts.d.ts.map