minima / app.py
aqachun's picture
debug
3bb4417
raw
history blame
120 Bytes
import gradio as gr
def greet(n): return f"Hello {n}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()