fast
Browse files
app.py
CHANGED
@@ -5,5 +5,5 @@ import gradio as gr
|
|
5 |
def greet(name, str2):
|
6 |
return "Hello " + name + "!!" + " str2=" + str2
|
7 |
|
8 |
-
iface = gr.Interface(fn=greet, inputs="text, text", outputs="text")
|
9 |
iface.launch()
|
|
|
5 |
def greet(name, str2):
|
6 |
return "Hello " + name + "!!" + " str2=" + str2
|
7 |
|
8 |
+
iface = gr.Interface(fn=greet, inputs=["text", "text"], outputs="text")
|
9 |
iface.launch()
|