Class RetrievalAugmentor

RetrievalAugmentor

Implements

Orchestrates the RAG pipeline including ingestion, retrieval, and document management.

Implements

Constructors

Methods

  • Parameters

    • documentIds: string[]
    • Optional dataSourceId: string
    • Optional _options: {
          ignoreNotFound?: boolean;
      }
      • Optional ignoreNotFound?: boolean

    Returns Promise<{
        successCount: number;
        failureCount: number;
        errors?: {
            documentId: string;
            message: string;
            details?: any;
        }[];
    }>

    Inherit Doc

Properties

augmenterId: string