Update app1.py
Browse files
app1.py
CHANGED
@@ -12,15 +12,14 @@ def test(x, request: gr.Request, progress=gr.Progress()):
|
|
12 |
|
13 |
with gr.Blocks() as demo:
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
)
|
24 |
gr.Interface(test, selected, prog)
|
25 |
|
26 |
t = gr.Textbox()
|
|
|
12 |
|
13 |
with gr.Blocks() as demo:
|
14 |
|
15 |
+
selected = gr.Dataframe(
|
16 |
+
interactive=False,
|
17 |
+
col_count=(1, "fixed"),
|
18 |
+
headers=["Selected Files"],
|
19 |
+
)
|
20 |
+
prog = gr.HTML(
|
21 |
+
value="<h3 style='text-align: center'> Processing...<h1>"
|
22 |
+
)
|
|
|
23 |
gr.Interface(test, selected, prog)
|
24 |
|
25 |
t = gr.Textbox()
|