⚠️ Deprecated ⚠️

This feature is deprecated and will be removed in the future.

It is not recommended for use.

  • Import from "@langchain/community/document_loaders/web/assemblyai" instead. This entrypoint will be removed in 0.3.0. Transcribe audio and load the sentences of the transcript, creating a document for each sentence.

Hierarchy

  • CreateTranscriptLoader
    • AudioTranscriptSentencesLoader

Constructors

  • Transcribe audio or retrieve an existing transcript by its ID.

    Parameters

    • params: string | TranscriptParams | TranscribeParams

      The parameters to transcribe audio, or the ID of the transcript to retrieve.

    • Optional assemblyAIOptions: AssemblyAIOptions

      The options to configure the AssemblyAI loader. Configure the assemblyAIOptions.apiKey with your AssemblyAI API key, or configure it as the ASSEMBLYAI_API_KEY environment variable.

    Returns AudioTranscriptSentencesLoader

Properties

client: AssemblyAI
transcribeParams?: TranscriptParams | TranscribeParams
transcriptId?: string

Methods

  • Transcribe audio and load the sentences of the transcript, creating a document for each sentence.

    Returns Promise<Document<TranscriptSentence>[]>

    A promise that resolves to an array of documents, each containing a sentence of the transcript.

Generated using TypeDoc