2023-05-20 16:36:05 -07:00
..
2023-05-20 16:36:05 -07:00
2023-05-20 16:36:05 -07:00
2023-05-20 16:36:05 -07:00
2023-05-20 16:36:05 -07:00

Monday Loader

This loader loads data from monday.com. The user specifies an API token to initialize the MondayReader. They then specify a monday.com board id to load in the corresponding Document objects.

Usage

Here's an example usage of the MondayReader.

from llama_index import download_loader

MondayReader = download_loader('MondayReader')

reader = MondayReader("<monday_api_token>")
documents = reader.load_data("<board_id: int>")

Check out monday.com API docs - here

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.