langchain_community.document_loaders.modern_treasury.ModernTreasuryLoader¶

class langchain_community.document_loaders.modern_treasury.ModernTreasuryLoader(resource: str, organization_id: Optional[str] = None, api_key: Optional[str] = None)[source]¶

Load from Modern Treasury.

Parameters
  • resource – The Modern Treasury resource to load.

  • organization_id – The Modern Treasury organization ID. It can also be specified via the environment variable “MODERN_TREASURY_ORGANIZATION_ID”.

  • api_key – The Modern Treasury API key. It can also be specified via the environment variable “MODERN_TREASURY_API_KEY”.

Methods

__init__(resource[, organization_id, api_key])

param resource

The Modern Treasury resource to load.

lazy_load()

A lazy loader for Documents.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(resource: str, organization_id: Optional[str] = None, api_key: Optional[str] = None) None[source]¶
Parameters
  • resource – The Modern Treasury resource to load.

  • organization_id – The Modern Treasury organization ID. It can also be specified via the environment variable “MODERN_TREASURY_ORGANIZATION_ID”.

  • api_key – The Modern Treasury API key. It can also be specified via the environment variable “MODERN_TREASURY_API_KEY”.

lazy_load() Iterator[Document]¶

A lazy loader for Documents.

load() List[Document][source]¶

Load data into Document objects.

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]¶

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

Parameters

text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns

List of Documents.

Examples using ModernTreasuryLoader¶