ncut / app.py
skwu5678's picture
Update app.py
28e8cca verified
raw
history blame contribute delete
161 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(inline=False)