You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnpage_raw, f"Content type {content_type} cannot be simplified to markdown, but here is the raw content:\n"
@@ -121,6 +123,7 @@ class Fetch(BaseModel):
121
123
url: str=Field(..., description="URL to fetch")
122
124
max_length: int=Field(5000, description="Maximum number of characters to return.")
123
125
start_index: int=Field(0, description="On return output starting at this character index, useful if a previous fetch was truncated and more context is required.")
126
+
raw: bool=Field(False, description="Get the actual HTML content if the requested page, without simplification.")
description="""Fetches a URL from the internet and extracts its contents as markdown.
141
+
description="""Fetches a URL from the internet and optionally extracts its contents as markdown.
139
142
140
143
Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that.""",
0 commit comments