Spaces:
Running
Running
Commit
·
b855d19
1
Parent(s):
cf70e4a
add requiretment
Browse files
app.py
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
# f.write(name)
|
8 |
-
|
9 |
-
completed_process = subprocess.run(['ls', '-l'], capture_output=True, text=True)
|
10 |
-
# print(completed_process.stdout)
|
11 |
-
|
12 |
-
|
13 |
-
return "=======have you saved " + completed_process.stdout + "?"
|
14 |
-
|
15 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
16 |
iface.launch()
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def greet(name1, name2, name3, name4, name5):
|
4 |
+
# Storing each input in a variable, you can process or save them as you like
|
5 |
+
str1 = name1
|
6 |
+
str2 = name2
|
7 |
+
str3 = name3
|
8 |
+
str4 = name4
|
9 |
+
str5 = name5
|
10 |
+
|
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 |
+
iface = gr.Interface(fn=greet, inputs=["text", "text", "text", "text", "text"], outputs="text")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
iface.launch()
|
17 |
+
|