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.
A lazy loader for Documents.
aload
()Load data into Document objects.
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]
- lazy_load() Iterator[Document] [source]#
Load and return documents from the Slack directory dump.
- Return type:
Iterator[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