ui: show full visited URLs
Browse files
app.py
CHANGED
|
@@ -2304,7 +2304,7 @@ def build_research_agent(
|
|
| 2304 |
max_chars = int(tool_args.get("max_chars", 6000))
|
| 2305 |
max_chars = max(500, min(max_chars, 20000))
|
| 2306 |
|
| 2307 |
-
urls_preview = ", ".join(f"`{u
|
| 2308 |
status_lines.append(f"🌐 turn {turn}: visiting {urls_preview}")
|
| 2309 |
yield _emit()
|
| 2310 |
|
|
|
|
| 2304 |
max_chars = int(tool_args.get("max_chars", 6000))
|
| 2305 |
max_chars = max(500, min(max_chars, 20000))
|
| 2306 |
|
| 2307 |
+
urls_preview = ", ".join(f"`{u}`" for u in urls) or "_(empty)_"
|
| 2308 |
status_lines.append(f"🌐 turn {turn}: visiting {urls_preview}")
|
| 2309 |
yield _emit()
|
| 2310 |
|