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"
124
+
return (
125
+
page_raw,
126
+
f"Content type {content_type} cannot be simplified to markdown, but here is the raw content:\n",
127
+
)
120
128
121
129
122
130
classFetch(BaseModel):
123
131
url: str=Field(..., description="URL to fetch")
124
132
max_length: int=Field(5000, description="Maximum number of characters to return.")
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.")
133
+
start_index: int=Field(
134
+
0,
135
+
description="On return output starting at this character index, useful if a previous fetch was truncated and more context is required.",
136
+
)
137
+
raw: bool=Field(
138
+
False,
139
+
description="Get the actual HTML content if the requested page, without simplification.",
0 commit comments