@@ -104,10 +104,6 @@ def extract(
104104
105105 fetch_policy: Policy for live fetching web results.
106106
107- Determines when to return cached content from the index (faster) vs fetching
108- live content (fresher). The default policy for search uses cached results only,
109- while extract uses a dynamic policy based on the search objective and url.
110-
111107 full_content: Include full content from each URL. Note that if neither objective nor
112108 search_queries is provided, excerpts are redundant with full content.
113109
@@ -186,11 +182,7 @@ def search(
186182
187183 fetch_policy: Policy for live fetching web results.
188184
189- Determines when to return cached content from the index (faster) vs fetching
190- live content (fresher). The default policy for search uses cached results only,
191- while extract uses a dynamic policy based on the search objective and url.
192-
193- max_chars_per_result: DEPRECATED - Use excerpts.max_chars_per_result.
185+ max_chars_per_result: DEPRECATED: Use `excerpts.max_chars_per_result` instead.
194186
195187 max_results: Upper bound on the number of results to return. May be limited by the processor.
196188 Defaults to 10 if not provided.
@@ -204,7 +196,7 @@ def search(
204196 include guidance about preferred sources or freshness. At least one of objective
205197 or search_queries must be provided.
206198
207- processor: DEPRECATED - Use mode.
199+ processor: DEPRECATED: use ` mode` instead .
208200
209201 search_queries: Optional list of traditional keyword search queries to guide the search. May
210202 contain search operators. At least one of objective or search_queries must be
@@ -316,10 +308,6 @@ async def extract(
316308
317309 fetch_policy: Policy for live fetching web results.
318310
319- Determines when to return cached content from the index (faster) vs fetching
320- live content (fresher). The default policy for search uses cached results only,
321- while extract uses a dynamic policy based on the search objective and url.
322-
323311 full_content: Include full content from each URL. Note that if neither objective nor
324312 search_queries is provided, excerpts are redundant with full content.
325313
@@ -398,11 +386,7 @@ async def search(
398386
399387 fetch_policy: Policy for live fetching web results.
400388
401- Determines when to return cached content from the index (faster) vs fetching
402- live content (fresher). The default policy for search uses cached results only,
403- while extract uses a dynamic policy based on the search objective and url.
404-
405- max_chars_per_result: DEPRECATED - Use excerpts.max_chars_per_result.
389+ max_chars_per_result: DEPRECATED: Use `excerpts.max_chars_per_result` instead.
406390
407391 max_results: Upper bound on the number of results to return. May be limited by the processor.
408392 Defaults to 10 if not provided.
@@ -416,7 +400,7 @@ async def search(
416400 include guidance about preferred sources or freshness. At least one of objective
417401 or search_queries must be provided.
418402
419- processor: DEPRECATED - Use mode.
403+ processor: DEPRECATED: use ` mode` instead .
420404
421405 search_queries: Optional list of traditional keyword search queries to guide the search. May
422406 contain search operators. At least one of objective or search_queries must be
0 commit comments