Update app.py
Browse files
app.py
CHANGED
@@ -144,4 +144,15 @@ async def create_demo():
|
|
144 |
description=description,
|
145 |
article="Experience the power of Edge TTS with video integration!",
|
146 |
analytics_enabled=False,
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
description=description,
|
145 |
article="Experience the power of Edge TTS with video integration!",
|
146 |
analytics_enabled=False,
|
147 |
+
allow_flagging="manual",
|
148 |
+
api_name=None
|
149 |
+
)
|
150 |
+
return demo
|
151 |
+
|
152 |
+
async def main():
|
153 |
+
demo = await create_demo()
|
154 |
+
demo.queue(default_concurrency_limit=5)
|
155 |
+
demo.launch(show_api=False)
|
156 |
+
|
157 |
+
if __name__ == "__main__":
|
158 |
+
asyncio.run(main())
|