langchain_community.document_loaders.azure_ai_data
.AzureAIDataLoader¶
- class langchain_community.document_loaders.azure_ai_data.AzureAIDataLoader(url: str, glob: Optional[str] = None)[source]¶
Load from Azure AI Data.
Initialize with URL to a data asset or storage location .
Attributes
url
URL to the data asset or storage location.
glob_pattern
Optional glob pattern to select files.
Methods
__init__
(url[, glob])Initialize with URL to a data asset or storage location
A lazy loader for Documents.
load
()Load documents.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(url: str, glob: Optional[str] = None)[source]¶
Initialize with URL to a data asset or storage location .
- 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.