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"]