langchain.js
    Preparing search index...

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    • Initializes the AirtableLoader with configuration options. Retrieves the API token from environment variables and validates it.

      Parameters

      Returns AirtableLoader

    Methods

    • Loads documents from Airtable, handling pagination and retries.

      Returns Promise<Document[]>

      A promise that resolves to an array of Document objects.

    • Asynchronous generator function for lazily loading documents from Airtable. This method yields each document individually, enabling memory-efficient handling of large datasets by fetching records in pages.

      Returns AsyncGenerator<Document>

      An asynchronous generator yielding Document objects one by one.