import gradio as gr gr.set_static_paths(paths=["images/"]) bellamy_bowie_description = """
Emil Tobias Linus
16 14 10
""" 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") ellis_cappy = gr.Interface(lambda name: "Hello " + name, "text", "text") demo = gr.TabbedInterface( [bellamy_bowie, urly_murly_simmy, ellis_cappy], ["Bellamy Bowie", "Urly & Murly Simmy", "Ellis Cappy"], head=bellamy_bowie_description) demo.launch() # 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()