minima / app.py
chiteri's picture
Some corrections to the greet function and app execution
ed918f8
raw
history blame
No virus
131 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()