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