Spaces:
Running
Running
Commit
·
f44bf4c
1
Parent(s):
b194cfc
add requiretment
Browse files
app.py
CHANGED
@@ -11,7 +11,14 @@ def greet(name1, name2, name3, name4, name5):
|
|
11 |
# For the purpose of this example, I'm just returning the values concatenated
|
12 |
return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5}"
|
13 |
|
14 |
-
# Define 5 text input boxes
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
17 |
|
|
|
|
|
|
11 |
# For the purpose of this example, I'm just returning the values concatenated
|
12 |
return f"Inputs received: {str1}, {str2}, {str3}, {str4}, {str5}"
|
13 |
|
14 |
+
# Define 5 text input boxes with labels
|
15 |
+
input_boxes = [
|
16 |
+
gr.inputs.Textbox(label="Name 1regaergar"),
|
17 |
+
gr.inputs.Textbox(label="Name 2"),
|
18 |
+
gr.inputs.Textbox(label="Name 3"),
|
19 |
+
gr.inputs.Textbox(label="Name 4"),
|
20 |
+
gr.inputs.Textbox(label="Name 5"),
|
21 |
+
]
|
22 |
|
23 |
+
iface = gr.Interface(fn=greet, inputs=input_boxes, outputs="text")
|
24 |
+
iface.launch()
|