test-gradio2 / app.py
shs3131
Add Gradio app
ce6b199
Raw
History Blame Contribute Delete
133 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()