Skip to content

Commit

Permalink
replace enableVideoLipsync with autoPlayResponses
Browse files Browse the repository at this point in the history
  • Loading branch information
anish-work authored and devxpy committed Aug 12, 2024
1 parent ec84087 commit 41ae9b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions daras_ai_v2/bot_integration_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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"]
Expand Down

0 comments on commit 41ae9b4

Please sign in to comment.