minimal / app.py
thereckoner's picture
push
2c1bb8f
raw
history blame contribute delete
121 Bytes
import gradio as gr
def greet(name): return f"Hello {name}"
gr.Interface(fn=greet, inputs="text", output="text").launch()