Commit
·
0c4fe7a
1
Parent(s):
1751ca6
format fix and update wechat qr code
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(title="
|
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,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)}")
|
|
|
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)}")
|