langchain_core.chat_loaders.BaseChatLoader¶

class langchain_core.chat_loaders.BaseChatLoader[source]¶

Base class for chat loaders.

Methods

__init__()

lazy_load()

Lazy load the chat sessions.

load()

Eagerly load the chat sessions into memory.

__init__()¶
abstract lazy_load() Iterator[ChatSession][source]¶

Lazy load the chat sessions.

Return type

Iterator[ChatSession]

load() List[ChatSession][source]¶

Eagerly load the chat sessions into memory.

Return type

List[ChatSession]