From 63c7a1aead1a536ff6e86eb7f26855363e61d921 Mon Sep 17 00:00:00 2001 From: James Hush Date: Thu, 17 Apr 2025 11:15:50 +0800 Subject: [PATCH] Cartesia spell tag demo --- examples/foundational/01-say-one-thing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/foundational/01-say-one-thing.py b/examples/foundational/01-say-one-thing.py index 14bbe6a44..267c50e6b 100644 --- a/examples/foundational/01-say-one-thing.py +++ b/examples/foundational/01-say-one-thing.py @@ -42,7 +42,7 @@ async def run_bot(webrtc_connection: SmallWebRTCConnection): # Register an event handler so we can play the audio when the client joins @transport.event_handler("on_client_connected") async def on_client_connected(transport, client): - await task.queue_frames([TTSSpeakFrame(f"Hello there!"), EndFrame()]) + await task.queue_frames([TTSSpeakFrame(f"Hello there!"), EndFrame()]) runner = PipelineRunner(handle_sigint=False)