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
    ITextSource
    Inherited Members
    Transcript.Logprobs
    Transcript.Translation(string)
    Transcript.ToString()
    Transcript.GetTextSource()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: Glitch9.AIDevKit
    Assembly: Glitch9.AIDevKit.dll
    Syntax
    public sealed class VerboseTranscript : Transcript, ITextSource

    Properties

    | Edit this page View Source

    Duration

    The duration of the input audio.

    Declaration
    [JsonProperty("duration")]
    public long Duration { get; set; }
    Property Value
    Type Description
    long
    | Edit this page View Source

    Language

    The language of the input audio.

    Declaration
    [JsonProperty("language")]
    public override SystemLanguage Language { get; set; }
    Property Value
    Type Description
    SystemLanguage
    Overrides
    Transcript.Language
    | Edit this page View Source

    Segments

    Segments of the transcribed text and their corresponding details.

    Declaration
    [JsonProperty("segments")]
    public VerboseTranscript.Segment[] Segments { get; set; }
    Property Value
    Type Description
    Segment[]
    | Edit this page View Source

    Text

    The transcribed text.

    Declaration
    [JsonProperty("text")]
    public override string Text { get; set; }
    Property Value
    Type Description
    string
    Overrides
    Transcript.Text
    | Edit this page View Source

    Words

    Extracted words and their corresponding timestamps.

    Declaration
    [JsonProperty("words")]
    public VerboseTranscript.WordObject[] Words { get; set; }
    Property Value
    Type Description
    WordObject[]

    Implements

    ITextSource

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation