Spaces:
Runtime error
Runtime error
patrickvonplaten
commited on
Commit
•
7bc15eb
1
Parent(s):
710b787
up
Browse files
app.py
CHANGED
@@ -141,5 +141,5 @@ def convert(*keywords):
|
|
141 |
inputs = [gr.Textbox(label=f"Enter your keywords for {k}", max_lines=2, placeholders=CAT_TO_CODEWORDS[k]) for k in CATEGORIES]
|
142 |
|
143 |
iface = gr.Interface(
|
144 |
-
fn=
|
145 |
iface.launch()
|
|
|
141 |
inputs = [gr.Textbox(label=f"Enter your keywords for {k}", max_lines=2, placeholders=CAT_TO_CODEWORDS[k]) for k in CATEGORIES]
|
142 |
|
143 |
iface = gr.Interface(
|
144 |
+
fn=convert, inputs=inputs, outputs="text")
|
145 |
iface.launch()
|