From 8b2df48fab3a817adfb83e41463e7115597606bc Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Wed, 23 Apr 2025 16:43:54 -0400 Subject: [PATCH] Fix DailyTransport bot name --- examples/fal-smart-turn/server/bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/fal-smart-turn/server/bot.py b/examples/fal-smart-turn/server/bot.py index 8f52c9905..78e188a05 100644 --- a/examples/fal-smart-turn/server/bot.py +++ b/examples/fal-smart-turn/server/bot.py @@ -238,8 +238,8 @@ async def bot(args: DailySessionArguments): transport = DailyTransport( args.room_url, args.token, - "Word Wrangler Bot", - DailyParams( + "Smart Turn Bot", + params=DailyParams( audio_in_filter=KrispFilter(), audio_out_enabled=True, camera_out_enabled=True, @@ -273,7 +273,7 @@ async def local_daily(): transport = DailyTransport( room_url, token, - bot_name="Bot", + "Smart Turn Bot", params=DailyParams( audio_out_enabled=True, camera_out_enabled=True,