Update Modules/Web_Fetch.py
Browse files- Modules/Web_Fetch.py +2 -1
Modules/Web_Fetch.py
CHANGED
|
@@ -17,7 +17,8 @@ from ._docstrings import autodoc
|
|
| 17 |
# Single source of truth for the LLM-facing tool description
|
| 18 |
TOOL_SUMMARY = (
|
| 19 |
"Fetch a webpage and return clean Markdown, raw HTML, or a list of links, with max length and pagination via "
|
| 20 |
-
"offset; if truncated, the output includes a notice with next_cursor for exact continuation."
|
|
|
|
| 21 |
)
|
| 22 |
|
| 23 |
ModeOption = Literal["markdown", "html", "url_scraper"]
|
|
|
|
| 17 |
# Single source of truth for the LLM-facing tool description
|
| 18 |
TOOL_SUMMARY = (
|
| 19 |
"Fetch a webpage and return clean Markdown, raw HTML, or a list of links, with max length and pagination via "
|
| 20 |
+
"offset; if truncated, the output includes a notice with next_cursor for exact continuation. "
|
| 21 |
+
"Use in combination with `Web_Search` to navigate the web."
|
| 22 |
)
|
| 23 |
|
| 24 |
ModeOption = Literal["markdown", "html", "url_scraper"]
|