SlackDirectoryLoader#

class langchain_community.document_loaders.slack_directory.SlackDirectoryLoader(zip_path: str | Path, workspace_url: str | None = None)[source]#

Load from a Slack directory dump.

Initialize the SlackDirectoryLoader.

Parameters:
  • zip_path (str) – The path to the Slack directory dump zip file.

  • workspace_url (Optional[str]) – The Slack workspace URL. Including the URL will turn sources into links. Defaults to None.

Methods

__init__(zip_path[,Β workspace_url])

Initialize the SlackDirectoryLoader.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

Load and return documents from the Slack directory dump.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(zip_path: str | Path, workspace_url: str | None = None)[source]#

Initialize the SlackDirectoryLoader.

Parameters:
  • zip_path (str) – The path to the Slack directory dump zip file.

  • workspace_url (Optional[str]) – The Slack workspace URL. Including the URL will turn sources into links. Defaults to None.

async alazy_load() β†’ AsyncIterator[Document]#

A lazy loader for Documents.

Return type:

AsyncIterator[Document]

async aload() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

lazy_load() β†’ Iterator[Document][source]#

Load and return documents from the Slack directory dump.

Return type:

Iterator[Document]

load() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

load_and_split(text_splitter: TextSplitter | None = None) β†’ list[Document]#

Load Documents and split into chunks. Chunks are returned as Documents.

Do not override this method. It should be considered to be deprecated!

Parameters:

text_splitter (Optional[TextSplitter]) – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns:

List of Documents.

Return type:

list[Document]

Examples using SlackDirectoryLoader