Update app.py
Browse files
app.py
CHANGED
@@ -69,11 +69,12 @@ async def create_demo():
|
|
69 |
description=description,
|
70 |
article="Experience the power of Edge TTS for text-to-speech conversion, and explore our advanced Text-to-Video Converter for even more creative possibilities!",
|
71 |
analytics_enabled=False,
|
72 |
-
allow_flagging="manual"
|
|
|
73 |
)
|
74 |
return demo
|
75 |
|
76 |
# Run the application
|
77 |
if __name__ == "__main__":
|
78 |
demo = asyncio.run(create_demo())
|
79 |
-
demo.launch()
|
|
|
69 |
description=description,
|
70 |
article="Experience the power of Edge TTS for text-to-speech conversion, and explore our advanced Text-to-Video Converter for even more creative possibilities!",
|
71 |
analytics_enabled=False,
|
72 |
+
allow_flagging="manual",
|
73 |
+
api_name=None
|
74 |
)
|
75 |
return demo
|
76 |
|
77 |
# Run the application
|
78 |
if __name__ == "__main__":
|
79 |
demo = asyncio.run(create_demo())
|
80 |
+
demo.launch(show_api=False)
|