mirror of
https://github.com/run-llama/llama-hub.git
synced 2025-08-13 11:11:48 +00:00
Memos Loader
This loader fetchs text from self-hosted memos.
Usage
To use this loader, you need to specify the host where memos is deployed. If you need to filter, pass the corresponding parameter in load_data
.
from llama_index import download_loader
MemosReader = download_loader("MemosReader")
loader = MemosReader("https://demo.usememos.com/")
documents = loader.load_data({"creatorId": 101})
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.