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.
A lazy loader for Documents.
aload
()Load data into Document objects.
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]
- lazy_load() Iterator[Document] [source]#
Lazy load LarkSuite (FeiShu) wiki document.
- 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 LarkSuiteWikiLoader