AssemblyAIAudioLoaderById#

class langchain_community.document_loaders.assemblyai.AssemblyAIAudioLoaderById(transcript_id: str, api_key: str, transcript_format: TranscriptFormat)[来源]#

加载AssemblyAI音频转录。

它使用AssemblyAI API获取现有的转录文本,并根据指定的格式将转录的文本加载到一个或多个文档中。

初始化 AssemblyAI AssemblyAIAudioLoaderById。

Parameters:
  • transcript_id (str) – 现有转录的ID。

  • transcript_format (TranscriptFormat) – 使用的转录格式。 有关更多信息,请参见类 TranscriptFormat

  • api_key (str) – AssemblyAI API 密钥。

方法

__init__(transcript_id, api_key, ...)

初始化 AssemblyAI AssemblyAIAudioLoaderById。

alazy_load()

文档的懒加载器。

aload()

将数据加载到Document对象中。

lazy_load()

将数据加载到Document对象中。

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

加载文档并将其分割成块。

__init__(transcript_id: str, api_key: str, transcript_format: TranscriptFormat)[source]#

初始化 AssemblyAI AssemblyAIAudioLoaderById。

Parameters:
  • transcript_id (str) – 现有转录的ID。

  • transcript_format (TranscriptFormat) – 使用的转录格式。 有关更多信息,请参见类 TranscriptFormat

  • api_key (str) – AssemblyAI API 密钥。

async alazy_load() AsyncIterator[Document]#

文档的懒加载器。

Return type:

AsyncIterator[Document]

async aload() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

lazy_load() Iterator[Document][source]#

将数据加载到Document对象中。

Return type:

迭代器[文档]

load() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

load_and_split(text_splitter: TextSplitter | None = None) list[Document]#

加载文档并将其分割成块。块以文档形式返回。

不要重写此方法。它应该被视为已弃用!

Parameters:

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

Returns:

文档列表。

Return type:

列表[Document]