UNPKG

@mastra/rag

Version:

The Retrieval-Augmented Generation (RAG) module contains document processing and embedding utilities.

5 lines 176 B
import type { Document } from '../schema'; export interface Transformer { transformDocuments(documents: Document[]): Document[]; } //# sourceMappingURL=transformer.d.ts.map