mirror of
https://github.com/run-llama/llama-hub.git
synced 2025-08-14 11:41:56 +00:00

Signed-off-by: Xuanwo <github@xuanwo.io> Co-authored-by: Jerry Liu <jerryjliu98@gmail.com>
980 B
980 B
Azblob Loader
This loader parses any file stored on Azblob.
All files are temporarily downloaded locally and subsequently parsed with SimpleDirectoryReader
. Hence, you may also specify a custom file_extractor
, relying on any of the loaders in this library (or your own)!
Azblob loader is based on
OpendalReader
.
Usage
from llama_index import download_loader
OpendalAzblobReader = download_loader("OpendalAzblobReader")
loader = OpendalAzblobReader(
container='container',
path='path/to/data/',
endpoint='[endpoint]',
account_name='[account_name]',
account_key='[account_key]',
)
documents = loader.load_data()
This loader is designed to be used as a way to load data into LlamaIndex and/or subsequently used as a Tool in a LangChain Agent. See here for examples.