@@ -52,6 +52,7 @@ def create(
5252 max_results : int | Omit = omit ,
5353 max_tokens : int | Omit = omit ,
5454 max_tokens_per_page : int | Omit = omit ,
55+ search_domain_filter : Optional [SequenceNotStr [str ]] | Omit = omit ,
5556 search_mode : Optional [Literal ["web" , "academic" , "sec" ]] | Omit = omit ,
5657 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5758 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -81,6 +82,7 @@ def create(
8182 "max_results" : max_results ,
8283 "max_tokens" : max_tokens ,
8384 "max_tokens_per_page" : max_tokens_per_page ,
85+ "search_domain_filter" : search_domain_filter ,
8486 "search_mode" : search_mode ,
8587 },
8688 search_create_params .SearchCreateParams ,
@@ -120,6 +122,7 @@ async def create(
120122 max_results : int | Omit = omit ,
121123 max_tokens : int | Omit = omit ,
122124 max_tokens_per_page : int | Omit = omit ,
125+ search_domain_filter : Optional [SequenceNotStr [str ]] | Omit = omit ,
123126 search_mode : Optional [Literal ["web" , "academic" , "sec" ]] | Omit = omit ,
124127 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
125128 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -149,6 +152,7 @@ async def create(
149152 "max_results" : max_results ,
150153 "max_tokens" : max_tokens ,
151154 "max_tokens_per_page" : max_tokens_per_page ,
155+ "search_domain_filter" : search_domain_filter ,
152156 "search_mode" : search_mode ,
153157 },
154158 search_create_params .SearchCreateParams ,
0 commit comments