NewTest / app.py
liftcookcode's picture
test1
b24972f
raw
history blame contribute delete
No virus
123 Bytes
import gradio as gr
def greet(name): return f"Hello {name}!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()