langchain_community.document_loaders.mastodon.MastodonTootsLoader

class langchain_community.document_loaders.mastodon.MastodonTootsLoader(mastodon_accounts: Sequence[str], number_toots: Optional[int] = 100, exclude_replies: bool = False, access_token: Optional[str] = None, api_base_url: str = 'https://mastodon.social')[source]

加载 Mastodon 的 ‘toots’。

实例化 Mastodon toots 加载器。

参数
  • mastodon_accounts (Sequence[str]) – 要查询的 Mastodon 账户列表。

  • number_toots (Optional[int]) – 每个账户要抽取多少个 toots。默认值是 100。

  • exclude_replies (bool) – 是否排除从中加载的回复 toots。默认值是 False。

  • access_token (Optional[str]) – 如果作为 Mastodon 应用加载 toots 的访问令牌。也可以通过环境变量“MASTODON_ACCESS_TOKEN”指定。

  • api_base_url (str) – 与非默认接口对话的 Mastodon API 基础 URL。默认为 “https://mastodon.social”。

方法

__init__(mastodon_accounts[, number_toots, ...])

实例化 Mastodon toots 加载器。

alazy_load()

Documents 的懒加载。

aload()

将数据加载到 Document 对象中。

lazy_load()

将 toots 加载到文档中。

load()

将数据加载到 Document 对象中。

load_and_split([text_splitter])

加载 Documents 并分割成块。

__init__(mastodon_accounts: Sequence[str], number_toots: Optional[int] = 100, exclude_replies: bool = False, access_token: Optional[str] = None, api_base_url: str = 'https://mastodon.social')[来源]

实例化 Mastodon toots 加载器。

参数
  • mastodon_accounts (Sequence[str]) – 要查询的 Mastodon 账户列表。

  • number_toots (Optional[int]) – 每个账户要抽取多少个 toots。默认值是 100。

  • exclude_replies (bool) – 是否排除从中加载的回复 toots。默认值是 False。

  • access_token (Optional[str]) – 如果作为 Mastodon 应用加载 toots 的访问令牌。也可以通过环境变量“MASTODON_ACCESS_TOKEN”指定。

  • api_base_url (str) – 与非默认接口对话的 Mastodon API 基础 URL。默认为 “https://mastodon.social”。

async alazy_load() AsyncIterator[Document]

Documents 的懒加载。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将数据加载到 Document 对象中。

返回类型

List[Document]

lazy_load() Iterator[Document][来源]

将 toots 加载到文档中。

返回类型

Iterator[Document]

load() List[Document]

将数据加载到 Document 对象中。

返回类型

List[Document]

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]

加载文档并分割为块。块将以Document的形式返回。

不要重写此方法。应考虑将其废弃!

参数

text_splitter (可选[TextSplitter]) – 用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。

返回

文档列表。

返回类型

List[Document]

MastodonTootsLoader应用示例