junction / app.py
debisoft's picture
fast
5807b4f
raw
history blame
176 Bytes
import gradio as gr
def greet(name, str2):
return "Hello " + name + "!!" + " str2=" + str2
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()