aidademo / app.py
stonapse64
Added table
304bd57
raw
history blame
No virus
1.45 kB
import gradio as gr
gr.set_static_paths(paths=["images/"])
bellamy_bowie_description = """<img src="static/Siemens_logo.png" alt="My Image"/>"""
urly_murly_simmy_description = """<img src="static/Siemens_logo.png" alt="My Image" style="float: left; margin-right: 10px;" />"""
ellis_cappy_description = "![Siemens Logo](static/Siemens_logo.png)"
def greeting(name):
return f"Hello {name}"
bellamy_bowie = gr.Interface(greeting, "text", "text", description=bellamy_bowie_description)
urly_murly_simmy = gr.Interface(lambda name: "Hello " + name, "text", "text", description=urly_murly_simmy_description)
ellis_cappy = gr.Interface(lambda name: "Hello " + name, "text", "text", description=ellis_cappy_description)
demo = gr.TabbedInterface(
[bellamy_bowie, urly_murly_simmy, ellis_cappy],
["Bellamy Bowie", "Urly & Murly Simmy", "Ellis Cappy"], head=bellamy_bowie_description)
demo.launch(allowed_paths=["static"])
# import gradio as gr
#
# # Paths can be a list of strings or pathlib.Path objects
# # corresponding to filenames or directories.
# gr.set_static_paths(paths=["test/test_files/"])
#
# # The example files and the default value of the input
# # will not be copied to the gradio cache and will be served directly.
# demo = gr.Interface(
# lambda s: s.rotate(45),
# gr.Image(value="test/test_files/cheetah1.jpg", type="pil"),
# gr.Image(),
# examples=["test/test_files/bus.png"],
# )
#
# demo.launch()