Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -546,7 +546,6 @@ def app_img():
|
|
546 |
],
|
547 |
]
|
548 |
gr.Examples(examples=examples,
|
549 |
-
fn=Talker_response,
|
550 |
inputs=[
|
551 |
source_image,
|
552 |
preprocess_type,
|
@@ -620,9 +619,9 @@ if __name__ == "__main__":
|
|
620 |
tts = EdgeTTS()
|
621 |
gr.close_all()
|
622 |
demo_app = app()
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
demo = gr.TabbedInterface(interface_list = [demo_app],
|
627 |
tab_names = ["app"],
|
628 |
title = "Linly-Talker WebUI")
|
|
|
546 |
],
|
547 |
]
|
548 |
gr.Examples(examples=examples,
|
|
|
549 |
inputs=[
|
550 |
source_image,
|
551 |
preprocess_type,
|
|
|
619 |
tts = EdgeTTS()
|
620 |
gr.close_all()
|
621 |
demo_app = app()
|
622 |
+
demo_img = app_img()
|
623 |
+
demo_multi = app_multi()
|
624 |
+
demo_vits = app_vits()
|
625 |
demo = gr.TabbedInterface(interface_list = [demo_app],
|
626 |
tab_names = ["app"],
|
627 |
title = "Linly-Talker WebUI")
|