Class VoiceRequest
- Namespace
- Glitch9.AIDevKit.ElevenLabs
public class VoiceRequest : AudioRequest
- Inheritance
-
objectVoiceRequest
- Derived
- Inherited Members
Properties
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.
public bool? EnableLogging { get; set; }
Property Value
- bool?
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
public string Model { get; set; }
Property Value
- string
Voice
Required. ID of the voice to be used. Use the Get voices endpoint list all the available voices.
public string Voice { get; set; }
Property Value
- string