Fix missing bracket in app.py
Browse files
app.py
CHANGED
@@ -45,5 +45,5 @@ def process(path):
|
|
45 |
return full_text
|
46 |
|
47 |
if __name__ == "__main__"
|
48 |
-
demo = gr.Interface(fn=process, inputs=gr.Image(type="filepath", outputs="text")
|
49 |
demo.launch()
|
|
|
45 |
return full_text
|
46 |
|
47 |
if __name__ == "__main__"
|
48 |
+
demo = gr.Interface(fn=process, inputs=gr.Image(type="filepath"), outputs="text")
|
49 |
demo.launch()
|