Spaces:
Runtime error
Runtime error
Commit
•
627f791
1
Parent(s):
054be50
Update app.py
Browse files
app.py
CHANGED
@@ -8,8 +8,8 @@ def fn(*args, **kwargs):
|
|
8 |
|
9 |
gr.Interface(
|
10 |
fn=fn,
|
11 |
-
inputs=
|
12 |
-
outputs=
|
13 |
-
title=
|
14 |
article=tool.description,
|
15 |
).queue(concurrency_count=5).launch()
|
|
|
8 |
|
9 |
gr.Interface(
|
10 |
fn=fn,
|
11 |
+
inputs=tool.inputs,
|
12 |
+
outputs=tool.outputs,
|
13 |
+
title=tool.__name__,
|
14 |
article=tool.description,
|
15 |
).queue(concurrency_count=5).launch()
|