Table of Contents

Class VerboseTranscript

Namespace
Glitch9.AIDevKit

Represents a verbose json transcription response returned by model, based on the provided input. Used by OpenAI, GroqCloud, and other compatible services.

public class VerboseTranscript : Transcript, IGeneratedOutput
Inheritance
object
VerboseTranscript
Implements
Inherited Members

Properties

Duration

The duration of the input audio.

public long Duration { get; set; }

Property Value

long

Language

The language of the input audio.

public override SystemLanguage Language { get; set; }

Property Value

SystemLanguage

Segments

Segments of the transcribed text and their corresponding details.

public SegmentObject[] Segments { get; set; }

Property Value

SegmentObject[]

Text

The transcribed text.

public override string Text { get; set; }

Property Value

string

Words

Extracted words and their corresponding timestamps.

public WordObject[] Words { get; set; }

Property Value

WordObject[]