From f9670b9601b229a1e9bf13d888a26524bdefcac7 Mon Sep 17 00:00:00 2001 From: filipi87 Date: Fri, 27 Mar 2026 14:23:20 -0300 Subject: [PATCH] Removing the models from the Inworld example so we can use the default model. --- examples/foundational/07zb-interruptible-inworld-http.py | 1 - examples/foundational/07zb-interruptible-inworld.py | 1 - 2 files changed, 2 deletions(-) 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, ), )