Spaces:
Runtime error
Runtime error
deanna-emery
commited on
Commit
·
1ef90ad
1
Parent(s):
5962aeb
updates
Browse files
app.py
CHANGED
@@ -86,9 +86,9 @@ examples = [
|
|
86 |
]
|
87 |
|
88 |
# Gradio App interface
|
89 |
-
gr.Interface(
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
86 |
]
|
87 |
|
88 |
# Gradio App interface
|
89 |
+
gr.Interface(fn=translate,
|
90 |
+
inputs="video",
|
91 |
+
outputs="text",
|
92 |
+
allow_flagging="never",
|
93 |
+
title=title,
|
94 |
+
examples=examples).launch()
|