Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,13 +12,9 @@ title = """
|
|
12 |
<p>However, you can easily run for free LaVague on a <a href="https://colab.research.google.com/github/lavague-ai/lavague/blob/main/docs/docs/get-started/quick-tour.ipynb">Google Colab</a> or run in on your machine with our <a href="https://docs.lavague.ai/en/latest/docs/get-started/quick-tour/">Quick Tour</a></p>.
|
13 |
</div>
|
14 |
"""
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
demo.launch(share=True, debug=True)
|
23 |
-
|
24 |
-
create_demo()
|
|
|
12 |
<p>However, you can easily run for free LaVague on a <a href="https://colab.research.google.com/github/lavague-ai/lavague/blob/main/docs/docs/get-started/quick-tour.ipynb">Google Colab</a> or run in on your machine with our <a href="https://docs.lavague.ai/en/latest/docs/get-started/quick-tour/">Quick Tour</a></p>.
|
13 |
</div>
|
14 |
"""
|
15 |
+
with gr.Blocks() as demo:
|
16 |
+
with gr.Tab("LaVague"):
|
17 |
+
with gr.Row():
|
18 |
+
gr.HTML(title)
|
19 |
+
|
20 |
+
demo.launch()
|
|
|
|
|
|
|
|