@@ -57,7 +57,6 @@ def create(
5757 answer : Optional [str ] | NotGiven = NOT_GIVEN ,
5858 client_query_metadata : Iterable [object ] | NotGiven = NOT_GIVEN ,
5959 draft_answer : Optional [str ] | NotGiven = NOT_GIVEN ,
60- x_access_key : str | NotGiven = NOT_GIVEN ,
6160 x_client_library_version : str | NotGiven = NOT_GIVEN ,
6261 x_integration_type : str | NotGiven = NOT_GIVEN ,
6362 x_source : str | NotGiven = NOT_GIVEN ,
@@ -86,7 +85,6 @@ def create(
8685 extra_headers = {
8786 ** strip_not_given (
8887 {
89- "x-access-key" : x_access_key ,
9088 "x-client-library-version" : x_client_library_version ,
9189 "x-integration-type" : x_integration_type ,
9290 "x-source" : x_source ,
@@ -325,7 +323,6 @@ def query(
325323 question : str ,
326324 use_llm_matching : bool | NotGiven = NOT_GIVEN ,
327325 client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
328- x_access_key : str | NotGiven = NOT_GIVEN ,
329326 x_client_library_version : str | NotGiven = NOT_GIVEN ,
330327 x_integration_type : str | NotGiven = NOT_GIVEN ,
331328 x_source : str | NotGiven = NOT_GIVEN ,
@@ -338,7 +335,7 @@ def query(
338335 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
339336 ) -> EntryQueryResponse :
340337 """
341- Query Entries
338+ Query Entries Route
342339
343340 Args:
344341 extra_headers: Send extra headers
@@ -354,7 +351,6 @@ def query(
354351 extra_headers = {
355352 ** strip_not_given (
356353 {
357- "x-access-key" : x_access_key ,
358354 "x-client-library-version" : x_client_library_version ,
359355 "x-integration-type" : x_integration_type ,
360356 "x-source" : x_source ,
@@ -450,7 +446,6 @@ async def create(
450446 answer : Optional [str ] | NotGiven = NOT_GIVEN ,
451447 client_query_metadata : Iterable [object ] | NotGiven = NOT_GIVEN ,
452448 draft_answer : Optional [str ] | NotGiven = NOT_GIVEN ,
453- x_access_key : str | NotGiven = NOT_GIVEN ,
454449 x_client_library_version : str | NotGiven = NOT_GIVEN ,
455450 x_integration_type : str | NotGiven = NOT_GIVEN ,
456451 x_source : str | NotGiven = NOT_GIVEN ,
@@ -479,7 +474,6 @@ async def create(
479474 extra_headers = {
480475 ** strip_not_given (
481476 {
482- "x-access-key" : x_access_key ,
483477 "x-client-library-version" : x_client_library_version ,
484478 "x-integration-type" : x_integration_type ,
485479 "x-source" : x_source ,
@@ -718,7 +712,6 @@ async def query(
718712 question : str ,
719713 use_llm_matching : bool | NotGiven = NOT_GIVEN ,
720714 client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
721- x_access_key : str | NotGiven = NOT_GIVEN ,
722715 x_client_library_version : str | NotGiven = NOT_GIVEN ,
723716 x_integration_type : str | NotGiven = NOT_GIVEN ,
724717 x_source : str | NotGiven = NOT_GIVEN ,
@@ -731,7 +724,7 @@ async def query(
731724 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
732725 ) -> EntryQueryResponse :
733726 """
734- Query Entries
727+ Query Entries Route
735728
736729 Args:
737730 extra_headers: Send extra headers
@@ -747,7 +740,6 @@ async def query(
747740 extra_headers = {
748741 ** strip_not_given (
749742 {
750- "x-access-key" : x_access_key ,
751743 "x-client-library-version" : x_client_library_version ,
752744 "x-integration-type" : x_integration_type ,
753745 "x-source" : x_source ,
0 commit comments