remove redundant information about Deep Research.
Browse files
ui.py
CHANGED
|
@@ -175,13 +175,7 @@ class GradioUI:
|
|
| 175 |
file_uploads_log = gr.State([])
|
| 176 |
with gr.Sidebar():
|
| 177 |
gr.Markdown(
|
| 178 |
-
"""# open Deep Research - free the AI agents!
|
| 179 |
-
|
| 180 |
-
OpenAI just published [Deep Research](https://openai.com/index/introducing-deep-research/), an amazing assistant that can perform deep searches on the web to answer user questions.
|
| 181 |
-
|
| 182 |
-
However, their agent has a huge downside: it's not open. So we've started a 24-hour rush to replicate and open-source it. Our resulting [open-Deep-Research agent](https://github.com/huggingface/smolagents/tree/main/examples/open_deep_research) took the #1 rank of any open submission on the GAIA leaderboard! ✨
|
| 183 |
-
|
| 184 |
-
You can try a simplified version here that uses `Qwen-Coder-32B` instead of `o1`.<br><br>"""
|
| 185 |
)
|
| 186 |
with gr.Group():
|
| 187 |
gr.Markdown("**Your request**", container=True)
|
|
@@ -195,18 +189,6 @@ You can try a simplified version here that uses `Qwen-Coder-32B` instead of `o1`
|
|
| 195 |
|
| 196 |
self._upload_widget(file_uploads_log)
|
| 197 |
|
| 198 |
-
gr.HTML("<br><br><h4><center>Powered by:</center></h4>")
|
| 199 |
-
with gr.Row():
|
| 200 |
-
gr.HTML(
|
| 201 |
-
'<div style="display:flex;align-items:center;gap:8px;'
|
| 202 |
-
'font-family:system-ui,-apple-system,sans-serif;">'
|
| 203 |
-
'<img src="https://huggingface.co/datasets/huggingface/'
|
| 204 |
-
'documentation-images/resolve/main/smolagents/mascot_smol.png" '
|
| 205 |
-
'style="width:32px;height:32px;object-fit:contain;" alt="logo">'
|
| 206 |
-
'<a target="_blank" href="https://github.com/huggingface/smolagents">'
|
| 207 |
-
"<b>huggingface/smolagents</b></a></div>"
|
| 208 |
-
)
|
| 209 |
-
|
| 210 |
session_state = gr.State({})
|
| 211 |
stored_messages = gr.State([])
|
| 212 |
chatbot = gr.Chatbot(
|
|
@@ -225,13 +207,7 @@ You can try a simplified version here that uses `Qwen-Coder-32B` instead of `o1`
|
|
| 225 |
def _mobile_layout(self):
|
| 226 |
gr.Markdown(
|
| 227 |
"""# open Deep Research - free the AI agents!
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
OpenAI just published [Deep Research](https://openai.com/index/introducing-deep-research/), a very nice assistant that can perform deep searches on the web to answer user questions.
|
| 231 |
-
|
| 232 |
-
However, their agent has a huge downside: it's not open. So we've started a 24-hour rush to replicate and open-source it. Our resulting [open-Deep-Research agent](https://github.com/huggingface/smolagents/tree/main/examples/open_deep_research) took the #1 rank of any open submission on the GAIA leaderboard! ✨
|
| 233 |
-
|
| 234 |
-
You can try a simplified version below (uses `Qwen-Coder-32B` instead of `o1`, so much less powerful than the original open-Deep-Research)👇"""
|
| 235 |
)
|
| 236 |
session_state = gr.State({})
|
| 237 |
stored_messages = gr.State([])
|
|
|
|
| 175 |
file_uploads_log = gr.State([])
|
| 176 |
with gr.Sidebar():
|
| 177 |
gr.Markdown(
|
| 178 |
+
"""# open Deep Research - free the AI agents!"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 179 |
)
|
| 180 |
with gr.Group():
|
| 181 |
gr.Markdown("**Your request**", container=True)
|
|
|
|
| 189 |
|
| 190 |
self._upload_widget(file_uploads_log)
|
| 191 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
session_state = gr.State({})
|
| 193 |
stored_messages = gr.State([])
|
| 194 |
chatbot = gr.Chatbot(
|
|
|
|
| 207 |
def _mobile_layout(self):
|
| 208 |
gr.Markdown(
|
| 209 |
"""# open Deep Research - free the AI agents!
|
| 210 |
+
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
)
|
| 212 |
session_state = gr.State({})
|
| 213 |
stored_messages = gr.State([])
|