langchain_community.document_loaders.parsers.audio.OpenAIWhisperParser¶

class langchain_community.document_loaders.parsers.audio.OpenAIWhisperParser(api_key: Optional[str] = None)[source]¶

Transcribe and parse audio files. Audio transcription is with OpenAI Whisper model.

Methods

__init__([api_key])

lazy_parse(blob)

Lazily parse the blob.

parse(blob)

Eagerly parse the blob into a document or documents.

__init__(api_key: Optional[str] = None)[source]¶
lazy_parse(blob: Blob) Iterator[Document][source]¶

Lazily parse the blob.

parse(blob: Blob) List[Document]¶

Eagerly parse the blob into a document or documents.

This is a convenience method for interactive development environment.

Production applications should favor the lazy_parse method instead.

Subclasses should generally not over-ride this parse method.

Parameters

blob – Blob instance

Returns

List of documents

Examples using OpenAIWhisperParser¶