@@ -355,7 +355,7 @@ def search(
355355 advanced_settings : Optional [AdvancedSearchSettingsParam ] | Omit = omit ,
356356 client_model : Optional [str ] | Omit = omit ,
357357 max_chars_total : Optional [int ] | Omit = omit ,
358- mode : Optional [Literal ["basic" , "advanced" , "turbo" ]] | Omit = omit ,
358+ mode : Optional [Literal ["basic" , "advanced" ]] | Omit = omit ,
359359 objective : Optional [str ] | Omit = omit ,
360360 session_id : Optional [str ] | Omit = omit ,
361361 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -388,11 +388,10 @@ def search(
388388
389389 max_chars_total: Upper bound on total characters across excerpts from all results.
390390
391- mode: Search mode preset: supported values are `basic`, `advanced`, and `turbo`. Basic
392- mode offers the lowest latency and works best with 2-3 high-quality
393- search_queries. Advanced mode provides higher quality with more advanced
394- retrieval and compression. Turbo mode is optimized for the fastest responses.
395- Defaults to `advanced` when omitted.
391+ mode: Search mode preset: supported values are `basic` and `advanced`. Basic mode
392+ offers the lowest latency and works best with 2-3 high-quality search_queries.
393+ Advanced mode provides higher quality with more advanced retrieval and
394+ compression. Defaults to `advanced` when omitted.
396395
397396 objective: Natural-language description of the underlying question or goal driving the
398397 search. Used together with search_queries to focus results on the most relevant
@@ -748,7 +747,7 @@ async def search(
748747 advanced_settings : Optional [AdvancedSearchSettingsParam ] | Omit = omit ,
749748 client_model : Optional [str ] | Omit = omit ,
750749 max_chars_total : Optional [int ] | Omit = omit ,
751- mode : Optional [Literal ["basic" , "advanced" , "turbo" ]] | Omit = omit ,
750+ mode : Optional [Literal ["basic" , "advanced" ]] | Omit = omit ,
752751 objective : Optional [str ] | Omit = omit ,
753752 session_id : Optional [str ] | Omit = omit ,
754753 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -781,11 +780,10 @@ async def search(
781780
782781 max_chars_total: Upper bound on total characters across excerpts from all results.
783782
784- mode: Search mode preset: supported values are `basic`, `advanced`, and `turbo`. Basic
785- mode offers the lowest latency and works best with 2-3 high-quality
786- search_queries. Advanced mode provides higher quality with more advanced
787- retrieval and compression. Turbo mode is optimized for the fastest responses.
788- Defaults to `advanced` when omitted.
783+ mode: Search mode preset: supported values are `basic` and `advanced`. Basic mode
784+ offers the lowest latency and works best with 2-3 high-quality search_queries.
785+ Advanced mode provides higher quality with more advanced retrieval and
786+ compression. Defaults to `advanced` when omitted.
789787
790788 objective: Natural-language description of the underlying question or goal driving the
791789 search. Used together with search_queries to focus results on the most relevant
0 commit comments