hindsight-client 0.2.1__py3-none-any.whl → 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hindsight_client/__init__.py +9 -8
- hindsight_client/hindsight_client.py +396 -59
- {hindsight_client-0.2.1.dist-info → hindsight_client-0.4.0.dist-info}/METADATA +1 -1
- hindsight_client-0.4.0.dist-info/RECORD +89 -0
- hindsight_client_api/__init__.py +27 -0
- hindsight_client_api/api/__init__.py +2 -0
- hindsight_client_api/api/banks_api.py +1012 -131
- hindsight_client_api/api/directives_api.py +1619 -0
- hindsight_client_api/api/entities_api.py +29 -9
- hindsight_client_api/api/memory_api.py +713 -73
- hindsight_client_api/api/mental_models_api.py +1897 -0
- hindsight_client_api/api/monitoring_api.py +246 -0
- hindsight_client_api/api/operations_api.py +350 -4
- hindsight_client_api/models/__init__.py +25 -0
- hindsight_client_api/models/add_background_request.py +2 -2
- hindsight_client_api/models/async_operation_submit_response.py +89 -0
- hindsight_client_api/models/background_response.py +10 -3
- hindsight_client_api/models/bank_list_item.py +6 -6
- hindsight_client_api/models/bank_profile_response.py +11 -4
- hindsight_client_api/models/bank_stats_response.py +15 -4
- hindsight_client_api/models/consolidation_response.py +89 -0
- hindsight_client_api/models/create_bank_request.py +8 -1
- hindsight_client_api/models/create_directive_request.py +95 -0
- hindsight_client_api/models/create_mental_model_request.py +100 -0
- hindsight_client_api/models/create_mental_model_response.py +87 -0
- hindsight_client_api/models/directive_list_response.py +95 -0
- hindsight_client_api/models/directive_response.py +113 -0
- hindsight_client_api/models/document_response.py +5 -3
- hindsight_client_api/models/entity_list_response.py +9 -3
- hindsight_client_api/models/features_info.py +91 -0
- hindsight_client_api/models/graph_data_response.py +4 -2
- hindsight_client_api/models/list_tags_response.py +101 -0
- hindsight_client_api/models/memory_item.py +9 -2
- hindsight_client_api/models/mental_model_list_response.py +95 -0
- hindsight_client_api/models/mental_model_response.py +126 -0
- hindsight_client_api/models/mental_model_trigger.py +87 -0
- hindsight_client_api/models/operation_response.py +1 -1
- hindsight_client_api/models/operation_status_response.py +131 -0
- hindsight_client_api/models/operations_list_response.py +8 -2
- hindsight_client_api/models/recall_request.py +22 -3
- hindsight_client_api/models/recall_result.py +9 -2
- hindsight_client_api/models/reflect_based_on.py +115 -0
- hindsight_client_api/models/reflect_directive.py +91 -0
- hindsight_client_api/models/reflect_include_options.py +13 -2
- hindsight_client_api/models/reflect_llm_call.py +89 -0
- hindsight_client_api/models/reflect_mental_model.py +96 -0
- hindsight_client_api/models/reflect_request.py +22 -3
- hindsight_client_api/models/reflect_response.py +34 -11
- hindsight_client_api/models/reflect_tool_call.py +100 -0
- hindsight_client_api/models/reflect_trace.py +105 -0
- hindsight_client_api/models/retain_request.py +10 -3
- hindsight_client_api/models/retain_response.py +21 -3
- hindsight_client_api/models/tag_item.py +89 -0
- hindsight_client_api/models/token_usage.py +91 -0
- hindsight_client_api/models/tool_calls_include_options.py +87 -0
- hindsight_client_api/models/update_directive_request.py +120 -0
- hindsight_client_api/models/update_mental_model_request.py +125 -0
- hindsight_client_api/models/version_response.py +93 -0
- hindsight_client-0.2.1.dist-info/RECORD +0 -62
- {hindsight_client-0.2.1.dist-info → hindsight_client-0.4.0.dist-info}/WHEEL +0 -0
|
@@ -23,6 +23,7 @@ from hindsight_client_api.models.background_response import BackgroundResponse
|
|
|
23
23
|
from hindsight_client_api.models.bank_list_response import BankListResponse
|
|
24
24
|
from hindsight_client_api.models.bank_profile_response import BankProfileResponse
|
|
25
25
|
from hindsight_client_api.models.bank_stats_response import BankStatsResponse
|
|
26
|
+
from hindsight_client_api.models.consolidation_response import ConsolidationResponse
|
|
26
27
|
from hindsight_client_api.models.create_bank_request import CreateBankRequest
|
|
27
28
|
from hindsight_client_api.models.delete_response import DeleteResponse
|
|
28
29
|
from hindsight_client_api.models.update_disposition_request import UpdateDispositionRequest
|
|
@@ -64,9 +65,9 @@ class BanksApi:
|
|
|
64
65
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
65
66
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
66
67
|
) -> BackgroundResponse:
|
|
67
|
-
"""Add/merge memory bank background
|
|
68
|
+
"""(Deprecated) Add/merge memory bank background (deprecated)
|
|
68
69
|
|
|
69
|
-
|
|
70
|
+
Deprecated: Use PUT /mission instead. This endpoint now updates the mission field.
|
|
70
71
|
|
|
71
72
|
:param bank_id: (required)
|
|
72
73
|
:type bank_id: str
|
|
@@ -95,6 +96,7 @@ class BanksApi:
|
|
|
95
96
|
:type _host_index: int, optional
|
|
96
97
|
:return: Returns the result object.
|
|
97
98
|
""" # noqa: E501
|
|
99
|
+
warnings.warn("POST /v1/default/banks/{bank_id}/background is deprecated.", DeprecationWarning)
|
|
98
100
|
|
|
99
101
|
_param = self._add_bank_background_serialize(
|
|
100
102
|
bank_id=bank_id,
|
|
@@ -140,9 +142,9 @@ class BanksApi:
|
|
|
140
142
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
141
143
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
142
144
|
) -> ApiResponse[BackgroundResponse]:
|
|
143
|
-
"""Add/merge memory bank background
|
|
145
|
+
"""(Deprecated) Add/merge memory bank background (deprecated)
|
|
144
146
|
|
|
145
|
-
|
|
147
|
+
Deprecated: Use PUT /mission instead. This endpoint now updates the mission field.
|
|
146
148
|
|
|
147
149
|
:param bank_id: (required)
|
|
148
150
|
:type bank_id: str
|
|
@@ -171,6 +173,7 @@ class BanksApi:
|
|
|
171
173
|
:type _host_index: int, optional
|
|
172
174
|
:return: Returns the result object.
|
|
173
175
|
""" # noqa: E501
|
|
176
|
+
warnings.warn("POST /v1/default/banks/{bank_id}/background is deprecated.", DeprecationWarning)
|
|
174
177
|
|
|
175
178
|
_param = self._add_bank_background_serialize(
|
|
176
179
|
bank_id=bank_id,
|
|
@@ -216,9 +219,9 @@ class BanksApi:
|
|
|
216
219
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
217
220
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
218
221
|
) -> RESTResponseType:
|
|
219
|
-
"""Add/merge memory bank background
|
|
222
|
+
"""(Deprecated) Add/merge memory bank background (deprecated)
|
|
220
223
|
|
|
221
|
-
|
|
224
|
+
Deprecated: Use PUT /mission instead. This endpoint now updates the mission field.
|
|
222
225
|
|
|
223
226
|
:param bank_id: (required)
|
|
224
227
|
:type bank_id: str
|
|
@@ -247,6 +250,7 @@ class BanksApi:
|
|
|
247
250
|
:type _host_index: int, optional
|
|
248
251
|
:return: Returns the result object.
|
|
249
252
|
""" # noqa: E501
|
|
253
|
+
warnings.warn("POST /v1/default/banks/{bank_id}/background is deprecated.", DeprecationWarning)
|
|
250
254
|
|
|
251
255
|
_param = self._add_bank_background_serialize(
|
|
252
256
|
bank_id=bank_id,
|
|
@@ -352,10 +356,9 @@ class BanksApi:
|
|
|
352
356
|
|
|
353
357
|
|
|
354
358
|
@validate_call
|
|
355
|
-
async def
|
|
359
|
+
async def clear_observations(
|
|
356
360
|
self,
|
|
357
361
|
bank_id: StrictStr,
|
|
358
|
-
create_bank_request: CreateBankRequest,
|
|
359
362
|
authorization: Optional[StrictStr] = None,
|
|
360
363
|
_request_timeout: Union[
|
|
361
364
|
None,
|
|
@@ -369,15 +372,13 @@ class BanksApi:
|
|
|
369
372
|
_content_type: Optional[StrictStr] = None,
|
|
370
373
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
371
374
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
372
|
-
) ->
|
|
373
|
-
"""
|
|
375
|
+
) -> DeleteResponse:
|
|
376
|
+
"""Clear all observations
|
|
374
377
|
|
|
375
|
-
|
|
378
|
+
Delete all observations for a memory bank. This is useful for resetting the consolidated knowledge.
|
|
376
379
|
|
|
377
380
|
:param bank_id: (required)
|
|
378
381
|
:type bank_id: str
|
|
379
|
-
:param create_bank_request: (required)
|
|
380
|
-
:type create_bank_request: CreateBankRequest
|
|
381
382
|
:param authorization:
|
|
382
383
|
:type authorization: str
|
|
383
384
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -402,9 +403,8 @@ class BanksApi:
|
|
|
402
403
|
:return: Returns the result object.
|
|
403
404
|
""" # noqa: E501
|
|
404
405
|
|
|
405
|
-
_param = self.
|
|
406
|
+
_param = self._clear_observations_serialize(
|
|
406
407
|
bank_id=bank_id,
|
|
407
|
-
create_bank_request=create_bank_request,
|
|
408
408
|
authorization=authorization,
|
|
409
409
|
_request_auth=_request_auth,
|
|
410
410
|
_content_type=_content_type,
|
|
@@ -413,7 +413,7 @@ class BanksApi:
|
|
|
413
413
|
)
|
|
414
414
|
|
|
415
415
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
416
|
-
'200': "
|
|
416
|
+
'200': "DeleteResponse",
|
|
417
417
|
'422': "HTTPValidationError",
|
|
418
418
|
}
|
|
419
419
|
response_data = await self.api_client.call_api(
|
|
@@ -428,10 +428,9 @@ class BanksApi:
|
|
|
428
428
|
|
|
429
429
|
|
|
430
430
|
@validate_call
|
|
431
|
-
async def
|
|
431
|
+
async def clear_observations_with_http_info(
|
|
432
432
|
self,
|
|
433
433
|
bank_id: StrictStr,
|
|
434
|
-
create_bank_request: CreateBankRequest,
|
|
435
434
|
authorization: Optional[StrictStr] = None,
|
|
436
435
|
_request_timeout: Union[
|
|
437
436
|
None,
|
|
@@ -445,15 +444,13 @@ class BanksApi:
|
|
|
445
444
|
_content_type: Optional[StrictStr] = None,
|
|
446
445
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
447
446
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
448
|
-
) -> ApiResponse[
|
|
449
|
-
"""
|
|
447
|
+
) -> ApiResponse[DeleteResponse]:
|
|
448
|
+
"""Clear all observations
|
|
450
449
|
|
|
451
|
-
|
|
450
|
+
Delete all observations for a memory bank. This is useful for resetting the consolidated knowledge.
|
|
452
451
|
|
|
453
452
|
:param bank_id: (required)
|
|
454
453
|
:type bank_id: str
|
|
455
|
-
:param create_bank_request: (required)
|
|
456
|
-
:type create_bank_request: CreateBankRequest
|
|
457
454
|
:param authorization:
|
|
458
455
|
:type authorization: str
|
|
459
456
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -478,9 +475,8 @@ class BanksApi:
|
|
|
478
475
|
:return: Returns the result object.
|
|
479
476
|
""" # noqa: E501
|
|
480
477
|
|
|
481
|
-
_param = self.
|
|
478
|
+
_param = self._clear_observations_serialize(
|
|
482
479
|
bank_id=bank_id,
|
|
483
|
-
create_bank_request=create_bank_request,
|
|
484
480
|
authorization=authorization,
|
|
485
481
|
_request_auth=_request_auth,
|
|
486
482
|
_content_type=_content_type,
|
|
@@ -489,7 +485,7 @@ class BanksApi:
|
|
|
489
485
|
)
|
|
490
486
|
|
|
491
487
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
492
|
-
'200': "
|
|
488
|
+
'200': "DeleteResponse",
|
|
493
489
|
'422': "HTTPValidationError",
|
|
494
490
|
}
|
|
495
491
|
response_data = await self.api_client.call_api(
|
|
@@ -504,10 +500,9 @@ class BanksApi:
|
|
|
504
500
|
|
|
505
501
|
|
|
506
502
|
@validate_call
|
|
507
|
-
async def
|
|
503
|
+
async def clear_observations_without_preload_content(
|
|
508
504
|
self,
|
|
509
505
|
bank_id: StrictStr,
|
|
510
|
-
create_bank_request: CreateBankRequest,
|
|
511
506
|
authorization: Optional[StrictStr] = None,
|
|
512
507
|
_request_timeout: Union[
|
|
513
508
|
None,
|
|
@@ -522,14 +517,12 @@ class BanksApi:
|
|
|
522
517
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
523
518
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
524
519
|
) -> RESTResponseType:
|
|
525
|
-
"""
|
|
520
|
+
"""Clear all observations
|
|
526
521
|
|
|
527
|
-
|
|
522
|
+
Delete all observations for a memory bank. This is useful for resetting the consolidated knowledge.
|
|
528
523
|
|
|
529
524
|
:param bank_id: (required)
|
|
530
525
|
:type bank_id: str
|
|
531
|
-
:param create_bank_request: (required)
|
|
532
|
-
:type create_bank_request: CreateBankRequest
|
|
533
526
|
:param authorization:
|
|
534
527
|
:type authorization: str
|
|
535
528
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -554,9 +547,8 @@ class BanksApi:
|
|
|
554
547
|
:return: Returns the result object.
|
|
555
548
|
""" # noqa: E501
|
|
556
549
|
|
|
557
|
-
_param = self.
|
|
550
|
+
_param = self._clear_observations_serialize(
|
|
558
551
|
bank_id=bank_id,
|
|
559
|
-
create_bank_request=create_bank_request,
|
|
560
552
|
authorization=authorization,
|
|
561
553
|
_request_auth=_request_auth,
|
|
562
554
|
_content_type=_content_type,
|
|
@@ -565,7 +557,7 @@ class BanksApi:
|
|
|
565
557
|
)
|
|
566
558
|
|
|
567
559
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
568
|
-
'200': "
|
|
560
|
+
'200': "DeleteResponse",
|
|
569
561
|
'422': "HTTPValidationError",
|
|
570
562
|
}
|
|
571
563
|
response_data = await self.api_client.call_api(
|
|
@@ -575,10 +567,9 @@ class BanksApi:
|
|
|
575
567
|
return response_data.response
|
|
576
568
|
|
|
577
569
|
|
|
578
|
-
def
|
|
570
|
+
def _clear_observations_serialize(
|
|
579
571
|
self,
|
|
580
572
|
bank_id,
|
|
581
|
-
create_bank_request,
|
|
582
573
|
authorization,
|
|
583
574
|
_request_auth,
|
|
584
575
|
_content_type,
|
|
@@ -609,8 +600,6 @@ class BanksApi:
|
|
|
609
600
|
_header_params['authorization'] = authorization
|
|
610
601
|
# process the form parameters
|
|
611
602
|
# process the body parameter
|
|
612
|
-
if create_bank_request is not None:
|
|
613
|
-
_body_params = create_bank_request
|
|
614
603
|
|
|
615
604
|
|
|
616
605
|
# set the HTTP header `Accept`
|
|
@@ -621,27 +610,14 @@ class BanksApi:
|
|
|
621
610
|
]
|
|
622
611
|
)
|
|
623
612
|
|
|
624
|
-
# set the HTTP header `Content-Type`
|
|
625
|
-
if _content_type:
|
|
626
|
-
_header_params['Content-Type'] = _content_type
|
|
627
|
-
else:
|
|
628
|
-
_default_content_type = (
|
|
629
|
-
self.api_client.select_header_content_type(
|
|
630
|
-
[
|
|
631
|
-
'application/json'
|
|
632
|
-
]
|
|
633
|
-
)
|
|
634
|
-
)
|
|
635
|
-
if _default_content_type is not None:
|
|
636
|
-
_header_params['Content-Type'] = _default_content_type
|
|
637
613
|
|
|
638
614
|
# authentication setting
|
|
639
615
|
_auth_settings: List[str] = [
|
|
640
616
|
]
|
|
641
617
|
|
|
642
618
|
return self.api_client.param_serialize(
|
|
643
|
-
method='
|
|
644
|
-
resource_path='/v1/default/banks/{bank_id}',
|
|
619
|
+
method='DELETE',
|
|
620
|
+
resource_path='/v1/default/banks/{bank_id}/observations',
|
|
645
621
|
path_params=_path_params,
|
|
646
622
|
query_params=_query_params,
|
|
647
623
|
header_params=_header_params,
|
|
@@ -658,9 +634,10 @@ class BanksApi:
|
|
|
658
634
|
|
|
659
635
|
|
|
660
636
|
@validate_call
|
|
661
|
-
async def
|
|
637
|
+
async def create_or_update_bank(
|
|
662
638
|
self,
|
|
663
639
|
bank_id: StrictStr,
|
|
640
|
+
create_bank_request: CreateBankRequest,
|
|
664
641
|
authorization: Optional[StrictStr] = None,
|
|
665
642
|
_request_timeout: Union[
|
|
666
643
|
None,
|
|
@@ -674,13 +651,15 @@ class BanksApi:
|
|
|
674
651
|
_content_type: Optional[StrictStr] = None,
|
|
675
652
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
676
653
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
677
|
-
) ->
|
|
678
|
-
"""
|
|
654
|
+
) -> BankProfileResponse:
|
|
655
|
+
"""Create or update memory bank
|
|
679
656
|
|
|
680
|
-
|
|
657
|
+
Create a new agent or update existing agent with disposition and mission. Auto-fills missing fields with defaults.
|
|
681
658
|
|
|
682
659
|
:param bank_id: (required)
|
|
683
660
|
:type bank_id: str
|
|
661
|
+
:param create_bank_request: (required)
|
|
662
|
+
:type create_bank_request: CreateBankRequest
|
|
684
663
|
:param authorization:
|
|
685
664
|
:type authorization: str
|
|
686
665
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -705,8 +684,9 @@ class BanksApi:
|
|
|
705
684
|
:return: Returns the result object.
|
|
706
685
|
""" # noqa: E501
|
|
707
686
|
|
|
708
|
-
_param = self.
|
|
687
|
+
_param = self._create_or_update_bank_serialize(
|
|
709
688
|
bank_id=bank_id,
|
|
689
|
+
create_bank_request=create_bank_request,
|
|
710
690
|
authorization=authorization,
|
|
711
691
|
_request_auth=_request_auth,
|
|
712
692
|
_content_type=_content_type,
|
|
@@ -715,7 +695,7 @@ class BanksApi:
|
|
|
715
695
|
)
|
|
716
696
|
|
|
717
697
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
718
|
-
'200': "
|
|
698
|
+
'200': "BankProfileResponse",
|
|
719
699
|
'422': "HTTPValidationError",
|
|
720
700
|
}
|
|
721
701
|
response_data = await self.api_client.call_api(
|
|
@@ -730,9 +710,10 @@ class BanksApi:
|
|
|
730
710
|
|
|
731
711
|
|
|
732
712
|
@validate_call
|
|
733
|
-
async def
|
|
713
|
+
async def create_or_update_bank_with_http_info(
|
|
734
714
|
self,
|
|
735
715
|
bank_id: StrictStr,
|
|
716
|
+
create_bank_request: CreateBankRequest,
|
|
736
717
|
authorization: Optional[StrictStr] = None,
|
|
737
718
|
_request_timeout: Union[
|
|
738
719
|
None,
|
|
@@ -746,13 +727,15 @@ class BanksApi:
|
|
|
746
727
|
_content_type: Optional[StrictStr] = None,
|
|
747
728
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
748
729
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
749
|
-
) -> ApiResponse[
|
|
750
|
-
"""
|
|
730
|
+
) -> ApiResponse[BankProfileResponse]:
|
|
731
|
+
"""Create or update memory bank
|
|
751
732
|
|
|
752
|
-
|
|
733
|
+
Create a new agent or update existing agent with disposition and mission. Auto-fills missing fields with defaults.
|
|
753
734
|
|
|
754
735
|
:param bank_id: (required)
|
|
755
736
|
:type bank_id: str
|
|
737
|
+
:param create_bank_request: (required)
|
|
738
|
+
:type create_bank_request: CreateBankRequest
|
|
756
739
|
:param authorization:
|
|
757
740
|
:type authorization: str
|
|
758
741
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -777,8 +760,9 @@ class BanksApi:
|
|
|
777
760
|
:return: Returns the result object.
|
|
778
761
|
""" # noqa: E501
|
|
779
762
|
|
|
780
|
-
_param = self.
|
|
763
|
+
_param = self._create_or_update_bank_serialize(
|
|
781
764
|
bank_id=bank_id,
|
|
765
|
+
create_bank_request=create_bank_request,
|
|
782
766
|
authorization=authorization,
|
|
783
767
|
_request_auth=_request_auth,
|
|
784
768
|
_content_type=_content_type,
|
|
@@ -787,7 +771,7 @@ class BanksApi:
|
|
|
787
771
|
)
|
|
788
772
|
|
|
789
773
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
790
|
-
'200': "
|
|
774
|
+
'200': "BankProfileResponse",
|
|
791
775
|
'422': "HTTPValidationError",
|
|
792
776
|
}
|
|
793
777
|
response_data = await self.api_client.call_api(
|
|
@@ -802,9 +786,10 @@ class BanksApi:
|
|
|
802
786
|
|
|
803
787
|
|
|
804
788
|
@validate_call
|
|
805
|
-
async def
|
|
789
|
+
async def create_or_update_bank_without_preload_content(
|
|
806
790
|
self,
|
|
807
791
|
bank_id: StrictStr,
|
|
792
|
+
create_bank_request: CreateBankRequest,
|
|
808
793
|
authorization: Optional[StrictStr] = None,
|
|
809
794
|
_request_timeout: Union[
|
|
810
795
|
None,
|
|
@@ -819,12 +804,14 @@ class BanksApi:
|
|
|
819
804
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
820
805
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
821
806
|
) -> RESTResponseType:
|
|
822
|
-
"""
|
|
807
|
+
"""Create or update memory bank
|
|
823
808
|
|
|
824
|
-
|
|
809
|
+
Create a new agent or update existing agent with disposition and mission. Auto-fills missing fields with defaults.
|
|
825
810
|
|
|
826
811
|
:param bank_id: (required)
|
|
827
812
|
:type bank_id: str
|
|
813
|
+
:param create_bank_request: (required)
|
|
814
|
+
:type create_bank_request: CreateBankRequest
|
|
828
815
|
:param authorization:
|
|
829
816
|
:type authorization: str
|
|
830
817
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -849,8 +836,9 @@ class BanksApi:
|
|
|
849
836
|
:return: Returns the result object.
|
|
850
837
|
""" # noqa: E501
|
|
851
838
|
|
|
852
|
-
_param = self.
|
|
839
|
+
_param = self._create_or_update_bank_serialize(
|
|
853
840
|
bank_id=bank_id,
|
|
841
|
+
create_bank_request=create_bank_request,
|
|
854
842
|
authorization=authorization,
|
|
855
843
|
_request_auth=_request_auth,
|
|
856
844
|
_content_type=_content_type,
|
|
@@ -859,7 +847,7 @@ class BanksApi:
|
|
|
859
847
|
)
|
|
860
848
|
|
|
861
849
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
862
|
-
'200': "
|
|
850
|
+
'200': "BankProfileResponse",
|
|
863
851
|
'422': "HTTPValidationError",
|
|
864
852
|
}
|
|
865
853
|
response_data = await self.api_client.call_api(
|
|
@@ -869,9 +857,10 @@ class BanksApi:
|
|
|
869
857
|
return response_data.response
|
|
870
858
|
|
|
871
859
|
|
|
872
|
-
def
|
|
860
|
+
def _create_or_update_bank_serialize(
|
|
873
861
|
self,
|
|
874
862
|
bank_id,
|
|
863
|
+
create_bank_request,
|
|
875
864
|
authorization,
|
|
876
865
|
_request_auth,
|
|
877
866
|
_content_type,
|
|
@@ -902,6 +891,8 @@ class BanksApi:
|
|
|
902
891
|
_header_params['authorization'] = authorization
|
|
903
892
|
# process the form parameters
|
|
904
893
|
# process the body parameter
|
|
894
|
+
if create_bank_request is not None:
|
|
895
|
+
_body_params = create_bank_request
|
|
905
896
|
|
|
906
897
|
|
|
907
898
|
# set the HTTP header `Accept`
|
|
@@ -912,13 +903,26 @@ class BanksApi:
|
|
|
912
903
|
]
|
|
913
904
|
)
|
|
914
905
|
|
|
906
|
+
# set the HTTP header `Content-Type`
|
|
907
|
+
if _content_type:
|
|
908
|
+
_header_params['Content-Type'] = _content_type
|
|
909
|
+
else:
|
|
910
|
+
_default_content_type = (
|
|
911
|
+
self.api_client.select_header_content_type(
|
|
912
|
+
[
|
|
913
|
+
'application/json'
|
|
914
|
+
]
|
|
915
|
+
)
|
|
916
|
+
)
|
|
917
|
+
if _default_content_type is not None:
|
|
918
|
+
_header_params['Content-Type'] = _default_content_type
|
|
915
919
|
|
|
916
920
|
# authentication setting
|
|
917
921
|
_auth_settings: List[str] = [
|
|
918
922
|
]
|
|
919
923
|
|
|
920
924
|
return self.api_client.param_serialize(
|
|
921
|
-
method='
|
|
925
|
+
method='PUT',
|
|
922
926
|
resource_path='/v1/default/banks/{bank_id}',
|
|
923
927
|
path_params=_path_params,
|
|
924
928
|
query_params=_query_params,
|
|
@@ -936,9 +940,10 @@ class BanksApi:
|
|
|
936
940
|
|
|
937
941
|
|
|
938
942
|
@validate_call
|
|
939
|
-
async def
|
|
943
|
+
async def delete_bank(
|
|
940
944
|
self,
|
|
941
945
|
bank_id: StrictStr,
|
|
946
|
+
authorization: Optional[StrictStr] = None,
|
|
942
947
|
_request_timeout: Union[
|
|
943
948
|
None,
|
|
944
949
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -951,13 +956,15 @@ class BanksApi:
|
|
|
951
956
|
_content_type: Optional[StrictStr] = None,
|
|
952
957
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
953
958
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
954
|
-
) ->
|
|
955
|
-
"""
|
|
959
|
+
) -> DeleteResponse:
|
|
960
|
+
"""Delete memory bank
|
|
956
961
|
|
|
957
|
-
|
|
962
|
+
Delete an entire memory bank including all memories, entities, documents, and the bank profile itself. This is a destructive operation that cannot be undone.
|
|
958
963
|
|
|
959
964
|
:param bank_id: (required)
|
|
960
965
|
:type bank_id: str
|
|
966
|
+
:param authorization:
|
|
967
|
+
:type authorization: str
|
|
961
968
|
:param _request_timeout: timeout setting for this request. If one
|
|
962
969
|
number provided, it will be total request
|
|
963
970
|
timeout. It can also be a pair (tuple) of
|
|
@@ -980,8 +987,9 @@ class BanksApi:
|
|
|
980
987
|
:return: Returns the result object.
|
|
981
988
|
""" # noqa: E501
|
|
982
989
|
|
|
983
|
-
_param = self.
|
|
990
|
+
_param = self._delete_bank_serialize(
|
|
984
991
|
bank_id=bank_id,
|
|
992
|
+
authorization=authorization,
|
|
985
993
|
_request_auth=_request_auth,
|
|
986
994
|
_content_type=_content_type,
|
|
987
995
|
_headers=_headers,
|
|
@@ -989,7 +997,7 @@ class BanksApi:
|
|
|
989
997
|
)
|
|
990
998
|
|
|
991
999
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
992
|
-
'200': "
|
|
1000
|
+
'200': "DeleteResponse",
|
|
993
1001
|
'422': "HTTPValidationError",
|
|
994
1002
|
}
|
|
995
1003
|
response_data = await self.api_client.call_api(
|
|
@@ -1004,9 +1012,10 @@ class BanksApi:
|
|
|
1004
1012
|
|
|
1005
1013
|
|
|
1006
1014
|
@validate_call
|
|
1007
|
-
async def
|
|
1015
|
+
async def delete_bank_with_http_info(
|
|
1008
1016
|
self,
|
|
1009
1017
|
bank_id: StrictStr,
|
|
1018
|
+
authorization: Optional[StrictStr] = None,
|
|
1010
1019
|
_request_timeout: Union[
|
|
1011
1020
|
None,
|
|
1012
1021
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1019,13 +1028,15 @@ class BanksApi:
|
|
|
1019
1028
|
_content_type: Optional[StrictStr] = None,
|
|
1020
1029
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1021
1030
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1022
|
-
) -> ApiResponse[
|
|
1023
|
-
"""
|
|
1031
|
+
) -> ApiResponse[DeleteResponse]:
|
|
1032
|
+
"""Delete memory bank
|
|
1024
1033
|
|
|
1025
|
-
|
|
1034
|
+
Delete an entire memory bank including all memories, entities, documents, and the bank profile itself. This is a destructive operation that cannot be undone.
|
|
1026
1035
|
|
|
1027
1036
|
:param bank_id: (required)
|
|
1028
1037
|
:type bank_id: str
|
|
1038
|
+
:param authorization:
|
|
1039
|
+
:type authorization: str
|
|
1029
1040
|
:param _request_timeout: timeout setting for this request. If one
|
|
1030
1041
|
number provided, it will be total request
|
|
1031
1042
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1048,8 +1059,9 @@ class BanksApi:
|
|
|
1048
1059
|
:return: Returns the result object.
|
|
1049
1060
|
""" # noqa: E501
|
|
1050
1061
|
|
|
1051
|
-
_param = self.
|
|
1062
|
+
_param = self._delete_bank_serialize(
|
|
1052
1063
|
bank_id=bank_id,
|
|
1064
|
+
authorization=authorization,
|
|
1053
1065
|
_request_auth=_request_auth,
|
|
1054
1066
|
_content_type=_content_type,
|
|
1055
1067
|
_headers=_headers,
|
|
@@ -1057,7 +1069,7 @@ class BanksApi:
|
|
|
1057
1069
|
)
|
|
1058
1070
|
|
|
1059
1071
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1060
|
-
'200': "
|
|
1072
|
+
'200': "DeleteResponse",
|
|
1061
1073
|
'422': "HTTPValidationError",
|
|
1062
1074
|
}
|
|
1063
1075
|
response_data = await self.api_client.call_api(
|
|
@@ -1072,9 +1084,10 @@ class BanksApi:
|
|
|
1072
1084
|
|
|
1073
1085
|
|
|
1074
1086
|
@validate_call
|
|
1075
|
-
async def
|
|
1087
|
+
async def delete_bank_without_preload_content(
|
|
1076
1088
|
self,
|
|
1077
1089
|
bank_id: StrictStr,
|
|
1090
|
+
authorization: Optional[StrictStr] = None,
|
|
1078
1091
|
_request_timeout: Union[
|
|
1079
1092
|
None,
|
|
1080
1093
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1088,12 +1101,14 @@ class BanksApi:
|
|
|
1088
1101
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1089
1102
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1090
1103
|
) -> RESTResponseType:
|
|
1091
|
-
"""
|
|
1104
|
+
"""Delete memory bank
|
|
1092
1105
|
|
|
1093
|
-
|
|
1106
|
+
Delete an entire memory bank including all memories, entities, documents, and the bank profile itself. This is a destructive operation that cannot be undone.
|
|
1094
1107
|
|
|
1095
1108
|
:param bank_id: (required)
|
|
1096
1109
|
:type bank_id: str
|
|
1110
|
+
:param authorization:
|
|
1111
|
+
:type authorization: str
|
|
1097
1112
|
:param _request_timeout: timeout setting for this request. If one
|
|
1098
1113
|
number provided, it will be total request
|
|
1099
1114
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1116,8 +1131,9 @@ class BanksApi:
|
|
|
1116
1131
|
:return: Returns the result object.
|
|
1117
1132
|
""" # noqa: E501
|
|
1118
1133
|
|
|
1119
|
-
_param = self.
|
|
1134
|
+
_param = self._delete_bank_serialize(
|
|
1120
1135
|
bank_id=bank_id,
|
|
1136
|
+
authorization=authorization,
|
|
1121
1137
|
_request_auth=_request_auth,
|
|
1122
1138
|
_content_type=_content_type,
|
|
1123
1139
|
_headers=_headers,
|
|
@@ -1125,7 +1141,7 @@ class BanksApi:
|
|
|
1125
1141
|
)
|
|
1126
1142
|
|
|
1127
1143
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1128
|
-
'200': "
|
|
1144
|
+
'200': "DeleteResponse",
|
|
1129
1145
|
'422': "HTTPValidationError",
|
|
1130
1146
|
}
|
|
1131
1147
|
response_data = await self.api_client.call_api(
|
|
@@ -1135,9 +1151,10 @@ class BanksApi:
|
|
|
1135
1151
|
return response_data.response
|
|
1136
1152
|
|
|
1137
1153
|
|
|
1138
|
-
def
|
|
1154
|
+
def _delete_bank_serialize(
|
|
1139
1155
|
self,
|
|
1140
1156
|
bank_id,
|
|
1157
|
+
authorization,
|
|
1141
1158
|
_request_auth,
|
|
1142
1159
|
_content_type,
|
|
1143
1160
|
_headers,
|
|
@@ -1163,6 +1180,8 @@ class BanksApi:
|
|
|
1163
1180
|
_path_params['bank_id'] = bank_id
|
|
1164
1181
|
# process the query parameters
|
|
1165
1182
|
# process the header parameters
|
|
1183
|
+
if authorization is not None:
|
|
1184
|
+
_header_params['authorization'] = authorization
|
|
1166
1185
|
# process the form parameters
|
|
1167
1186
|
# process the body parameter
|
|
1168
1187
|
|
|
@@ -1181,8 +1200,8 @@ class BanksApi:
|
|
|
1181
1200
|
]
|
|
1182
1201
|
|
|
1183
1202
|
return self.api_client.param_serialize(
|
|
1184
|
-
method='
|
|
1185
|
-
resource_path='/v1/default/banks/{bank_id}
|
|
1203
|
+
method='DELETE',
|
|
1204
|
+
resource_path='/v1/default/banks/{bank_id}',
|
|
1186
1205
|
path_params=_path_params,
|
|
1187
1206
|
query_params=_query_params,
|
|
1188
1207
|
header_params=_header_params,
|
|
@@ -1199,7 +1218,7 @@ class BanksApi:
|
|
|
1199
1218
|
|
|
1200
1219
|
|
|
1201
1220
|
@validate_call
|
|
1202
|
-
async def
|
|
1221
|
+
async def get_agent_stats(
|
|
1203
1222
|
self,
|
|
1204
1223
|
bank_id: StrictStr,
|
|
1205
1224
|
authorization: Optional[StrictStr] = None,
|
|
@@ -1215,10 +1234,10 @@ class BanksApi:
|
|
|
1215
1234
|
_content_type: Optional[StrictStr] = None,
|
|
1216
1235
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1217
1236
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1218
|
-
) ->
|
|
1219
|
-
"""Get memory bank
|
|
1237
|
+
) -> BankStatsResponse:
|
|
1238
|
+
"""Get statistics for memory bank
|
|
1220
1239
|
|
|
1221
|
-
Get
|
|
1240
|
+
Get statistics about nodes and links for a specific agent
|
|
1222
1241
|
|
|
1223
1242
|
:param bank_id: (required)
|
|
1224
1243
|
:type bank_id: str
|
|
@@ -1246,7 +1265,7 @@ class BanksApi:
|
|
|
1246
1265
|
:return: Returns the result object.
|
|
1247
1266
|
""" # noqa: E501
|
|
1248
1267
|
|
|
1249
|
-
_param = self.
|
|
1268
|
+
_param = self._get_agent_stats_serialize(
|
|
1250
1269
|
bank_id=bank_id,
|
|
1251
1270
|
authorization=authorization,
|
|
1252
1271
|
_request_auth=_request_auth,
|
|
@@ -1256,7 +1275,7 @@ class BanksApi:
|
|
|
1256
1275
|
)
|
|
1257
1276
|
|
|
1258
1277
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1259
|
-
'200': "
|
|
1278
|
+
'200': "BankStatsResponse",
|
|
1260
1279
|
'422': "HTTPValidationError",
|
|
1261
1280
|
}
|
|
1262
1281
|
response_data = await self.api_client.call_api(
|
|
@@ -1271,7 +1290,7 @@ class BanksApi:
|
|
|
1271
1290
|
|
|
1272
1291
|
|
|
1273
1292
|
@validate_call
|
|
1274
|
-
async def
|
|
1293
|
+
async def get_agent_stats_with_http_info(
|
|
1275
1294
|
self,
|
|
1276
1295
|
bank_id: StrictStr,
|
|
1277
1296
|
authorization: Optional[StrictStr] = None,
|
|
@@ -1287,10 +1306,10 @@ class BanksApi:
|
|
|
1287
1306
|
_content_type: Optional[StrictStr] = None,
|
|
1288
1307
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1289
1308
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1290
|
-
) -> ApiResponse[
|
|
1291
|
-
"""Get memory bank
|
|
1309
|
+
) -> ApiResponse[BankStatsResponse]:
|
|
1310
|
+
"""Get statistics for memory bank
|
|
1292
1311
|
|
|
1293
|
-
Get
|
|
1312
|
+
Get statistics about nodes and links for a specific agent
|
|
1294
1313
|
|
|
1295
1314
|
:param bank_id: (required)
|
|
1296
1315
|
:type bank_id: str
|
|
@@ -1318,7 +1337,7 @@ class BanksApi:
|
|
|
1318
1337
|
:return: Returns the result object.
|
|
1319
1338
|
""" # noqa: E501
|
|
1320
1339
|
|
|
1321
|
-
_param = self.
|
|
1340
|
+
_param = self._get_agent_stats_serialize(
|
|
1322
1341
|
bank_id=bank_id,
|
|
1323
1342
|
authorization=authorization,
|
|
1324
1343
|
_request_auth=_request_auth,
|
|
@@ -1328,7 +1347,7 @@ class BanksApi:
|
|
|
1328
1347
|
)
|
|
1329
1348
|
|
|
1330
1349
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1331
|
-
'200': "
|
|
1350
|
+
'200': "BankStatsResponse",
|
|
1332
1351
|
'422': "HTTPValidationError",
|
|
1333
1352
|
}
|
|
1334
1353
|
response_data = await self.api_client.call_api(
|
|
@@ -1343,7 +1362,7 @@ class BanksApi:
|
|
|
1343
1362
|
|
|
1344
1363
|
|
|
1345
1364
|
@validate_call
|
|
1346
|
-
async def
|
|
1365
|
+
async def get_agent_stats_without_preload_content(
|
|
1347
1366
|
self,
|
|
1348
1367
|
bank_id: StrictStr,
|
|
1349
1368
|
authorization: Optional[StrictStr] = None,
|
|
@@ -1360,9 +1379,9 @@ class BanksApi:
|
|
|
1360
1379
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1361
1380
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1362
1381
|
) -> RESTResponseType:
|
|
1363
|
-
"""Get memory bank
|
|
1382
|
+
"""Get statistics for memory bank
|
|
1364
1383
|
|
|
1365
|
-
Get
|
|
1384
|
+
Get statistics about nodes and links for a specific agent
|
|
1366
1385
|
|
|
1367
1386
|
:param bank_id: (required)
|
|
1368
1387
|
:type bank_id: str
|
|
@@ -1390,7 +1409,7 @@ class BanksApi:
|
|
|
1390
1409
|
:return: Returns the result object.
|
|
1391
1410
|
""" # noqa: E501
|
|
1392
1411
|
|
|
1393
|
-
_param = self.
|
|
1412
|
+
_param = self._get_agent_stats_serialize(
|
|
1394
1413
|
bank_id=bank_id,
|
|
1395
1414
|
authorization=authorization,
|
|
1396
1415
|
_request_auth=_request_auth,
|
|
@@ -1400,7 +1419,7 @@ class BanksApi:
|
|
|
1400
1419
|
)
|
|
1401
1420
|
|
|
1402
1421
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1403
|
-
'200': "
|
|
1422
|
+
'200': "BankStatsResponse",
|
|
1404
1423
|
'422': "HTTPValidationError",
|
|
1405
1424
|
}
|
|
1406
1425
|
response_data = await self.api_client.call_api(
|
|
@@ -1410,7 +1429,7 @@ class BanksApi:
|
|
|
1410
1429
|
return response_data.response
|
|
1411
1430
|
|
|
1412
1431
|
|
|
1413
|
-
def
|
|
1432
|
+
def _get_agent_stats_serialize(
|
|
1414
1433
|
self,
|
|
1415
1434
|
bank_id,
|
|
1416
1435
|
authorization,
|
|
@@ -1460,7 +1479,7 @@ class BanksApi:
|
|
|
1460
1479
|
|
|
1461
1480
|
return self.api_client.param_serialize(
|
|
1462
1481
|
method='GET',
|
|
1463
|
-
resource_path='/v1/default/banks/{bank_id}/
|
|
1482
|
+
resource_path='/v1/default/banks/{bank_id}/stats',
|
|
1464
1483
|
path_params=_path_params,
|
|
1465
1484
|
query_params=_query_params,
|
|
1466
1485
|
header_params=_header_params,
|
|
@@ -1477,8 +1496,9 @@ class BanksApi:
|
|
|
1477
1496
|
|
|
1478
1497
|
|
|
1479
1498
|
@validate_call
|
|
1480
|
-
async def
|
|
1499
|
+
async def get_bank_profile(
|
|
1481
1500
|
self,
|
|
1501
|
+
bank_id: StrictStr,
|
|
1482
1502
|
authorization: Optional[StrictStr] = None,
|
|
1483
1503
|
_request_timeout: Union[
|
|
1484
1504
|
None,
|
|
@@ -1492,11 +1512,13 @@ class BanksApi:
|
|
|
1492
1512
|
_content_type: Optional[StrictStr] = None,
|
|
1493
1513
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1494
1514
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1495
|
-
) ->
|
|
1496
|
-
"""
|
|
1515
|
+
) -> BankProfileResponse:
|
|
1516
|
+
"""Get memory bank profile
|
|
1497
1517
|
|
|
1498
|
-
Get a
|
|
1518
|
+
Get disposition traits and mission for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1499
1519
|
|
|
1520
|
+
:param bank_id: (required)
|
|
1521
|
+
:type bank_id: str
|
|
1500
1522
|
:param authorization:
|
|
1501
1523
|
:type authorization: str
|
|
1502
1524
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1521,7 +1543,8 @@ class BanksApi:
|
|
|
1521
1543
|
:return: Returns the result object.
|
|
1522
1544
|
""" # noqa: E501
|
|
1523
1545
|
|
|
1524
|
-
_param = self.
|
|
1546
|
+
_param = self._get_bank_profile_serialize(
|
|
1547
|
+
bank_id=bank_id,
|
|
1525
1548
|
authorization=authorization,
|
|
1526
1549
|
_request_auth=_request_auth,
|
|
1527
1550
|
_content_type=_content_type,
|
|
@@ -1530,7 +1553,7 @@ class BanksApi:
|
|
|
1530
1553
|
)
|
|
1531
1554
|
|
|
1532
1555
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1533
|
-
'200': "
|
|
1556
|
+
'200': "BankProfileResponse",
|
|
1534
1557
|
'422': "HTTPValidationError",
|
|
1535
1558
|
}
|
|
1536
1559
|
response_data = await self.api_client.call_api(
|
|
@@ -1545,8 +1568,9 @@ class BanksApi:
|
|
|
1545
1568
|
|
|
1546
1569
|
|
|
1547
1570
|
@validate_call
|
|
1548
|
-
async def
|
|
1571
|
+
async def get_bank_profile_with_http_info(
|
|
1549
1572
|
self,
|
|
1573
|
+
bank_id: StrictStr,
|
|
1550
1574
|
authorization: Optional[StrictStr] = None,
|
|
1551
1575
|
_request_timeout: Union[
|
|
1552
1576
|
None,
|
|
@@ -1560,11 +1584,13 @@ class BanksApi:
|
|
|
1560
1584
|
_content_type: Optional[StrictStr] = None,
|
|
1561
1585
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1562
1586
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1563
|
-
) -> ApiResponse[
|
|
1564
|
-
"""
|
|
1587
|
+
) -> ApiResponse[BankProfileResponse]:
|
|
1588
|
+
"""Get memory bank profile
|
|
1565
1589
|
|
|
1566
|
-
Get a
|
|
1590
|
+
Get disposition traits and mission for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1567
1591
|
|
|
1592
|
+
:param bank_id: (required)
|
|
1593
|
+
:type bank_id: str
|
|
1568
1594
|
:param authorization:
|
|
1569
1595
|
:type authorization: str
|
|
1570
1596
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1589,7 +1615,8 @@ class BanksApi:
|
|
|
1589
1615
|
:return: Returns the result object.
|
|
1590
1616
|
""" # noqa: E501
|
|
1591
1617
|
|
|
1592
|
-
_param = self.
|
|
1618
|
+
_param = self._get_bank_profile_serialize(
|
|
1619
|
+
bank_id=bank_id,
|
|
1593
1620
|
authorization=authorization,
|
|
1594
1621
|
_request_auth=_request_auth,
|
|
1595
1622
|
_content_type=_content_type,
|
|
@@ -1598,7 +1625,7 @@ class BanksApi:
|
|
|
1598
1625
|
)
|
|
1599
1626
|
|
|
1600
1627
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1601
|
-
'200': "
|
|
1628
|
+
'200': "BankProfileResponse",
|
|
1602
1629
|
'422': "HTTPValidationError",
|
|
1603
1630
|
}
|
|
1604
1631
|
response_data = await self.api_client.call_api(
|
|
@@ -1613,8 +1640,9 @@ class BanksApi:
|
|
|
1613
1640
|
|
|
1614
1641
|
|
|
1615
1642
|
@validate_call
|
|
1616
|
-
async def
|
|
1643
|
+
async def get_bank_profile_without_preload_content(
|
|
1617
1644
|
self,
|
|
1645
|
+
bank_id: StrictStr,
|
|
1618
1646
|
authorization: Optional[StrictStr] = None,
|
|
1619
1647
|
_request_timeout: Union[
|
|
1620
1648
|
None,
|
|
@@ -1629,10 +1657,12 @@ class BanksApi:
|
|
|
1629
1657
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1630
1658
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1631
1659
|
) -> RESTResponseType:
|
|
1632
|
-
"""
|
|
1660
|
+
"""Get memory bank profile
|
|
1633
1661
|
|
|
1634
|
-
Get a
|
|
1662
|
+
Get disposition traits and mission for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1635
1663
|
|
|
1664
|
+
:param bank_id: (required)
|
|
1665
|
+
:type bank_id: str
|
|
1636
1666
|
:param authorization:
|
|
1637
1667
|
:type authorization: str
|
|
1638
1668
|
:param _request_timeout: timeout setting for this request. If one
|
|
@@ -1657,7 +1687,8 @@ class BanksApi:
|
|
|
1657
1687
|
:return: Returns the result object.
|
|
1658
1688
|
""" # noqa: E501
|
|
1659
1689
|
|
|
1660
|
-
_param = self.
|
|
1690
|
+
_param = self._get_bank_profile_serialize(
|
|
1691
|
+
bank_id=bank_id,
|
|
1661
1692
|
authorization=authorization,
|
|
1662
1693
|
_request_auth=_request_auth,
|
|
1663
1694
|
_content_type=_content_type,
|
|
@@ -1666,7 +1697,7 @@ class BanksApi:
|
|
|
1666
1697
|
)
|
|
1667
1698
|
|
|
1668
1699
|
_response_types_map: Dict[str, Optional[str]] = {
|
|
1669
|
-
'200': "
|
|
1700
|
+
'200': "BankProfileResponse",
|
|
1670
1701
|
'422': "HTTPValidationError",
|
|
1671
1702
|
}
|
|
1672
1703
|
response_data = await self.api_client.call_api(
|
|
@@ -1676,8 +1707,9 @@ class BanksApi:
|
|
|
1676
1707
|
return response_data.response
|
|
1677
1708
|
|
|
1678
1709
|
|
|
1679
|
-
def
|
|
1710
|
+
def _get_bank_profile_serialize(
|
|
1680
1711
|
self,
|
|
1712
|
+
bank_id,
|
|
1681
1713
|
authorization,
|
|
1682
1714
|
_request_auth,
|
|
1683
1715
|
_content_type,
|
|
@@ -1700,6 +1732,8 @@ class BanksApi:
|
|
|
1700
1732
|
_body_params: Optional[bytes] = None
|
|
1701
1733
|
|
|
1702
1734
|
# process the path parameters
|
|
1735
|
+
if bank_id is not None:
|
|
1736
|
+
_path_params['bank_id'] = bank_id
|
|
1703
1737
|
# process the query parameters
|
|
1704
1738
|
# process the header parameters
|
|
1705
1739
|
if authorization is not None:
|
|
@@ -1723,7 +1757,854 @@ class BanksApi:
|
|
|
1723
1757
|
|
|
1724
1758
|
return self.api_client.param_serialize(
|
|
1725
1759
|
method='GET',
|
|
1726
|
-
resource_path='/v1/default/banks',
|
|
1760
|
+
resource_path='/v1/default/banks/{bank_id}/profile',
|
|
1761
|
+
path_params=_path_params,
|
|
1762
|
+
query_params=_query_params,
|
|
1763
|
+
header_params=_header_params,
|
|
1764
|
+
body=_body_params,
|
|
1765
|
+
post_params=_form_params,
|
|
1766
|
+
files=_files,
|
|
1767
|
+
auth_settings=_auth_settings,
|
|
1768
|
+
collection_formats=_collection_formats,
|
|
1769
|
+
_host=_host,
|
|
1770
|
+
_request_auth=_request_auth
|
|
1771
|
+
)
|
|
1772
|
+
|
|
1773
|
+
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
@validate_call
|
|
1777
|
+
async def list_banks(
|
|
1778
|
+
self,
|
|
1779
|
+
authorization: Optional[StrictStr] = None,
|
|
1780
|
+
_request_timeout: Union[
|
|
1781
|
+
None,
|
|
1782
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1783
|
+
Tuple[
|
|
1784
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1785
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1786
|
+
]
|
|
1787
|
+
] = None,
|
|
1788
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1789
|
+
_content_type: Optional[StrictStr] = None,
|
|
1790
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1791
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1792
|
+
) -> BankListResponse:
|
|
1793
|
+
"""List all memory banks
|
|
1794
|
+
|
|
1795
|
+
Get a list of all agents with their profiles
|
|
1796
|
+
|
|
1797
|
+
:param authorization:
|
|
1798
|
+
:type authorization: str
|
|
1799
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1800
|
+
number provided, it will be total request
|
|
1801
|
+
timeout. It can also be a pair (tuple) of
|
|
1802
|
+
(connection, read) timeouts.
|
|
1803
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1804
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1805
|
+
request; this effectively ignores the
|
|
1806
|
+
authentication in the spec for a single request.
|
|
1807
|
+
:type _request_auth: dict, optional
|
|
1808
|
+
:param _content_type: force content-type for the request.
|
|
1809
|
+
:type _content_type: str, Optional
|
|
1810
|
+
:param _headers: set to override the headers for a single
|
|
1811
|
+
request; this effectively ignores the headers
|
|
1812
|
+
in the spec for a single request.
|
|
1813
|
+
:type _headers: dict, optional
|
|
1814
|
+
:param _host_index: set to override the host_index for a single
|
|
1815
|
+
request; this effectively ignores the host_index
|
|
1816
|
+
in the spec for a single request.
|
|
1817
|
+
:type _host_index: int, optional
|
|
1818
|
+
:return: Returns the result object.
|
|
1819
|
+
""" # noqa: E501
|
|
1820
|
+
|
|
1821
|
+
_param = self._list_banks_serialize(
|
|
1822
|
+
authorization=authorization,
|
|
1823
|
+
_request_auth=_request_auth,
|
|
1824
|
+
_content_type=_content_type,
|
|
1825
|
+
_headers=_headers,
|
|
1826
|
+
_host_index=_host_index
|
|
1827
|
+
)
|
|
1828
|
+
|
|
1829
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1830
|
+
'200': "BankListResponse",
|
|
1831
|
+
'422': "HTTPValidationError",
|
|
1832
|
+
}
|
|
1833
|
+
response_data = await self.api_client.call_api(
|
|
1834
|
+
*_param,
|
|
1835
|
+
_request_timeout=_request_timeout
|
|
1836
|
+
)
|
|
1837
|
+
await response_data.read()
|
|
1838
|
+
return self.api_client.response_deserialize(
|
|
1839
|
+
response_data=response_data,
|
|
1840
|
+
response_types_map=_response_types_map,
|
|
1841
|
+
).data
|
|
1842
|
+
|
|
1843
|
+
|
|
1844
|
+
@validate_call
|
|
1845
|
+
async def list_banks_with_http_info(
|
|
1846
|
+
self,
|
|
1847
|
+
authorization: Optional[StrictStr] = None,
|
|
1848
|
+
_request_timeout: Union[
|
|
1849
|
+
None,
|
|
1850
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1851
|
+
Tuple[
|
|
1852
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1853
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1854
|
+
]
|
|
1855
|
+
] = None,
|
|
1856
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1857
|
+
_content_type: Optional[StrictStr] = None,
|
|
1858
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1859
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1860
|
+
) -> ApiResponse[BankListResponse]:
|
|
1861
|
+
"""List all memory banks
|
|
1862
|
+
|
|
1863
|
+
Get a list of all agents with their profiles
|
|
1864
|
+
|
|
1865
|
+
:param authorization:
|
|
1866
|
+
:type authorization: str
|
|
1867
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1868
|
+
number provided, it will be total request
|
|
1869
|
+
timeout. It can also be a pair (tuple) of
|
|
1870
|
+
(connection, read) timeouts.
|
|
1871
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1872
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1873
|
+
request; this effectively ignores the
|
|
1874
|
+
authentication in the spec for a single request.
|
|
1875
|
+
:type _request_auth: dict, optional
|
|
1876
|
+
:param _content_type: force content-type for the request.
|
|
1877
|
+
:type _content_type: str, Optional
|
|
1878
|
+
:param _headers: set to override the headers for a single
|
|
1879
|
+
request; this effectively ignores the headers
|
|
1880
|
+
in the spec for a single request.
|
|
1881
|
+
:type _headers: dict, optional
|
|
1882
|
+
:param _host_index: set to override the host_index for a single
|
|
1883
|
+
request; this effectively ignores the host_index
|
|
1884
|
+
in the spec for a single request.
|
|
1885
|
+
:type _host_index: int, optional
|
|
1886
|
+
:return: Returns the result object.
|
|
1887
|
+
""" # noqa: E501
|
|
1888
|
+
|
|
1889
|
+
_param = self._list_banks_serialize(
|
|
1890
|
+
authorization=authorization,
|
|
1891
|
+
_request_auth=_request_auth,
|
|
1892
|
+
_content_type=_content_type,
|
|
1893
|
+
_headers=_headers,
|
|
1894
|
+
_host_index=_host_index
|
|
1895
|
+
)
|
|
1896
|
+
|
|
1897
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1898
|
+
'200': "BankListResponse",
|
|
1899
|
+
'422': "HTTPValidationError",
|
|
1900
|
+
}
|
|
1901
|
+
response_data = await self.api_client.call_api(
|
|
1902
|
+
*_param,
|
|
1903
|
+
_request_timeout=_request_timeout
|
|
1904
|
+
)
|
|
1905
|
+
await response_data.read()
|
|
1906
|
+
return self.api_client.response_deserialize(
|
|
1907
|
+
response_data=response_data,
|
|
1908
|
+
response_types_map=_response_types_map,
|
|
1909
|
+
)
|
|
1910
|
+
|
|
1911
|
+
|
|
1912
|
+
@validate_call
|
|
1913
|
+
async def list_banks_without_preload_content(
|
|
1914
|
+
self,
|
|
1915
|
+
authorization: Optional[StrictStr] = None,
|
|
1916
|
+
_request_timeout: Union[
|
|
1917
|
+
None,
|
|
1918
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1919
|
+
Tuple[
|
|
1920
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1921
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1922
|
+
]
|
|
1923
|
+
] = None,
|
|
1924
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1925
|
+
_content_type: Optional[StrictStr] = None,
|
|
1926
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1927
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1928
|
+
) -> RESTResponseType:
|
|
1929
|
+
"""List all memory banks
|
|
1930
|
+
|
|
1931
|
+
Get a list of all agents with their profiles
|
|
1932
|
+
|
|
1933
|
+
:param authorization:
|
|
1934
|
+
:type authorization: str
|
|
1935
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1936
|
+
number provided, it will be total request
|
|
1937
|
+
timeout. It can also be a pair (tuple) of
|
|
1938
|
+
(connection, read) timeouts.
|
|
1939
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1940
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1941
|
+
request; this effectively ignores the
|
|
1942
|
+
authentication in the spec for a single request.
|
|
1943
|
+
:type _request_auth: dict, optional
|
|
1944
|
+
:param _content_type: force content-type for the request.
|
|
1945
|
+
:type _content_type: str, Optional
|
|
1946
|
+
:param _headers: set to override the headers for a single
|
|
1947
|
+
request; this effectively ignores the headers
|
|
1948
|
+
in the spec for a single request.
|
|
1949
|
+
:type _headers: dict, optional
|
|
1950
|
+
:param _host_index: set to override the host_index for a single
|
|
1951
|
+
request; this effectively ignores the host_index
|
|
1952
|
+
in the spec for a single request.
|
|
1953
|
+
:type _host_index: int, optional
|
|
1954
|
+
:return: Returns the result object.
|
|
1955
|
+
""" # noqa: E501
|
|
1956
|
+
|
|
1957
|
+
_param = self._list_banks_serialize(
|
|
1958
|
+
authorization=authorization,
|
|
1959
|
+
_request_auth=_request_auth,
|
|
1960
|
+
_content_type=_content_type,
|
|
1961
|
+
_headers=_headers,
|
|
1962
|
+
_host_index=_host_index
|
|
1963
|
+
)
|
|
1964
|
+
|
|
1965
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1966
|
+
'200': "BankListResponse",
|
|
1967
|
+
'422': "HTTPValidationError",
|
|
1968
|
+
}
|
|
1969
|
+
response_data = await self.api_client.call_api(
|
|
1970
|
+
*_param,
|
|
1971
|
+
_request_timeout=_request_timeout
|
|
1972
|
+
)
|
|
1973
|
+
return response_data.response
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
def _list_banks_serialize(
|
|
1977
|
+
self,
|
|
1978
|
+
authorization,
|
|
1979
|
+
_request_auth,
|
|
1980
|
+
_content_type,
|
|
1981
|
+
_headers,
|
|
1982
|
+
_host_index,
|
|
1983
|
+
) -> RequestSerialized:
|
|
1984
|
+
|
|
1985
|
+
_host = None
|
|
1986
|
+
|
|
1987
|
+
_collection_formats: Dict[str, str] = {
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
_path_params: Dict[str, str] = {}
|
|
1991
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1992
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1993
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1994
|
+
_files: Dict[
|
|
1995
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
1996
|
+
] = {}
|
|
1997
|
+
_body_params: Optional[bytes] = None
|
|
1998
|
+
|
|
1999
|
+
# process the path parameters
|
|
2000
|
+
# process the query parameters
|
|
2001
|
+
# process the header parameters
|
|
2002
|
+
if authorization is not None:
|
|
2003
|
+
_header_params['authorization'] = authorization
|
|
2004
|
+
# process the form parameters
|
|
2005
|
+
# process the body parameter
|
|
2006
|
+
|
|
2007
|
+
|
|
2008
|
+
# set the HTTP header `Accept`
|
|
2009
|
+
if 'Accept' not in _header_params:
|
|
2010
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2011
|
+
[
|
|
2012
|
+
'application/json'
|
|
2013
|
+
]
|
|
2014
|
+
)
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
# authentication setting
|
|
2018
|
+
_auth_settings: List[str] = [
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
return self.api_client.param_serialize(
|
|
2022
|
+
method='GET',
|
|
2023
|
+
resource_path='/v1/default/banks',
|
|
2024
|
+
path_params=_path_params,
|
|
2025
|
+
query_params=_query_params,
|
|
2026
|
+
header_params=_header_params,
|
|
2027
|
+
body=_body_params,
|
|
2028
|
+
post_params=_form_params,
|
|
2029
|
+
files=_files,
|
|
2030
|
+
auth_settings=_auth_settings,
|
|
2031
|
+
collection_formats=_collection_formats,
|
|
2032
|
+
_host=_host,
|
|
2033
|
+
_request_auth=_request_auth
|
|
2034
|
+
)
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
|
|
2038
|
+
|
|
2039
|
+
@validate_call
|
|
2040
|
+
async def trigger_consolidation(
|
|
2041
|
+
self,
|
|
2042
|
+
bank_id: StrictStr,
|
|
2043
|
+
authorization: Optional[StrictStr] = None,
|
|
2044
|
+
_request_timeout: Union[
|
|
2045
|
+
None,
|
|
2046
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2047
|
+
Tuple[
|
|
2048
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2049
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2050
|
+
]
|
|
2051
|
+
] = None,
|
|
2052
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2053
|
+
_content_type: Optional[StrictStr] = None,
|
|
2054
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2055
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2056
|
+
) -> ConsolidationResponse:
|
|
2057
|
+
"""Trigger consolidation
|
|
2058
|
+
|
|
2059
|
+
Run memory consolidation to create/update observations from recent memories.
|
|
2060
|
+
|
|
2061
|
+
:param bank_id: (required)
|
|
2062
|
+
:type bank_id: str
|
|
2063
|
+
:param authorization:
|
|
2064
|
+
:type authorization: str
|
|
2065
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2066
|
+
number provided, it will be total request
|
|
2067
|
+
timeout. It can also be a pair (tuple) of
|
|
2068
|
+
(connection, read) timeouts.
|
|
2069
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2070
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2071
|
+
request; this effectively ignores the
|
|
2072
|
+
authentication in the spec for a single request.
|
|
2073
|
+
:type _request_auth: dict, optional
|
|
2074
|
+
:param _content_type: force content-type for the request.
|
|
2075
|
+
:type _content_type: str, Optional
|
|
2076
|
+
:param _headers: set to override the headers for a single
|
|
2077
|
+
request; this effectively ignores the headers
|
|
2078
|
+
in the spec for a single request.
|
|
2079
|
+
:type _headers: dict, optional
|
|
2080
|
+
:param _host_index: set to override the host_index for a single
|
|
2081
|
+
request; this effectively ignores the host_index
|
|
2082
|
+
in the spec for a single request.
|
|
2083
|
+
:type _host_index: int, optional
|
|
2084
|
+
:return: Returns the result object.
|
|
2085
|
+
""" # noqa: E501
|
|
2086
|
+
|
|
2087
|
+
_param = self._trigger_consolidation_serialize(
|
|
2088
|
+
bank_id=bank_id,
|
|
2089
|
+
authorization=authorization,
|
|
2090
|
+
_request_auth=_request_auth,
|
|
2091
|
+
_content_type=_content_type,
|
|
2092
|
+
_headers=_headers,
|
|
2093
|
+
_host_index=_host_index
|
|
2094
|
+
)
|
|
2095
|
+
|
|
2096
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2097
|
+
'200': "ConsolidationResponse",
|
|
2098
|
+
'422': "HTTPValidationError",
|
|
2099
|
+
}
|
|
2100
|
+
response_data = await self.api_client.call_api(
|
|
2101
|
+
*_param,
|
|
2102
|
+
_request_timeout=_request_timeout
|
|
2103
|
+
)
|
|
2104
|
+
await response_data.read()
|
|
2105
|
+
return self.api_client.response_deserialize(
|
|
2106
|
+
response_data=response_data,
|
|
2107
|
+
response_types_map=_response_types_map,
|
|
2108
|
+
).data
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
@validate_call
|
|
2112
|
+
async def trigger_consolidation_with_http_info(
|
|
2113
|
+
self,
|
|
2114
|
+
bank_id: StrictStr,
|
|
2115
|
+
authorization: Optional[StrictStr] = None,
|
|
2116
|
+
_request_timeout: Union[
|
|
2117
|
+
None,
|
|
2118
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2119
|
+
Tuple[
|
|
2120
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2121
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2122
|
+
]
|
|
2123
|
+
] = None,
|
|
2124
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2125
|
+
_content_type: Optional[StrictStr] = None,
|
|
2126
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2127
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2128
|
+
) -> ApiResponse[ConsolidationResponse]:
|
|
2129
|
+
"""Trigger consolidation
|
|
2130
|
+
|
|
2131
|
+
Run memory consolidation to create/update observations from recent memories.
|
|
2132
|
+
|
|
2133
|
+
:param bank_id: (required)
|
|
2134
|
+
:type bank_id: str
|
|
2135
|
+
:param authorization:
|
|
2136
|
+
:type authorization: str
|
|
2137
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2138
|
+
number provided, it will be total request
|
|
2139
|
+
timeout. It can also be a pair (tuple) of
|
|
2140
|
+
(connection, read) timeouts.
|
|
2141
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2142
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2143
|
+
request; this effectively ignores the
|
|
2144
|
+
authentication in the spec for a single request.
|
|
2145
|
+
:type _request_auth: dict, optional
|
|
2146
|
+
:param _content_type: force content-type for the request.
|
|
2147
|
+
:type _content_type: str, Optional
|
|
2148
|
+
:param _headers: set to override the headers for a single
|
|
2149
|
+
request; this effectively ignores the headers
|
|
2150
|
+
in the spec for a single request.
|
|
2151
|
+
:type _headers: dict, optional
|
|
2152
|
+
:param _host_index: set to override the host_index for a single
|
|
2153
|
+
request; this effectively ignores the host_index
|
|
2154
|
+
in the spec for a single request.
|
|
2155
|
+
:type _host_index: int, optional
|
|
2156
|
+
:return: Returns the result object.
|
|
2157
|
+
""" # noqa: E501
|
|
2158
|
+
|
|
2159
|
+
_param = self._trigger_consolidation_serialize(
|
|
2160
|
+
bank_id=bank_id,
|
|
2161
|
+
authorization=authorization,
|
|
2162
|
+
_request_auth=_request_auth,
|
|
2163
|
+
_content_type=_content_type,
|
|
2164
|
+
_headers=_headers,
|
|
2165
|
+
_host_index=_host_index
|
|
2166
|
+
)
|
|
2167
|
+
|
|
2168
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2169
|
+
'200': "ConsolidationResponse",
|
|
2170
|
+
'422': "HTTPValidationError",
|
|
2171
|
+
}
|
|
2172
|
+
response_data = await self.api_client.call_api(
|
|
2173
|
+
*_param,
|
|
2174
|
+
_request_timeout=_request_timeout
|
|
2175
|
+
)
|
|
2176
|
+
await response_data.read()
|
|
2177
|
+
return self.api_client.response_deserialize(
|
|
2178
|
+
response_data=response_data,
|
|
2179
|
+
response_types_map=_response_types_map,
|
|
2180
|
+
)
|
|
2181
|
+
|
|
2182
|
+
|
|
2183
|
+
@validate_call
|
|
2184
|
+
async def trigger_consolidation_without_preload_content(
|
|
2185
|
+
self,
|
|
2186
|
+
bank_id: StrictStr,
|
|
2187
|
+
authorization: Optional[StrictStr] = None,
|
|
2188
|
+
_request_timeout: Union[
|
|
2189
|
+
None,
|
|
2190
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2191
|
+
Tuple[
|
|
2192
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2193
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2194
|
+
]
|
|
2195
|
+
] = None,
|
|
2196
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2197
|
+
_content_type: Optional[StrictStr] = None,
|
|
2198
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2199
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2200
|
+
) -> RESTResponseType:
|
|
2201
|
+
"""Trigger consolidation
|
|
2202
|
+
|
|
2203
|
+
Run memory consolidation to create/update observations from recent memories.
|
|
2204
|
+
|
|
2205
|
+
:param bank_id: (required)
|
|
2206
|
+
:type bank_id: str
|
|
2207
|
+
:param authorization:
|
|
2208
|
+
:type authorization: str
|
|
2209
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2210
|
+
number provided, it will be total request
|
|
2211
|
+
timeout. It can also be a pair (tuple) of
|
|
2212
|
+
(connection, read) timeouts.
|
|
2213
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2214
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2215
|
+
request; this effectively ignores the
|
|
2216
|
+
authentication in the spec for a single request.
|
|
2217
|
+
:type _request_auth: dict, optional
|
|
2218
|
+
:param _content_type: force content-type for the request.
|
|
2219
|
+
:type _content_type: str, Optional
|
|
2220
|
+
:param _headers: set to override the headers for a single
|
|
2221
|
+
request; this effectively ignores the headers
|
|
2222
|
+
in the spec for a single request.
|
|
2223
|
+
:type _headers: dict, optional
|
|
2224
|
+
:param _host_index: set to override the host_index for a single
|
|
2225
|
+
request; this effectively ignores the host_index
|
|
2226
|
+
in the spec for a single request.
|
|
2227
|
+
:type _host_index: int, optional
|
|
2228
|
+
:return: Returns the result object.
|
|
2229
|
+
""" # noqa: E501
|
|
2230
|
+
|
|
2231
|
+
_param = self._trigger_consolidation_serialize(
|
|
2232
|
+
bank_id=bank_id,
|
|
2233
|
+
authorization=authorization,
|
|
2234
|
+
_request_auth=_request_auth,
|
|
2235
|
+
_content_type=_content_type,
|
|
2236
|
+
_headers=_headers,
|
|
2237
|
+
_host_index=_host_index
|
|
2238
|
+
)
|
|
2239
|
+
|
|
2240
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2241
|
+
'200': "ConsolidationResponse",
|
|
2242
|
+
'422': "HTTPValidationError",
|
|
2243
|
+
}
|
|
2244
|
+
response_data = await self.api_client.call_api(
|
|
2245
|
+
*_param,
|
|
2246
|
+
_request_timeout=_request_timeout
|
|
2247
|
+
)
|
|
2248
|
+
return response_data.response
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
def _trigger_consolidation_serialize(
|
|
2252
|
+
self,
|
|
2253
|
+
bank_id,
|
|
2254
|
+
authorization,
|
|
2255
|
+
_request_auth,
|
|
2256
|
+
_content_type,
|
|
2257
|
+
_headers,
|
|
2258
|
+
_host_index,
|
|
2259
|
+
) -> RequestSerialized:
|
|
2260
|
+
|
|
2261
|
+
_host = None
|
|
2262
|
+
|
|
2263
|
+
_collection_formats: Dict[str, str] = {
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
_path_params: Dict[str, str] = {}
|
|
2267
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2268
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2269
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2270
|
+
_files: Dict[
|
|
2271
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2272
|
+
] = {}
|
|
2273
|
+
_body_params: Optional[bytes] = None
|
|
2274
|
+
|
|
2275
|
+
# process the path parameters
|
|
2276
|
+
if bank_id is not None:
|
|
2277
|
+
_path_params['bank_id'] = bank_id
|
|
2278
|
+
# process the query parameters
|
|
2279
|
+
# process the header parameters
|
|
2280
|
+
if authorization is not None:
|
|
2281
|
+
_header_params['authorization'] = authorization
|
|
2282
|
+
# process the form parameters
|
|
2283
|
+
# process the body parameter
|
|
2284
|
+
|
|
2285
|
+
|
|
2286
|
+
# set the HTTP header `Accept`
|
|
2287
|
+
if 'Accept' not in _header_params:
|
|
2288
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2289
|
+
[
|
|
2290
|
+
'application/json'
|
|
2291
|
+
]
|
|
2292
|
+
)
|
|
2293
|
+
|
|
2294
|
+
|
|
2295
|
+
# authentication setting
|
|
2296
|
+
_auth_settings: List[str] = [
|
|
2297
|
+
]
|
|
2298
|
+
|
|
2299
|
+
return self.api_client.param_serialize(
|
|
2300
|
+
method='POST',
|
|
2301
|
+
resource_path='/v1/default/banks/{bank_id}/consolidate',
|
|
2302
|
+
path_params=_path_params,
|
|
2303
|
+
query_params=_query_params,
|
|
2304
|
+
header_params=_header_params,
|
|
2305
|
+
body=_body_params,
|
|
2306
|
+
post_params=_form_params,
|
|
2307
|
+
files=_files,
|
|
2308
|
+
auth_settings=_auth_settings,
|
|
2309
|
+
collection_formats=_collection_formats,
|
|
2310
|
+
_host=_host,
|
|
2311
|
+
_request_auth=_request_auth
|
|
2312
|
+
)
|
|
2313
|
+
|
|
2314
|
+
|
|
2315
|
+
|
|
2316
|
+
|
|
2317
|
+
@validate_call
|
|
2318
|
+
async def update_bank(
|
|
2319
|
+
self,
|
|
2320
|
+
bank_id: StrictStr,
|
|
2321
|
+
create_bank_request: CreateBankRequest,
|
|
2322
|
+
authorization: Optional[StrictStr] = None,
|
|
2323
|
+
_request_timeout: Union[
|
|
2324
|
+
None,
|
|
2325
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2326
|
+
Tuple[
|
|
2327
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2328
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2329
|
+
]
|
|
2330
|
+
] = None,
|
|
2331
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2332
|
+
_content_type: Optional[StrictStr] = None,
|
|
2333
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2334
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2335
|
+
) -> BankProfileResponse:
|
|
2336
|
+
"""Partial update memory bank
|
|
2337
|
+
|
|
2338
|
+
Partially update an agent's profile. Only provided fields will be updated.
|
|
2339
|
+
|
|
2340
|
+
:param bank_id: (required)
|
|
2341
|
+
:type bank_id: str
|
|
2342
|
+
:param create_bank_request: (required)
|
|
2343
|
+
:type create_bank_request: CreateBankRequest
|
|
2344
|
+
:param authorization:
|
|
2345
|
+
:type authorization: str
|
|
2346
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2347
|
+
number provided, it will be total request
|
|
2348
|
+
timeout. It can also be a pair (tuple) of
|
|
2349
|
+
(connection, read) timeouts.
|
|
2350
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2351
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2352
|
+
request; this effectively ignores the
|
|
2353
|
+
authentication in the spec for a single request.
|
|
2354
|
+
:type _request_auth: dict, optional
|
|
2355
|
+
:param _content_type: force content-type for the request.
|
|
2356
|
+
:type _content_type: str, Optional
|
|
2357
|
+
:param _headers: set to override the headers for a single
|
|
2358
|
+
request; this effectively ignores the headers
|
|
2359
|
+
in the spec for a single request.
|
|
2360
|
+
:type _headers: dict, optional
|
|
2361
|
+
:param _host_index: set to override the host_index for a single
|
|
2362
|
+
request; this effectively ignores the host_index
|
|
2363
|
+
in the spec for a single request.
|
|
2364
|
+
:type _host_index: int, optional
|
|
2365
|
+
:return: Returns the result object.
|
|
2366
|
+
""" # noqa: E501
|
|
2367
|
+
|
|
2368
|
+
_param = self._update_bank_serialize(
|
|
2369
|
+
bank_id=bank_id,
|
|
2370
|
+
create_bank_request=create_bank_request,
|
|
2371
|
+
authorization=authorization,
|
|
2372
|
+
_request_auth=_request_auth,
|
|
2373
|
+
_content_type=_content_type,
|
|
2374
|
+
_headers=_headers,
|
|
2375
|
+
_host_index=_host_index
|
|
2376
|
+
)
|
|
2377
|
+
|
|
2378
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2379
|
+
'200': "BankProfileResponse",
|
|
2380
|
+
'422': "HTTPValidationError",
|
|
2381
|
+
}
|
|
2382
|
+
response_data = await self.api_client.call_api(
|
|
2383
|
+
*_param,
|
|
2384
|
+
_request_timeout=_request_timeout
|
|
2385
|
+
)
|
|
2386
|
+
await response_data.read()
|
|
2387
|
+
return self.api_client.response_deserialize(
|
|
2388
|
+
response_data=response_data,
|
|
2389
|
+
response_types_map=_response_types_map,
|
|
2390
|
+
).data
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
@validate_call
|
|
2394
|
+
async def update_bank_with_http_info(
|
|
2395
|
+
self,
|
|
2396
|
+
bank_id: StrictStr,
|
|
2397
|
+
create_bank_request: CreateBankRequest,
|
|
2398
|
+
authorization: Optional[StrictStr] = None,
|
|
2399
|
+
_request_timeout: Union[
|
|
2400
|
+
None,
|
|
2401
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2402
|
+
Tuple[
|
|
2403
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2404
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2405
|
+
]
|
|
2406
|
+
] = None,
|
|
2407
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2408
|
+
_content_type: Optional[StrictStr] = None,
|
|
2409
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2410
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2411
|
+
) -> ApiResponse[BankProfileResponse]:
|
|
2412
|
+
"""Partial update memory bank
|
|
2413
|
+
|
|
2414
|
+
Partially update an agent's profile. Only provided fields will be updated.
|
|
2415
|
+
|
|
2416
|
+
:param bank_id: (required)
|
|
2417
|
+
:type bank_id: str
|
|
2418
|
+
:param create_bank_request: (required)
|
|
2419
|
+
:type create_bank_request: CreateBankRequest
|
|
2420
|
+
:param authorization:
|
|
2421
|
+
:type authorization: str
|
|
2422
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2423
|
+
number provided, it will be total request
|
|
2424
|
+
timeout. It can also be a pair (tuple) of
|
|
2425
|
+
(connection, read) timeouts.
|
|
2426
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2427
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2428
|
+
request; this effectively ignores the
|
|
2429
|
+
authentication in the spec for a single request.
|
|
2430
|
+
:type _request_auth: dict, optional
|
|
2431
|
+
:param _content_type: force content-type for the request.
|
|
2432
|
+
:type _content_type: str, Optional
|
|
2433
|
+
:param _headers: set to override the headers for a single
|
|
2434
|
+
request; this effectively ignores the headers
|
|
2435
|
+
in the spec for a single request.
|
|
2436
|
+
:type _headers: dict, optional
|
|
2437
|
+
:param _host_index: set to override the host_index for a single
|
|
2438
|
+
request; this effectively ignores the host_index
|
|
2439
|
+
in the spec for a single request.
|
|
2440
|
+
:type _host_index: int, optional
|
|
2441
|
+
:return: Returns the result object.
|
|
2442
|
+
""" # noqa: E501
|
|
2443
|
+
|
|
2444
|
+
_param = self._update_bank_serialize(
|
|
2445
|
+
bank_id=bank_id,
|
|
2446
|
+
create_bank_request=create_bank_request,
|
|
2447
|
+
authorization=authorization,
|
|
2448
|
+
_request_auth=_request_auth,
|
|
2449
|
+
_content_type=_content_type,
|
|
2450
|
+
_headers=_headers,
|
|
2451
|
+
_host_index=_host_index
|
|
2452
|
+
)
|
|
2453
|
+
|
|
2454
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2455
|
+
'200': "BankProfileResponse",
|
|
2456
|
+
'422': "HTTPValidationError",
|
|
2457
|
+
}
|
|
2458
|
+
response_data = await self.api_client.call_api(
|
|
2459
|
+
*_param,
|
|
2460
|
+
_request_timeout=_request_timeout
|
|
2461
|
+
)
|
|
2462
|
+
await response_data.read()
|
|
2463
|
+
return self.api_client.response_deserialize(
|
|
2464
|
+
response_data=response_data,
|
|
2465
|
+
response_types_map=_response_types_map,
|
|
2466
|
+
)
|
|
2467
|
+
|
|
2468
|
+
|
|
2469
|
+
@validate_call
|
|
2470
|
+
async def update_bank_without_preload_content(
|
|
2471
|
+
self,
|
|
2472
|
+
bank_id: StrictStr,
|
|
2473
|
+
create_bank_request: CreateBankRequest,
|
|
2474
|
+
authorization: Optional[StrictStr] = None,
|
|
2475
|
+
_request_timeout: Union[
|
|
2476
|
+
None,
|
|
2477
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2478
|
+
Tuple[
|
|
2479
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
2480
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
2481
|
+
]
|
|
2482
|
+
] = None,
|
|
2483
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
2484
|
+
_content_type: Optional[StrictStr] = None,
|
|
2485
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
2486
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
2487
|
+
) -> RESTResponseType:
|
|
2488
|
+
"""Partial update memory bank
|
|
2489
|
+
|
|
2490
|
+
Partially update an agent's profile. Only provided fields will be updated.
|
|
2491
|
+
|
|
2492
|
+
:param bank_id: (required)
|
|
2493
|
+
:type bank_id: str
|
|
2494
|
+
:param create_bank_request: (required)
|
|
2495
|
+
:type create_bank_request: CreateBankRequest
|
|
2496
|
+
:param authorization:
|
|
2497
|
+
:type authorization: str
|
|
2498
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
2499
|
+
number provided, it will be total request
|
|
2500
|
+
timeout. It can also be a pair (tuple) of
|
|
2501
|
+
(connection, read) timeouts.
|
|
2502
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
2503
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
2504
|
+
request; this effectively ignores the
|
|
2505
|
+
authentication in the spec for a single request.
|
|
2506
|
+
:type _request_auth: dict, optional
|
|
2507
|
+
:param _content_type: force content-type for the request.
|
|
2508
|
+
:type _content_type: str, Optional
|
|
2509
|
+
:param _headers: set to override the headers for a single
|
|
2510
|
+
request; this effectively ignores the headers
|
|
2511
|
+
in the spec for a single request.
|
|
2512
|
+
:type _headers: dict, optional
|
|
2513
|
+
:param _host_index: set to override the host_index for a single
|
|
2514
|
+
request; this effectively ignores the host_index
|
|
2515
|
+
in the spec for a single request.
|
|
2516
|
+
:type _host_index: int, optional
|
|
2517
|
+
:return: Returns the result object.
|
|
2518
|
+
""" # noqa: E501
|
|
2519
|
+
|
|
2520
|
+
_param = self._update_bank_serialize(
|
|
2521
|
+
bank_id=bank_id,
|
|
2522
|
+
create_bank_request=create_bank_request,
|
|
2523
|
+
authorization=authorization,
|
|
2524
|
+
_request_auth=_request_auth,
|
|
2525
|
+
_content_type=_content_type,
|
|
2526
|
+
_headers=_headers,
|
|
2527
|
+
_host_index=_host_index
|
|
2528
|
+
)
|
|
2529
|
+
|
|
2530
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
2531
|
+
'200': "BankProfileResponse",
|
|
2532
|
+
'422': "HTTPValidationError",
|
|
2533
|
+
}
|
|
2534
|
+
response_data = await self.api_client.call_api(
|
|
2535
|
+
*_param,
|
|
2536
|
+
_request_timeout=_request_timeout
|
|
2537
|
+
)
|
|
2538
|
+
return response_data.response
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
def _update_bank_serialize(
|
|
2542
|
+
self,
|
|
2543
|
+
bank_id,
|
|
2544
|
+
create_bank_request,
|
|
2545
|
+
authorization,
|
|
2546
|
+
_request_auth,
|
|
2547
|
+
_content_type,
|
|
2548
|
+
_headers,
|
|
2549
|
+
_host_index,
|
|
2550
|
+
) -> RequestSerialized:
|
|
2551
|
+
|
|
2552
|
+
_host = None
|
|
2553
|
+
|
|
2554
|
+
_collection_formats: Dict[str, str] = {
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
_path_params: Dict[str, str] = {}
|
|
2558
|
+
_query_params: List[Tuple[str, str]] = []
|
|
2559
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2560
|
+
_form_params: List[Tuple[str, str]] = []
|
|
2561
|
+
_files: Dict[
|
|
2562
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
2563
|
+
] = {}
|
|
2564
|
+
_body_params: Optional[bytes] = None
|
|
2565
|
+
|
|
2566
|
+
# process the path parameters
|
|
2567
|
+
if bank_id is not None:
|
|
2568
|
+
_path_params['bank_id'] = bank_id
|
|
2569
|
+
# process the query parameters
|
|
2570
|
+
# process the header parameters
|
|
2571
|
+
if authorization is not None:
|
|
2572
|
+
_header_params['authorization'] = authorization
|
|
2573
|
+
# process the form parameters
|
|
2574
|
+
# process the body parameter
|
|
2575
|
+
if create_bank_request is not None:
|
|
2576
|
+
_body_params = create_bank_request
|
|
2577
|
+
|
|
2578
|
+
|
|
2579
|
+
# set the HTTP header `Accept`
|
|
2580
|
+
if 'Accept' not in _header_params:
|
|
2581
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2582
|
+
[
|
|
2583
|
+
'application/json'
|
|
2584
|
+
]
|
|
2585
|
+
)
|
|
2586
|
+
|
|
2587
|
+
# set the HTTP header `Content-Type`
|
|
2588
|
+
if _content_type:
|
|
2589
|
+
_header_params['Content-Type'] = _content_type
|
|
2590
|
+
else:
|
|
2591
|
+
_default_content_type = (
|
|
2592
|
+
self.api_client.select_header_content_type(
|
|
2593
|
+
[
|
|
2594
|
+
'application/json'
|
|
2595
|
+
]
|
|
2596
|
+
)
|
|
2597
|
+
)
|
|
2598
|
+
if _default_content_type is not None:
|
|
2599
|
+
_header_params['Content-Type'] = _default_content_type
|
|
2600
|
+
|
|
2601
|
+
# authentication setting
|
|
2602
|
+
_auth_settings: List[str] = [
|
|
2603
|
+
]
|
|
2604
|
+
|
|
2605
|
+
return self.api_client.param_serialize(
|
|
2606
|
+
method='PATCH',
|
|
2607
|
+
resource_path='/v1/default/banks/{bank_id}',
|
|
1727
2608
|
path_params=_path_params,
|
|
1728
2609
|
query_params=_query_params,
|
|
1729
2610
|
header_params=_header_params,
|