tuts1 / app.py
arthurjp023
Update app.py
2a50376
raw
history blame contribute delete
No virus
136 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()