Test1 / app.py
locfuho's picture
Update app.py
8597b4c
import gradio as gr
print("hello world")
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()