2023-03-06 11:49:42 -06:00
..
2023-03-06 11:49:42 -06:00

Intercom Loader

This loader fetches the text from Intercom help articles using the Intercom API. It also uses the BeautifulSoup library to parse the HTML and extract the text from the articles.

Usage

To use this loader, you need to pass in an Intercom account access token.

from llama_index import download_loader

IntercomReader = download_loader("IntercomReader")

loader = IntercomReader(intercom_access_token="my_access_token")
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.