This loader loads documents from a markdown directory (for instance, an Obsidian vault).
Here's an example usage of the ObsidianReader.
from llama_index import download_loader
import os
ObsidianReader = download_loader('ObsidianReader')
documents = ObsidianReader('/path/to/dir').load_data() # Returns list of documentsThis 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.