test-branches / app.py
charlesfrye's picture
adding other branch
bbea1f8
raw history blame
No virus
161 Bytes
import gradio as gr
def greet(name):
return "Hello from other, " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()