hb-setosys commited on
Commit
43e0c53
·
verified ·
1 Parent(s): 9f44384

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -117,7 +117,10 @@ video_interface = gr.Interface(
117
  )
118
 
119
  # Combine both interfaces into tabs
120
- app = gr.TabbedInterface([image_interface, video_interface], ["Image Mode", "Video Mode"])
 
 
 
121
 
122
  # Launch app
123
  if __name__ == "__main__":
 
117
  )
118
 
119
  # Combine both interfaces into tabs
120
+ app = gr.TabbedInterface(
121
+ [image_interface, video_interface],
122
+ tab_names=["Image Mode", "Video Mode"] # Explicitly define tab names
123
+ )
124
 
125
  # Launch app
126
  if __name__ == "__main__":