Playground0 / app.py
Ping
Add application file
e84714f
raw
history blame contribute delete
165 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "from playground !!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()