Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -191,7 +191,7 @@ image_examples = [
|
|
| 191 |
["Extract the contents. [page].", "examples/2.jpg"],
|
| 192 |
]
|
| 193 |
|
| 194 |
-
with gr.Blocks(
|
| 195 |
gr.Markdown("# **vibe-voice**", elem_id="main-title")
|
| 196 |
|
| 197 |
with gr.Row():
|
|
@@ -227,4 +227,4 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
|
|
| 227 |
)
|
| 228 |
|
| 229 |
if __name__ == "__main__":
|
| 230 |
-
demo.queue(max_size=30).launch(ssr_mode=False, show_error=True)
|
|
|
|
| 191 |
["Extract the contents. [page].", "examples/2.jpg"],
|
| 192 |
]
|
| 193 |
|
| 194 |
+
with gr.Blocks() as demo:
|
| 195 |
gr.Markdown("# **vibe-voice**", elem_id="main-title")
|
| 196 |
|
| 197 |
with gr.Row():
|
|
|
|
| 227 |
)
|
| 228 |
|
| 229 |
if __name__ == "__main__":
|
| 230 |
+
demo.queue(max_size=30).launch(css=css, theme=steel_blue_theme, ssr_mode=False, show_error=True)
|