docs
Browse files- README.md +2 -2
- app.py +3 -3
- favicon.ico +0 -0
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🤖
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
@@ -8,7 +8,7 @@ sdk_version: 5.43.1
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
-
short_description:
|
12 |
tags:
|
13 |
- chatbot
|
14 |
- sse
|
|
|
1 |
---
|
2 |
+
title: MiroMind Open-Source Deep Research
|
3 |
emoji: 🤖
|
4 |
colorFrom: blue
|
5 |
colorTo: purple
|
|
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
+
short_description: MiroMind Open-Source Deep Research
|
12 |
tags:
|
13 |
- chatbot
|
14 |
- sse
|
app.py
CHANGED
@@ -298,9 +298,9 @@ def build_demo():
|
|
298 |
custom_css = """
|
299 |
#log-view { border: 1px solid #ececec; padding: 12px; border-radius: 8px; scroll-behavior: smooth; }
|
300 |
"""
|
301 |
-
with gr.Blocks(css=custom_css, title="
|
302 |
gr.HTML(
|
303 |
-
"<div style='text-align:center;font-size:32px;font-weight:bold;margin-bottom:10px;'>
|
304 |
"<div style='text-align:center;color:#666;font-size:16px;margin-bottom:15px;'>"
|
305 |
"High performance in deep research and tool use.<br>"
|
306 |
"Couple with framework: <a href='https://github.com/MiroMindAI/MiroThinker' target='_blank'>https://github.com/MiroMindAI/MiroThinker</a></div>"
|
@@ -328,4 +328,4 @@ def build_demo():
|
|
328 |
|
329 |
if __name__ == "__main__":
|
330 |
demo = build_demo()
|
331 |
-
demo.launch()
|
|
|
298 |
custom_css = """
|
299 |
#log-view { border: 1px solid #ececec; padding: 12px; border-radius: 8px; scroll-behavior: smooth; }
|
300 |
"""
|
301 |
+
with gr.Blocks(css=custom_css, title="MiroMind Open-Source Deep Research") as demo:
|
302 |
gr.HTML(
|
303 |
+
"<div style='text-align:center;font-size:32px;font-weight:bold;margin-bottom:10px;'>MiroMind Open-Source Deep Research</div>"
|
304 |
"<div style='text-align:center;color:#666;font-size:16px;margin-bottom:15px;'>"
|
305 |
"High performance in deep research and tool use.<br>"
|
306 |
"Couple with framework: <a href='https://github.com/MiroMindAI/MiroThinker' target='_blank'>https://github.com/MiroMindAI/MiroThinker</a></div>"
|
|
|
328 |
|
329 |
if __name__ == "__main__":
|
330 |
demo = build_demo()
|
331 |
+
demo.launch(favicon_path="./favicon.ico")
|
favicon.ico
ADDED
|