Class VerboseTranscript
Represents a verbose json transcription response returned by model, based on the provided input. Used by OpenAI, GroqCloud, and other compatible services.
Inherited Members
Namespace: Glitch9.AIDevKit
Assembly: .dll
Syntax
public class VerboseTranscript : Transcript, IGeneratedText, IGeneratedResult
Properties
Duration
The duration of the input audio.
Declaration
public long Duration { get; set; }
Property Value
Type | Description |
---|---|
long |
Language
The language of the input audio.
Declaration
public override SystemLanguage Language { get; set; }
Property Value
Type | Description |
---|---|
SystemLanguage |
Overrides
Segments
Segments of the transcribed text and their corresponding details.
Declaration
public SegmentObject[] Segments { get; set; }
Property Value
Type | Description |
---|---|
SegmentObject[] |
Text
The transcribed text.
Declaration
public override string Text { get; set; }
Property Value
Type | Description |
---|---|
string |
Overrides
Words
Extracted words and their corresponding timestamps.
Declaration
public WordObject[] Words { get; set; }
Property Value
Type | Description |
---|---|
WordObject[] |