@@ -109,7 +109,6 @@ def extract(
109109 urls : SequenceNotStr [str ],
110110 excerpts : beta_extract_params .Excerpts | Omit = omit ,
111111 fetch_policy : Optional [FetchPolicyParam ] | Omit = omit ,
112- full_content : beta_extract_params .FullContent | Omit = omit ,
113112 objective : Optional [str ] | Omit = omit ,
114113 search_queries : Optional [SequenceNotStr [str ]] | Omit = omit ,
115114 betas : List [ParallelBetaParam ] | Omit = omit ,
@@ -128,14 +127,9 @@ def extract(
128127
129128 Args:
130129 excerpts: Include excerpts from each URL relevant to the search objective and queries.
131- Note that if neither objective nor search_queries is provided, excerpts are
132- redundant with full content.
133130
134131 fetch_policy: Policy for live fetching web results.
135132
136- full_content: Include full content from each URL. Note that if neither objective nor
137- search_queries is provided, excerpts are redundant with full content.
138-
139133 objective: If provided, focuses extracted content on the specified search objective.
140134
141135 search_queries: If provided, focuses extracted content on the specified keyword search queries.
@@ -168,7 +162,6 @@ def extract(
168162 "urls" : urls ,
169163 "excerpts" : excerpts ,
170164 "fetch_policy" : fetch_policy ,
171- "full_content" : full_content ,
172165 "objective" : objective ,
173166 "search_queries" : search_queries ,
174167 },
@@ -334,7 +327,6 @@ async def extract(
334327 urls : SequenceNotStr [str ],
335328 excerpts : beta_extract_params .Excerpts | Omit = omit ,
336329 fetch_policy : Optional [FetchPolicyParam ] | Omit = omit ,
337- full_content : beta_extract_params .FullContent | Omit = omit ,
338330 objective : Optional [str ] | Omit = omit ,
339331 search_queries : Optional [SequenceNotStr [str ]] | Omit = omit ,
340332 betas : List [ParallelBetaParam ] | Omit = omit ,
@@ -353,14 +345,9 @@ async def extract(
353345
354346 Args:
355347 excerpts: Include excerpts from each URL relevant to the search objective and queries.
356- Note that if neither objective nor search_queries is provided, excerpts are
357- redundant with full content.
358348
359349 fetch_policy: Policy for live fetching web results.
360350
361- full_content: Include full content from each URL. Note that if neither objective nor
362- search_queries is provided, excerpts are redundant with full content.
363-
364351 objective: If provided, focuses extracted content on the specified search objective.
365352
366353 search_queries: If provided, focuses extracted content on the specified keyword search queries.
@@ -393,7 +380,6 @@ async def extract(
393380 "urls" : urls ,
394381 "excerpts" : excerpts ,
395382 "fetch_policy" : fetch_policy ,
396- "full_content" : full_content ,
397383 "objective" : objective ,
398384 "search_queries" : search_queries ,
399385 },
0 commit comments