KevinQHLin commited on
Commit
104640f
·
verified ·
1 Parent(s): 880fa16

Update license

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -195,6 +195,11 @@ examples = [
195
  # ["./examples/safari_google.png", "Click on search bar.", True],
196
  ]
197
 
 
 
 
 
 
198
  def build_demo(embed_mode, concurrency_count=1):
199
  with gr.Blocks(title="ShowUI Demo", theme=gr.themes.Default()) as demo:
200
  state_image_path = gr.State(value=None)
@@ -331,7 +336,7 @@ def build_demo(embed_mode, concurrency_count=1):
331
  outputs=[],
332
  queue=False
333
  )
334
-
335
  return demo
336
 
337
  if __name__ == "__main__":
 
195
  # ["./examples/safari_google.png", "Click on search bar.", True],
196
  ]
197
 
198
+ learn_more_markdown = ("""
199
+ ### License
200
+ Apache License 2.0
201
+ """)
202
+
203
  def build_demo(embed_mode, concurrency_count=1):
204
  with gr.Blocks(title="ShowUI Demo", theme=gr.themes.Default()) as demo:
205
  state_image_path = gr.State(value=None)
 
336
  outputs=[],
337
  queue=False
338
  )
339
+ gr.Markdown(learn_more_markdown)
340
  return demo
341
 
342
  if __name__ == "__main__":