Skip to content

Commit df57df6

Browse files
authored
Switching browser tab title "Gradio" -> "Owl" and adding tab favicon (#358)
2 parents 265facf + ecf461c commit df57df6

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

assets/owl-favicon.ico

15 KB
Binary file not shown.

assets/owl-favicon.png

11.8 KB
Loading

owl/webapp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ def process_in_background():
857857
logs2,
858858
)
859859

860-
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue")) as app:
860+
with gr.Blocks(title="Owl",theme=gr.themes.Soft(primary_hue="blue")) as app:
861861
gr.Markdown(
862862
"""
863863
# 🦉 OWL Multi-Agent Collaboration System
@@ -1294,7 +1294,7 @@ def main():
12941294
app = create_ui()
12951295

12961296
app.queue()
1297-
app.launch(share=False)
1297+
app.launch(share=False,favicon_path="../assets/owl-favicon.ico")
12981298
except Exception as e:
12991299
logging.error(f"Error occurred while starting the application: {str(e)}")
13001300
print(f"Error occurred while starting the application: {str(e)}")

0 commit comments

Comments
 (0)