langchain_community.document_loaders.larksuite
.LarkSuiteDocLoader¶
- class langchain_community.document_loaders.larksuite.LarkSuiteDocLoader(domain: str, access_token: str, document_id: str)[source]¶
Load from LarkSuite (FeiShu).
Initialize with domain, access_token (tenant / user), and document_id.
- Parameters
domain (str) – The domain to load the LarkSuite.
access_token (str) – The access_token to use.
document_id (str) – The document_id to load.
Methods
__init__
(domain, access_token, document_id)Initialize with domain, access_token (tenant / user), and document_id.
A lazy loader for Documents.
Lazy load LarkSuite (FeiShu) document.
load
()Load data into Document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(domain: str, access_token: str, document_id: str)[source]¶
Initialize with domain, access_token (tenant / user), and document_id.
- Parameters
domain (str) – The domain to load the LarkSuite.
access_token (str) – The access_token to use.
document_id (str) – The document_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) 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]