AI DevKit
Search Results for

    Show / Hide Table of Contents

    Class VerboseTranscript

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

    Inheritance
    object
    Transcript
    VerboseTranscript
    Implements
    IGeneratedText
    IGeneratedResult
    Inherited Members
    Transcript.Count
    Transcript.Usage
    Transcript.ToString()
    Transcript.ToDeltaTextArray()
    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
    Transcript.Language

    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
    Transcript.Text

    Words

    Extracted words and their corresponding timestamps.

    Declaration
    public WordObject[] Words { get; set; }
    Property Value
    Type Description
    WordObject[]

    Implements

    IGeneratedText
    IGeneratedResult
    In this article
    Back to top Generated by DocFX