Class: Vapi::RimeAiVoice
- Inherits:
-
Object
- Object
- Vapi::RimeAiVoice
- Defined in:
- lib/vapi_server_sdk/types/rime_ai_voice.rb
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#chunk_plan ⇒ Vapi::ChunkPlan
readonly
This is the plan for chunking the model output before it is sent to the voice provider.
-
#filler_injection_enabled ⇒ Boolean
readonly
This determines whether fillers are injected into the model output before inputting it into the voice provider.
-
#model ⇒ Vapi::RimeAiVoiceModel
readonly
This is the model that will be used.
-
#speed ⇒ Float
readonly
This is the speed multiplier that will be used.
-
#voice_id ⇒ Vapi::RimeAiVoiceId
readonly
This is the provider-specific ID that will be used.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Vapi::RimeAiVoice
Deserialize a JSON object to an instance of RimeAiVoice.
-
.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:, filler_injection_enabled: OMIT, model: OMIT, speed: OMIT, chunk_plan: OMIT, additional_properties: nil) ⇒ Vapi::RimeAiVoice constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of RimeAiVoice to a JSON object.
Constructor Details
#initialize(voice_id:, filler_injection_enabled: OMIT, model: OMIT, speed: OMIT, chunk_plan: OMIT, additional_properties: nil) ⇒ Vapi::RimeAiVoice
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 42 def initialize(voice_id:, filler_injection_enabled: OMIT, model: OMIT, speed: OMIT, chunk_plan: OMIT, additional_properties: nil) @filler_injection_enabled = filler_injection_enabled if filler_injection_enabled != OMIT @voice_id = voice_id @model = model if model != OMIT @speed = speed if speed != OMIT @chunk_plan = chunk_plan if chunk_plan != OMIT @additional_properties = additional_properties @_field_set = { "fillerInjectionEnabled": filler_injection_enabled, "voiceId": voice_id, "model": model, "speed": speed, "chunkPlan": chunk_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.
25 26 27 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 25 def additional_properties @additional_properties end |
#chunk_plan ⇒ Vapi::ChunkPlan (readonly)
Returns This is the plan for chunking the model output before it is sent to the voice provider.
23 24 25 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 23 def chunk_plan @chunk_plan end |
#filler_injection_enabled ⇒ Boolean (readonly)
Returns This determines whether fillers are injected into the model output before inputting it into the voice provider. Default ‘false` because you can achieve better results with prompting the model.
14 15 16 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 14 def filler_injection_enabled @filler_injection_enabled end |
#model ⇒ Vapi::RimeAiVoiceModel (readonly)
Returns This is the model that will be used. Defaults to ‘v1’ when not specified.
18 19 20 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 18 def model @model end |
#speed ⇒ Float (readonly)
Returns This is the speed multiplier that will be used.
20 21 22 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 20 def speed @speed end |
#voice_id ⇒ Vapi::RimeAiVoiceId (readonly)
Returns This is the provider-specific ID that will be used.
16 17 18 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 16 def voice_id @voice_id end |
Class Method Details
.from_json(json_object:) ⇒ Vapi::RimeAiVoice
Deserialize a JSON object to an instance of RimeAiVoice
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 65 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) filler_injection_enabled = parsed_json["fillerInjectionEnabled"] if parsed_json["voiceId"].nil? voice_id = nil else voice_id = parsed_json["voiceId"].to_json voice_id = Vapi::RimeAiVoiceId.from_json(json_object: voice_id) end model = parsed_json["model"] speed = parsed_json["speed"] 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 new( filler_injection_enabled: filler_injection_enabled, voice_id: voice_id, model: model, speed: speed, chunk_plan: chunk_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.
106 107 108 109 110 111 112 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 106 def self.validate_raw(obj:) obj.filler_injection_enabled&.is_a?(Boolean) != false || raise("Passed value for field obj.filler_injection_enabled is not the expected type, validation failed.") Vapi::RimeAiVoiceId.validate_raw(obj: obj.voice_id) obj.model&.is_a?(Vapi::RimeAiVoiceModel) != false || raise("Passed value for field obj.model is not the expected type, validation failed.") obj.speed&.is_a?(Float) != false || raise("Passed value for field obj.speed is not the expected type, validation failed.") obj.chunk_plan.nil? || Vapi::ChunkPlan.validate_raw(obj: obj.chunk_plan) end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of RimeAiVoice to a JSON object
96 97 98 |
# File 'lib/vapi_server_sdk/types/rime_ai_voice.rb', line 96 def to_json(*_args) @_field_set&.to_json end |