LarkSuiteWikiLoader#

class langchain_community.document_loaders.larksuite.LarkSuiteWikiLoader(domain: str, access_token: str, wiki_id: str)[source]#

Load from LarkSuite (FeiShu) wiki.

Initialize with domain, access_token (tenant / user), and wiki_id.

Parameters:
  • domain (str) – The domain to load the LarkSuite.

  • access_token (str) – The access_token to use.

  • wiki_id (str) – The wiki_id to load.

Methods

__init__(domain,Β access_token,Β wiki_id)

Initialize with domain, access_token (tenant / user), and wiki_id.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

Lazy load LarkSuite (FeiShu) wiki document.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(domain: str, access_token: str, wiki_id: str)[source]#

Initialize with domain, access_token (tenant / user), and wiki_id.

Parameters:
  • domain (str) – The domain to load the LarkSuite.

  • access_token (str) – The access_token to use.

  • wiki_id (str) – The wiki_id to load.

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]#

Lazy load LarkSuite (FeiShu) wiki document.

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 LarkSuiteWikiLoader