Switching browser tab title "Gradio" -> "Owl" and adding tab favicon (#358)
Browse files- owl/webapp.py +2 -2
owl/webapp.py
CHANGED
@@ -857,7 +857,7 @@ def create_ui():
|
|
857 |
logs2,
|
858 |
)
|
859 |
|
860 |
-
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue")) as app:
|
861 |
gr.Markdown(
|
862 |
"""
|
863 |
# 🦉 OWL Multi-Agent Collaboration System
|
@@ -1294,7 +1294,7 @@ def main():
|
|
1294 |
app = create_ui()
|
1295 |
|
1296 |
app.queue()
|
1297 |
-
app.launch(share=False)
|
1298 |
except Exception as e:
|
1299 |
logging.error(f"Error occurred while starting the application: {str(e)}")
|
1300 |
print(f"Error occurred while starting the application: {str(e)}")
|
|
|
857 |
logs2,
|
858 |
)
|
859 |
|
860 |
+
with gr.Blocks(title="Owl",theme=gr.themes.Soft(primary_hue="blue")) as app:
|
861 |
gr.Markdown(
|
862 |
"""
|
863 |
# 🦉 OWL Multi-Agent Collaboration System
|
|
|
1294 |
app = create_ui()
|
1295 |
|
1296 |
app.queue()
|
1297 |
+
app.launch(share=False,favicon_path="../assets/owl-favicon.ico")
|
1298 |
except Exception as e:
|
1299 |
logging.error(f"Error occurred while starting the application: {str(e)}")
|
1300 |
print(f"Error occurred while starting the application: {str(e)}")
|