BlobLoader#

class langchain_core.document_loaders.blob_loaders.BlobLoader[source]#

Abstract interface for blob loaders implementation.

Implementer should be able to load raw content from a storage system according to some criteria and return the raw content lazily as a stream of blobs.

Methods

__init__()

yield_blobs()

A lazy loader for raw data represented by LangChain's Blob object.

__init__()#
abstract yield_blobs() Iterable[Blob][source]#

A lazy loader for raw data represented by LangChainโ€™s Blob object.

Returns:

A generator over blobs

Return type:

Iterable[Blob]