Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

TTSEngine

Properties

Name Type Description Notes
name TTSEngineName [optional]
parameters Dict[str, object] Parameters for the TTS engine. The parameters are specific to the engine and are documented in the engine's documentation. [optional]

Example

from freeclimb.models.tts_engine import TTSEngine

# TODO update the JSON string below
json = "{}"
# create an instance of TTSEngine from a JSON string
tts_engine_instance = TTSEngine.from_json(json)
# print the JSON string representation of the object
print(TTSEngine.to_json())

# convert the object into a dict
tts_engine_dict = tts_engine_instance.to_dict()
# create an instance of TTSEngine from a dict
tts_engine_from_dict = TTSEngine.from_dict(tts_engine_dict)

[Back to Model list] [Back to API list] [Back to README]