SuperBigtoo's picture
Update app.py
80d5a90
raw
history blame
370 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
with gr.Blocks() as demo:
iface = gr.Interface(
fn=greet,
inputs="text",
outputs="text",
title="Title"
)
gr.Markdown("## Text Examples")
gr.Examples(
["hi", "Adam"],
iface
)
if __name__ == "__main__":
demo.launch()