minimal / app.py
jph00's picture
name
9f11d8f
raw
history blame
No virus
124 Bytes
import gradio as gr
def greet(name): return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()