From 41ae9b4f4eb7561c5ea0ab5cd80d555c2e9b89a6 Mon Sep 17 00:00:00 2001 From: anish-work Date: Mon, 5 Aug 2024 17:50:39 +0530 Subject: [PATCH] replace enableVideoLipsync with autoPlayResponses --- daras_ai_v2/bot_integration_widgets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daras_ai_v2/bot_integration_widgets.py b/daras_ai_v2/bot_integration_widgets.py index 4958f389d..c1f55cc14 100644 --- a/daras_ai_v2/bot_integration_widgets.py +++ b/daras_ai_v2/bot_integration_widgets.py @@ -375,7 +375,7 @@ def web_widget_config(bi: BotIntegration, user: AppUser | None): mode="inline", showSources=True, enablePhotoUpload=False, - enableLipsyncVideo=False, + autoPlayResponses=True, enableAudioMessage=True, branding=( dict(showPoweredByGooey=True) @@ -397,8 +397,8 @@ def web_widget_config(bi: BotIntegration, user: AppUser | None): config["enableAudioMessage"] = gui.checkbox( "Enable Audio Message", value=config["enableAudioMessage"] ) - config["enableLipsyncVideo"] = gui.checkbox( - "Enable Lipsync Video", value=config["enableLipsyncVideo"] + config["autoPlayResponses"] = gui.checkbox( + "Auto-play responses", value=config["autoPlayResponses"] ) # config["branding"]["showPoweredByGooey"] = gui.checkbox( # "Show Powered By Gooey", value=config["branding"]["showPoweredByGooey"]