Search Results for

    Show / Hide Table of Contents

    Class ElevenLabsVoiceRequest

    Inheritance
    object
    ElevenLabsAudioRequest
    ElevenLabsVoiceRequest
    TextToSpeechRequest
    VoiceChangeRequest
    Inherited Members
    ElevenLabsAudioRequest.OutputFormat
    ElevenLabsAudioRequest.AudioFormat
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.ElevenLabs
    Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
    Syntax
    public class ElevenLabsVoiceRequest : ElevenLabsAudioRequest

    Properties

    | Edit this page View Source

    EnableLogging

    Optional. When enable_logging is set to false zero retention mode will be used for the request. This will mean history features are unavailable for this request, including request stitching. Zero retention mode may only be used by enterprise customers.

    Declaration
    [QueryParameter("enable_logging")]
    public bool? EnableLogging { get; set; }
    Property Value
    Type Description
    bool?
    | Edit this page View Source

    Model

    Optional. SpeechRequest: Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for text to speech, you can check this using the can_do_text_to_speech property. Defaults to 'eleven_monolingual_v1'. VoiceChangerRequest: Identifier of the model that will be used, you can query them using GET /v1/models. The model needs to have support for speech to speech, you can check this using the can_do_voice_conversion property. Defaults to eleven_english_sts_v2

    Declaration
    [JsonProperty("model_id")]
    public string Model { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Voice

    Required. ID of the voice to be used. Use the Get voices endpoint list all the available voices.

    Declaration
    [PathParameter("0")]
    public string Voice { get; set; }
    Property Value
    Type Description
    string

    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