Class: Vapi::CartesiaVoice
- Inherits:
-
Object
- Object
- Vapi::CartesiaVoice
- Defined in:
- lib/vapi_server_sdk/types/cartesia_voice.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#caching_enabled ⇒ Boolean
readonly
This is the flag to toggle voice caching for the assistant.
-
#chunk_plan ⇒ Vapi::ChunkPlan
readonly
This is the plan for chunking the model output before it is sent to the voice provider.
-
#experimental_controls ⇒ Vapi::CartesiaExperimentalControls
readonly
Experimental controls for Cartesia voice generation.
-
#fallback_plan ⇒ Vapi::FallbackPlan
readonly
This is the plan for voice provider fallbacks in the event that the primary voice provider fails.
-
#language ⇒ Vapi::CartesiaVoiceLanguage
readonly
This is the language that will be used.
-
#model ⇒ Vapi::CartesiaVoiceModel
readonly
This is the model that will be used.
-
#voice_id ⇒ String
readonly
The ID of the particular voice you want to use.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Vapi::CartesiaVoice
Deserialize a JSON object to an instance of CartesiaVoice.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(voice_id:, caching_enabled: OMIT, model: OMIT, language: OMIT, experimental_controls: OMIT, chunk_plan: OMIT, fallback_plan: OMIT, additional_properties: nil) ⇒ Vapi::CartesiaVoice constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of CartesiaVoice to a JSON object.
Constructor Details
#initialize(voice_id:, caching_enabled: OMIT, model: OMIT, language: OMIT, experimental_controls: OMIT, chunk_plan: OMIT, fallback_plan: OMIT, additional_properties: nil) ⇒ Vapi::CartesiaVoice
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 52 def initialize(voice_id:, caching_enabled: OMIT, model: OMIT, language: OMIT, experimental_controls: OMIT, chunk_plan: OMIT, fallback_plan: OMIT, additional_properties: nil) @caching_enabled = caching_enabled if caching_enabled != OMIT @voice_id = voice_id @model = model if model != OMIT @language = language if language != OMIT @experimental_controls = experimental_controls if experimental_controls != OMIT @chunk_plan = chunk_plan if chunk_plan != OMIT @fallback_plan = fallback_plan if fallback_plan != OMIT @additional_properties = additional_properties @_field_set = { "cachingEnabled": caching_enabled, "voiceId": voice_id, "model": model, "language": language, "experimentalControls": experimental_controls, "chunkPlan": chunk_plan, "fallbackPlan": fallback_plan }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
32 33 34 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 32 def additional_properties @additional_properties end |
#caching_enabled ⇒ Boolean (readonly)
Returns This is the flag to toggle voice caching for the assistant.
14 15 16 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 14 def caching_enabled @caching_enabled end |
#chunk_plan ⇒ Vapi::ChunkPlan (readonly)
Returns This is the plan for chunking the model output before it is sent to the voice provider.
27 28 29 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 27 def chunk_plan @chunk_plan end |
#experimental_controls ⇒ Vapi::CartesiaExperimentalControls (readonly)
Returns Experimental controls for Cartesia voice generation.
24 25 26 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 24 def experimental_controls @experimental_controls end |
#fallback_plan ⇒ Vapi::FallbackPlan (readonly)
Returns This is the plan for voice provider fallbacks in the event that the primary voice provider fails.
30 31 32 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 30 def fallback_plan @fallback_plan end |
#language ⇒ Vapi::CartesiaVoiceLanguage (readonly)
Returns This is the language that will be used. This is optional and will default to the correct language for the voiceId.
22 23 24 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 22 def language @language end |
#model ⇒ Vapi::CartesiaVoiceModel (readonly)
Returns This is the model that will be used. This is optional and will default to the correct model for the voiceId.
19 20 21 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 19 def model @model end |
#voice_id ⇒ String (readonly)
Returns The ID of the particular voice you want to use.
16 17 18 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 16 def voice_id @voice_id end |
Class Method Details
.from_json(json_object:) ⇒ Vapi::CartesiaVoice
Deserialize a JSON object to an instance of CartesiaVoice
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 79 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) caching_enabled = parsed_json["cachingEnabled"] voice_id = parsed_json["voiceId"] model = parsed_json["model"] language = parsed_json["language"] if parsed_json["experimentalControls"].nil? experimental_controls = nil else experimental_controls = parsed_json["experimentalControls"].to_json experimental_controls = Vapi::CartesiaExperimentalControls.from_json(json_object: experimental_controls) end if parsed_json["chunkPlan"].nil? chunk_plan = nil else chunk_plan = parsed_json["chunkPlan"].to_json chunk_plan = Vapi::ChunkPlan.from_json(json_object: chunk_plan) end if parsed_json["fallbackPlan"].nil? fallback_plan = nil else fallback_plan = parsed_json["fallbackPlan"].to_json fallback_plan = Vapi::FallbackPlan.from_json(json_object: fallback_plan) end new( caching_enabled: caching_enabled, voice_id: voice_id, model: model, language: language, experimental_controls: experimental_controls, chunk_plan: chunk_plan, fallback_plan: fallback_plan, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
129 130 131 132 133 134 135 136 137 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 129 def self.validate_raw(obj:) obj.caching_enabled&.is_a?(Boolean) != false || raise("Passed value for field obj.caching_enabled is not the expected type, validation failed.") obj.voice_id.is_a?(String) != false || raise("Passed value for field obj.voice_id is not the expected type, validation failed.") obj.model&.is_a?(Vapi::CartesiaVoiceModel) != false || raise("Passed value for field obj.model is not the expected type, validation failed.") obj.language&.is_a?(Vapi::CartesiaVoiceLanguage) != false || raise("Passed value for field obj.language is not the expected type, validation failed.") obj.experimental_controls.nil? || Vapi::CartesiaExperimentalControls.validate_raw(obj: obj.experimental_controls) obj.chunk_plan.nil? || Vapi::ChunkPlan.validate_raw(obj: obj.chunk_plan) obj.fallback_plan.nil? || Vapi::FallbackPlan.validate_raw(obj: obj.fallback_plan) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of CartesiaVoice to a JSON object
119 120 121 |
# File 'lib/vapi_server_sdk/types/cartesia_voice.rb', line 119 def to_json(*_args) @_field_set&.to_json end |