model-test / app.py
chuckma
add app file
0aea8f9
raw
history blame
127 Bytes
import gradio as gr
def greet (name): return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text"). launch()