minima / app.py
inigogab's picture
Fixed app hello
24c6d3e
raw
history blame
129 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()