langchain.js
    Preparing search index...

    Base Document Compression class. All compressors should extend this class.

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    • Abstract method that must be implemented by any class that extends BaseDocumentCompressor. This method takes an array of Document objects and a query string as parameters and returns a Promise that resolves with an array of compressed Document objects.

      Parameters

      • documents: DocumentInterface[]

        An array of Document objects to be compressed.

      • query: string

        A query string.

      • Optionalcallbacks: any

      Returns Promise<DocumentInterface[]>

      A Promise that resolves with an array of compressed Document objects.

    • Parameters

      • x: any

      Returns x is BaseDocumentCompressor