PsychicLoader#
- class langchain_community.document_loaders.psychic.PsychicLoader(
- api_key: str,
- account_id: str,
- connector_id: str | None = None,
Load from Psychic.dev.
Initialize with API key, connector id, and account id.
- Parameters:
api_key (str) – The Psychic API key.
account_id (str) – The Psychic account id.
connector_id (str | None) – The Psychic connector id.
Methods
__init__
(api_key, account_id[, connector_id])Initialize with API key, connector id, and account id.
A lazy loader for Documents.
aload
()Load data into Document objects.
A lazy loader for Documents.
load
()Load data into Document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(
- api_key: str,
- account_id: str,
- connector_id: str | None = None,
Initialize with API key, connector id, and account id.
- Parameters:
api_key (str) – The Psychic API key.
account_id (str) – The Psychic account id.
connector_id (str | None) – The Psychic connector id.
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- lazy_load() Iterator[Document] [source]#
A lazy loader for Documents.
- Return type:
Iterator[Document]
- load_and_split(
- text_splitter: TextSplitter | None = None,
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 PsychicLoader