AirbyteJSONLoader#

class langchain_community.document_loaders.airbyte_json.AirbyteJSONLoader(file_path: str | Path)[source]#

Load local Airbyte json files.

Initialize with a file path. This should start with โ€˜/tmp/airbyte_local/โ€™.

Attributes

Methods

__init__(file_path)

Initialize with a file path.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

A lazy loader for Documents.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

Parameters:

file_path (str | Path) โ€“

__init__(file_path: str | Path)[source]#

Initialize with a file path. This should start with โ€˜/tmp/airbyte_local/โ€™.

Parameters:

file_path (str | Path) โ€“

async alazy_load() โ†’ AsyncIterator[Document]#

A lazy loader for Documents.

Return type:

AsyncIterator[Document]

async aload() โ†’ List[Document]#

Load data into Document objects.

Return type:

List[Document]

lazy_load() โ†’ Iterator[Document]#

A lazy loader for Documents.

Return type:

Iterator[Document]

load() โ†’ List[Document][source]#

Load data into Document objects.

Return type:

List[Document]

load_and_split(text_splitter: TextSplitter | None = None) โ†’ List[Document]#

Load Documents and split into chunks. Chunks are returned as Documents.

Do not override this method. It should be considered to be deprecated!

Parameters:

text_splitter (Optional[TextSplitter]) โ€“ TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns:

List of Documents.

Return type:

List[Document]

Examples using AirbyteJSONLoader