Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/openai/resources/audio/transcriptions.ts>TranscriptionVerbose

Deno build of the official Typescript library for the OpenAI API.
Extremely Popular
Latest
interface TranscriptionVerbose
import { type TranscriptionVerbose } from "https://deno.land/x/openai@v4.66.1/resources/audio/transcriptions.ts";

Represents a verbose json transcription response returned by model, based on the provided input.

Properties

duration: string

The duration of the input audio.

language: string

The language of the input audio.

text: string

The transcribed text.

optional
segments: Array<TranscriptionSegment>

Segments of the transcribed text and their corresponding details.

optional
words: Array<TranscriptionWord>

Extracted words and their corresponding timestamps.