langchain_community.document_loaders.larksuite
.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: Optional[TextSplitter] = 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]