@@ -57,6 +57,7 @@ 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 ,
6061 x_client_library_version : str | NotGiven = NOT_GIVEN ,
6162 x_integration_type : str | NotGiven = NOT_GIVEN ,
6263 x_source : str | NotGiven = NOT_GIVEN ,
@@ -85,6 +86,7 @@ def create(
8586 extra_headers = {
8687 ** strip_not_given (
8788 {
89+ "x-access-key" : x_access_key ,
8890 "x-client-library-version" : x_client_library_version ,
8991 "x-integration-type" : x_integration_type ,
9092 "x-source" : x_source ,
@@ -323,6 +325,7 @@ def query(
323325 question : str ,
324326 use_llm_matching : bool | NotGiven = NOT_GIVEN ,
325327 client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
328+ x_access_key : str | NotGiven = NOT_GIVEN ,
326329 x_client_library_version : str | NotGiven = NOT_GIVEN ,
327330 x_integration_type : str | NotGiven = NOT_GIVEN ,
328331 x_source : str | NotGiven = NOT_GIVEN ,
@@ -335,7 +338,7 @@ def query(
335338 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
336339 ) -> EntryQueryResponse :
337340 """
338- Query Entries Route
341+ Query Entries
339342
340343 Args:
341344 extra_headers: Send extra headers
@@ -351,6 +354,7 @@ def query(
351354 extra_headers = {
352355 ** strip_not_given (
353356 {
357+ "x-access-key" : x_access_key ,
354358 "x-client-library-version" : x_client_library_version ,
355359 "x-integration-type" : x_integration_type ,
356360 "x-source" : x_source ,
@@ -446,6 +450,7 @@ async def create(
446450 answer : Optional [str ] | NotGiven = NOT_GIVEN ,
447451 client_query_metadata : Iterable [object ] | NotGiven = NOT_GIVEN ,
448452 draft_answer : Optional [str ] | NotGiven = NOT_GIVEN ,
453+ x_access_key : str | NotGiven = NOT_GIVEN ,
449454 x_client_library_version : str | NotGiven = NOT_GIVEN ,
450455 x_integration_type : str | NotGiven = NOT_GIVEN ,
451456 x_source : str | NotGiven = NOT_GIVEN ,
@@ -474,6 +479,7 @@ async def create(
474479 extra_headers = {
475480 ** strip_not_given (
476481 {
482+ "x-access-key" : x_access_key ,
477483 "x-client-library-version" : x_client_library_version ,
478484 "x-integration-type" : x_integration_type ,
479485 "x-source" : x_source ,
@@ -712,6 +718,7 @@ async def query(
712718 question : str ,
713719 use_llm_matching : bool | NotGiven = NOT_GIVEN ,
714720 client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
721+ x_access_key : str | NotGiven = NOT_GIVEN ,
715722 x_client_library_version : str | NotGiven = NOT_GIVEN ,
716723 x_integration_type : str | NotGiven = NOT_GIVEN ,
717724 x_source : str | NotGiven = NOT_GIVEN ,
@@ -724,7 +731,7 @@ async def query(
724731 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
725732 ) -> EntryQueryResponse :
726733 """
727- Query Entries Route
734+ Query Entries
728735
729736 Args:
730737 extra_headers: Send extra headers
@@ -740,6 +747,7 @@ async def query(
740747 extra_headers = {
741748 ** strip_not_given (
742749 {
750+ "x-access-key" : x_access_key ,
743751 "x-client-library-version" : x_client_library_version ,
744752 "x-integration-type" : x_integration_type ,
745753 "x-source" : x_source ,
0 commit comments