@@ -46,7 +46,6 @@ def execute(
4646 * ,
4747 q : str ,
4848 doc_id : str | NotGiven = NOT_GIVEN ,
49- user_id : str | NotGiven = NOT_GIVEN ,
5049 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
5150 # The extra values given here take precedence over values defined on the client or passed to this method.
5251 extra_headers : Headers | None = None ,
@@ -63,9 +62,6 @@ def execute(
6362 doc_id: Optional document ID to search within. You can use this to find chunks in a very
6463 large document.
6564
66- user_id: End user ID this search is associated with. NOTE: This also acts as a filter for
67- the search.
68-
6965 extra_headers: Send extra headers
7066
7167 extra_query: Add additional query parameters to the request
@@ -85,7 +81,6 @@ def execute(
8581 {
8682 "q" : q ,
8783 "doc_id" : doc_id ,
88- "user_id" : user_id ,
8984 },
9085 search_execute_params .SearchExecuteParams ,
9186 ),
@@ -119,7 +114,6 @@ async def execute(
119114 * ,
120115 q : str ,
121116 doc_id : str | NotGiven = NOT_GIVEN ,
122- user_id : str | NotGiven = NOT_GIVEN ,
123117 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
124118 # The extra values given here take precedence over values defined on the client or passed to this method.
125119 extra_headers : Headers | None = None ,
@@ -136,9 +130,6 @@ async def execute(
136130 doc_id: Optional document ID to search within. You can use this to find chunks in a very
137131 large document.
138132
139- user_id: End user ID this search is associated with. NOTE: This also acts as a filter for
140- the search.
141-
142133 extra_headers: Send extra headers
143134
144135 extra_query: Add additional query parameters to the request
@@ -158,7 +149,6 @@ async def execute(
158149 {
159150 "q" : q ,
160151 "doc_id" : doc_id ,
161- "user_id" : user_id ,
162152 },
163153 search_execute_params .SearchExecuteParams ,
164154 ),
0 commit comments