Vlad Kooklev 04267ff037
Trello loader (#203)
Co-authored-by: Vlad Kooklev <vlad@Vlads-Air.home>
Co-authored-by: Jerry Liu <jerryjliu98@gmail.com>
2023-04-19 22:08:34 -07:00
..
2023-04-19 22:08:34 -07:00
2023-04-19 22:08:34 -07:00
2023-04-19 22:08:34 -07:00
2023-04-19 22:08:34 -07:00

Trello Loader

This loader loads documents from Trello. The user specifies an API key and API token to initialize the TrelloReader. They then specify a board_id to load in the corresponding Document objects representing Trello cards.

Usage

Here's an example usage of the TrelloReader.

from llama_index import download_loader
import os

TrelloReader = download_loader('TrelloReader')

reader = TrelloReader("<Trello_API_KEY>", "<Trello_API_TOKEN>")
documents = reader.load_data(board_id="<BOARD_ID>")

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.