dhuynh95 commited on
Commit
be2352b
1 Parent(s): 2d458ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -10
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
- def create_demo():
17
- with gr.Blocks() as demo:
18
- with gr.Tab("LaVague"):
19
- with gr.Row():
20
- gr.HTML(title)
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()