@@ -57,6 +57,7 @@ def create(
57
57
answer : Optional [str ] | NotGiven = NOT_GIVEN ,
58
58
client_query_metadata : Iterable [object ] | NotGiven = NOT_GIVEN ,
59
59
draft_answer : Optional [str ] | NotGiven = NOT_GIVEN ,
60
+ x_access_key : str | NotGiven = NOT_GIVEN ,
60
61
x_client_library_version : str | NotGiven = NOT_GIVEN ,
61
62
x_integration_type : str | NotGiven = NOT_GIVEN ,
62
63
x_source : str | NotGiven = NOT_GIVEN ,
@@ -85,6 +86,7 @@ def create(
85
86
extra_headers = {
86
87
** strip_not_given (
87
88
{
89
+ "x-access-key" : x_access_key ,
88
90
"x-client-library-version" : x_client_library_version ,
89
91
"x-integration-type" : x_integration_type ,
90
92
"x-source" : x_source ,
@@ -323,6 +325,7 @@ def query(
323
325
question : str ,
324
326
use_llm_matching : bool | NotGiven = NOT_GIVEN ,
325
327
client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
328
+ x_access_key : str | NotGiven = NOT_GIVEN ,
326
329
x_client_library_version : str | NotGiven = NOT_GIVEN ,
327
330
x_integration_type : str | NotGiven = NOT_GIVEN ,
328
331
x_source : str | NotGiven = NOT_GIVEN ,
@@ -335,7 +338,7 @@ def query(
335
338
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
336
339
) -> EntryQueryResponse :
337
340
"""
338
- Query Entries Route
341
+ Query Entries
339
342
340
343
Args:
341
344
extra_headers: Send extra headers
@@ -351,6 +354,7 @@ def query(
351
354
extra_headers = {
352
355
** strip_not_given (
353
356
{
357
+ "x-access-key" : x_access_key ,
354
358
"x-client-library-version" : x_client_library_version ,
355
359
"x-integration-type" : x_integration_type ,
356
360
"x-source" : x_source ,
@@ -446,6 +450,7 @@ async def create(
446
450
answer : Optional [str ] | NotGiven = NOT_GIVEN ,
447
451
client_query_metadata : Iterable [object ] | NotGiven = NOT_GIVEN ,
448
452
draft_answer : Optional [str ] | NotGiven = NOT_GIVEN ,
453
+ x_access_key : str | NotGiven = NOT_GIVEN ,
449
454
x_client_library_version : str | NotGiven = NOT_GIVEN ,
450
455
x_integration_type : str | NotGiven = NOT_GIVEN ,
451
456
x_source : str | NotGiven = NOT_GIVEN ,
@@ -474,6 +479,7 @@ async def create(
474
479
extra_headers = {
475
480
** strip_not_given (
476
481
{
482
+ "x-access-key" : x_access_key ,
477
483
"x-client-library-version" : x_client_library_version ,
478
484
"x-integration-type" : x_integration_type ,
479
485
"x-source" : x_source ,
@@ -712,6 +718,7 @@ async def query(
712
718
question : str ,
713
719
use_llm_matching : bool | NotGiven = NOT_GIVEN ,
714
720
client_metadata : Optional [object ] | NotGiven = NOT_GIVEN ,
721
+ x_access_key : str | NotGiven = NOT_GIVEN ,
715
722
x_client_library_version : str | NotGiven = NOT_GIVEN ,
716
723
x_integration_type : str | NotGiven = NOT_GIVEN ,
717
724
x_source : str | NotGiven = NOT_GIVEN ,
@@ -724,7 +731,7 @@ async def query(
724
731
timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
725
732
) -> EntryQueryResponse :
726
733
"""
727
- Query Entries Route
734
+ Query Entries
728
735
729
736
Args:
730
737
extra_headers: Send extra headers
@@ -740,6 +747,7 @@ async def query(
740
747
extra_headers = {
741
748
** strip_not_given (
742
749
{
750
+ "x-access-key" : x_access_key ,
743
751
"x-client-library-version" : x_client_library_version ,
744
752
"x-integration-type" : x_integration_type ,
745
753
"x-source" : x_source ,
0 commit comments