ipvikas commited on
Commit
ac8761c
Β·
verified Β·
1 Parent(s): 5034ab0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -1,7 +1,10 @@
1
 
2
  from image_summary import image_summary_demo
3
 
4
- demo = gr.TabbedInterface([image_summary_demo],
5
- ["Image to Text SUMMARY])
 
 
 
6
  if __name__ == "__main__":
7
  demo.launch(debug=True, cache_examples=True)
 
1
 
2
  from image_summary import image_summary_demo
3
 
4
+
5
+ from OCR_Image_to_Text import get_OCR_demo
6
+
7
+ demo = gr.TabbedInterface([image_summary_demo, get_OCR_demo],
8
+ ["Image to Text SUMMARY", "Extract TEXT"])
9
  if __name__ == "__main__":
10
  demo.launch(debug=True, cache_examples=True)