Class: AudioTranscriptReader
Transcribe audio and read the transcript as a document using AssemblyAI.
Extends
AssemblyAIReader
Constructors
new AudioTranscriptReader()
new AudioTranscriptReader(
assemblyAIOptions
?):AudioTranscriptReader
Creates a new AssemblyAI Reader.
Parameters
• assemblyAIOptions?: Partial
<BaseServiceParams
>
The options to configure the AssemblyAI Reader.
Configure the assemblyAIOptions.apiKey
with your AssemblyAI API key, or configure it as the ASSEMBLYAI_API_KEY
environment variable.
Returns
Inherited from
AssemblyAIReader.constructor
Source
packages/core/src/readers/AssemblyAIReader.ts:26
Properties
client
protected
client:AssemblyAI
Inherited from
AssemblyAIReader.client
Source
packages/core/src/readers/AssemblyAIReader.ts:19
Methods
getTranscriptId()
protected
getTranscriptId(params
):Promise
<string
>
Parameters
• params: string
| TranscribeParams
Returns
Promise
<string
>
Inherited from
AssemblyAIReader.getTranscriptId
Source
packages/core/src/readers/AssemblyAIReader.ts:53
loadData()
Transcribe audio or get a transcript and load the transcript as a document using AssemblyAI.
Parameters
• params: string
| TranscribeParams
Parameters to transcribe an audio file or get an existing transcript.
Returns
Promise
<Document
<Metadata
>[]>
A promise that resolves to a single document containing the transcript text.
Overrides
AssemblyAIReader.loadData
Source
packages/core/src/readers/AssemblyAIReader.ts:71
transcribeOrGetTranscript()
protected
transcribeOrGetTranscript(params
):Promise
<Transcript
>
Parameters
• params: string
| TranscribeParams
Returns
Promise
<Transcript
>