From da8c67114acd8a79f1a1f298f1a685c26ff5bad2 Mon Sep 17 00:00:00 2001 From: padillamt Date: Thu, 24 Jul 2025 13:35:29 -0700 Subject: [PATCH] mtpadilla: make streaming the default for example --- examples/foundational/07aa-interruptible-inworld-http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/foundational/07aa-interruptible-inworld-http.py b/examples/foundational/07aa-interruptible-inworld-http.py index dbfbcc878..53e3c14b3 100644 --- a/examples/foundational/07aa-interruptible-inworld-http.py +++ b/examples/foundational/07aa-interruptible-inworld-http.py @@ -60,7 +60,7 @@ async def run_example(transport: BaseTransport, _: argparse.Namespace, handle_si # Inworld TTS Service - Unified streaming and non-streaming # Set streaming=True for real-time audio, streaming=False for complete audio generation - streaming = False # Toggle this to switch between modes + streaming = True # Toggle this to switch between modes tts = InworldTTSService( api_key=os.getenv("INWORLD_API_KEY", ""),