ban-cars / app.py
lsb's picture
app file example
76c920d
raw history blame
No virus
144 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()