diff --git a/examples/text-to-speech/rest/file/async_hello_world/main.py b/examples/text-to-speech/rest/file/async_hello_world/main.py index 21445631..ab1c3940 100644 --- a/examples/text-to-speech/rest/file/async_hello_world/main.py +++ b/examples/text-to-speech/rest/file/async_hello_world/main.py @@ -26,7 +26,7 @@ async def main(): # STEP 2 Call the save method on the asyncspeak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = await deepgram.speak.asyncrest.v("1").save( diff --git a/examples/text-to-speech/rest/file/hello_world/main.py b/examples/text-to-speech/rest/file/hello_world/main.py index ef6e3429..b14b8a19 100644 --- a/examples/text-to-speech/rest/file/hello_world/main.py +++ b/examples/text-to-speech/rest/file/hello_world/main.py @@ -28,7 +28,7 @@ def main(): # STEP 2 Call the save method on the speak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = deepgram.speak.rest.v("1").save(filename, SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/file/legacy_dict_hello_world/main.py b/examples/text-to-speech/rest/file/legacy_dict_hello_world/main.py index 3c522bbd..06300975 100644 --- a/examples/text-to-speech/rest/file/legacy_dict_hello_world/main.py +++ b/examples/text-to-speech/rest/file/legacy_dict_hello_world/main.py @@ -26,7 +26,7 @@ def main(): # STEP 2 Call the save method on the speak property options = { - "model": "aura-asteria-en", + "model": "aura-2-thalia-en", } response = deepgram.speak.rest.v("1").save(filename, SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/file/woodchuck/main.py b/examples/text-to-speech/rest/file/woodchuck/main.py index 1f72661a..fb058e08 100644 --- a/examples/text-to-speech/rest/file/woodchuck/main.py +++ b/examples/text-to-speech/rest/file/woodchuck/main.py @@ -28,7 +28,7 @@ def main(): # STEP 2 Call the save method on the speak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = deepgram.speak.rest.v("1").save(filename, SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/memory/async_hello_world/main.py b/examples/text-to-speech/rest/memory/async_hello_world/main.py index ffd32969..1a1eb141 100644 --- a/examples/text-to-speech/rest/memory/async_hello_world/main.py +++ b/examples/text-to-speech/rest/memory/async_hello_world/main.py @@ -26,7 +26,7 @@ async def main(): # STEP 2 Call the save method on the asyncspeak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = await deepgram.speak.asyncrest.v("1").stream_memory( diff --git a/examples/text-to-speech/rest/memory/hello_world/main.py b/examples/text-to-speech/rest/memory/hello_world/main.py index 35288c00..18e04db7 100644 --- a/examples/text-to-speech/rest/memory/hello_world/main.py +++ b/examples/text-to-speech/rest/memory/hello_world/main.py @@ -28,7 +28,7 @@ def main(): # STEP 2 Call the save method on the speak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = deepgram.speak.rest.v("1").stream_memory(SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/raw/async_hello_world/main.py b/examples/text-to-speech/rest/raw/async_hello_world/main.py index 1f2cf0f0..42cf3366 100644 --- a/examples/text-to-speech/rest/raw/async_hello_world/main.py +++ b/examples/text-to-speech/rest/raw/async_hello_world/main.py @@ -30,7 +30,7 @@ async def main(): # STEP 2 Call the save method on the asyncspeak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = await deepgram.speak.asyncrest.v("1").stream_raw(SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/raw/hello_world/main.py b/examples/text-to-speech/rest/raw/hello_world/main.py index 2f8d6e0d..7d3f876e 100644 --- a/examples/text-to-speech/rest/raw/hello_world/main.py +++ b/examples/text-to-speech/rest/raw/hello_world/main.py @@ -29,7 +29,7 @@ def main(): # STEP 2 Call the save method on the speak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", ) response = deepgram.speak.rest.v("1").stream_raw(SPEAK_TEXT, options) diff --git a/examples/text-to-speech/rest/raw/hello_world_play/main.py b/examples/text-to-speech/rest/raw/hello_world_play/main.py index 3e84e9eb..e50caa5b 100644 --- a/examples/text-to-speech/rest/raw/hello_world_play/main.py +++ b/examples/text-to-speech/rest/raw/hello_world_play/main.py @@ -64,7 +64,7 @@ def main(): # STEP 2: Call the save method on the speak property options = SpeakOptions( - model="aura-asteria-en", + model="aura-2-thalia-en", encoding="linear16", container="none", sample_rate=48000,