junction / app.py
debisoft's picture
fast
fa5eae9
raw
history blame
186 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()