Didier Durand commited on
Commit
4bd6451
·
1 Parent(s): f6ca5b1

Switching tab title name "Gradio" -> "Owl" and adding tab favicon

Browse files
Files changed (1) hide show
  1. owl/webapp.py +2 -2
owl/webapp.py CHANGED
@@ -852,7 +852,7 @@ def create_ui():
852
  logs2,
853
  )
854
 
855
- with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue")) as app:
856
  gr.Markdown(
857
  """
858
  # 🦉 OWL Multi-Agent Collaboration System
@@ -1287,7 +1287,7 @@ def main():
1287
  app = create_ui()
1288
 
1289
  app.queue()
1290
- app.launch(share=False)
1291
  except Exception as e:
1292
  logging.error(f"Error occurred while starting the application: {str(e)}")
1293
  print(f"Error occurred while starting the application: {str(e)}")
 
852
  logs2,
853
  )
854
 
855
+ with gr.Blocks(title="Owl",theme=gr.themes.Soft(primary_hue="blue")) as app:
856
  gr.Markdown(
857
  """
858
  # 🦉 OWL Multi-Agent Collaboration System
 
1287
  app = create_ui()
1288
 
1289
  app.queue()
1290
+ app.launch(share=False,favicon_path="../assets/owl-favicon.ico")
1291
  except Exception as e:
1292
  logging.error(f"Error occurred while starting the application: {str(e)}")
1293
  print(f"Error occurred while starting the application: {str(e)}")