lff342 / app.py
lfff24's picture
Add application file
6a5cc17
raw
history blame contribute delete
No virus
167 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!! How are you?"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()