Spaces:
Running
on
Zero
Running
on
Zero
Update license
Browse files
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__":
|