Intrinsic / app.py
ccareaga's picture
added empty app file
1ad0483
raw
history blame
158 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()