paloma99 commited on
Commit
d4213f5
·
verified ·
1 Parent(s): 097354f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -86,10 +86,16 @@ banner_tab_content = """
86
  """
87
  banner_tab = gr.Markdown(banner_tab_content)
88
 
 
 
 
 
 
 
89
  # Combine interfaces into a single app
90
  app = gr.TabbedInterface(
91
  [banner_tab, image_gradio_app, chatbot_gradio_app],
92
- tab_names=["Welcome to Green Greta", "Green Greta Image Classification", "Green Greta Chat"],
93
  theme=theme
94
  )
95
 
 
86
  """
87
  banner_tab = gr.Markdown(banner_tab_content)
88
 
89
+ banner_tab_title = "<span style='color: rgb(243, 239, 224);'>Welcome to Green Greta</span>"
90
+ image_class_title = "<span style='color: rgb(243, 239, 224);'>Green Greta Image Classification</span>"
91
+ chatbot_title = "<span style='color: rgb(243, 239, 224);'>Green Greta Chat</span>"
92
+
93
+
94
+
95
  # Combine interfaces into a single app
96
  app = gr.TabbedInterface(
97
  [banner_tab, image_gradio_app, chatbot_gradio_app],
98
+ tab_names=[banner_tab_title, image_class_title, chatbot_title],
99
  theme=theme
100
  )
101