diff --git a/examples/foundational/07zb-interruptible-inworld-http.py b/examples/foundational/07zb-interruptible-inworld-http.py index e8e7f293d..3d06a055a 100644 --- a/examples/foundational/07zb-interruptible-inworld-http.py +++ b/examples/foundational/07zb-interruptible-inworld-http.py @@ -61,7 +61,6 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments): streaming=True, settings=InworldHttpTTSService.Settings( voice="Ashley", - model="inworld-tts-1", ), # Set to False for non-streaming mode or True for streaming mode. ) diff --git a/examples/foundational/07zb-interruptible-inworld.py b/examples/foundational/07zb-interruptible-inworld.py index 2cbbedc91..7db6edbee 100644 --- a/examples/foundational/07zb-interruptible-inworld.py +++ b/examples/foundational/07zb-interruptible-inworld.py @@ -56,7 +56,6 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments): api_key=os.getenv("INWORLD_API_KEY", ""), settings=InworldTTSService.Settings( voice="Ashley", - model="inworld-tts-1", temperature=1.1, ), )