mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
20 lines
452 B
Python
20 lines
452 B
Python
|
"""**Chat Loaders** load chat messages from common communications platforms.
|
||
|
|
||
|
Load chat messages from various
|
||
|
communications platforms such as Facebook Messenger, Telegram, and
|
||
|
WhatsApp. The loaded chat messages can be used for fine-tuning models.
|
||
|
|
||
|
**Class hierarchy:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
BaseChatLoader --> <name>ChatLoader # Examples: WhatsAppChatLoader, IMessageChatLoader
|
||
|
|
||
|
**Main helpers:**
|
||
|
|
||
|
.. code-block::
|
||
|
|
||
|
ChatSession
|
||
|
|
||
|
""" # noqa: E501
|