hindsight-client 0.0.18__tar.gz → 0.0.20__tar.gz
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-0.0.18 → hindsight_client-0.0.20}/.openapi-generator/FILES +6 -6
- hindsight_client-0.0.20/PKG-INFO +18 -0
- hindsight_client-0.0.20/README.md +1 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client/hindsight_client.py +3 -3
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/__init__.py +4 -4
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/api/default_api.py +56 -56
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/api/monitoring_api.py +245 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/AddBackgroundRequest.md +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/BackgroundResponse.md +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/BankListItem.md +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/BankProfileResponse.md +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/CreateBankRequest.md +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/DefaultApi.md +21 -22
- hindsight_client-0.0.18/hindsight_client_api/docs/PersonalityTraits.md → hindsight_client-0.0.20/hindsight_client_api/docs/DispositionTraits.md +10 -10
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/MonitoringApi.md +64 -0
- hindsight_client-0.0.20/hindsight_client_api/docs/UpdateDispositionRequest.md +30 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/__init__.py +2 -2
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/add_background_request.py +3 -3
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/background_response.py +10 -10
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/bank_list_item.py +7 -7
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/bank_profile_response.py +7 -7
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/create_bank_request.py +10 -10
- hindsight_client-0.0.18/hindsight_client_api/models/personality_traits.py → hindsight_client-0.0.20/hindsight_client_api/models/disposition_traits.py +5 -5
- hindsight_client-0.0.18/hindsight_client_api/models/update_personality_request.py → hindsight_client-0.0.20/hindsight_client_api/models/update_disposition_request.py +11 -11
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_add_background_request.py +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_background_response.py +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_bank_list_item.py +2 -2
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_bank_list_response.py +2 -2
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_bank_profile_response.py +2 -2
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_create_bank_request.py +1 -1
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_default_api.py +3 -3
- hindsight_client-0.0.18/hindsight_client_api/test/test_personality_traits.py → hindsight_client-0.0.20/hindsight_client_api/test/test_disposition_traits.py +11 -11
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_monitoring_api.py +7 -0
- hindsight_client-0.0.18/hindsight_client_api/test/test_update_personality_request.py → hindsight_client-0.0.20/hindsight_client_api/test/test_update_disposition_request.py +13 -13
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/pyproject.toml +1 -1
- hindsight_client-0.0.18/PKG-INFO +0 -56
- hindsight_client-0.0.18/README.md +0 -39
- hindsight_client-0.0.18/hindsight_client_api/docs/UpdatePersonalityRequest.md +0 -30
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/.gitignore +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/.openapi-generator/VERSION +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/.openapi-generator-ignore +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client/__init__.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/api/__init__.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/api_client.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/api_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/configuration.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/BankListResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/Budget.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ChunkData.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ChunkIncludeOptions.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ChunkResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/DeleteResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/DocumentResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityDetailResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityIncludeOptions.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityListItem.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityListResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityObservationResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/EntityStateResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/GraphDataResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/HTTPValidationError.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/IncludeOptions.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ListDocumentsResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ListMemoryUnitsResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/MemoryItem.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/MetadataFilter.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/RecallRequest.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/RecallResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/RecallResult.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ReflectFact.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ReflectIncludeOptions.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ReflectRequest.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ReflectResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/RetainRequest.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/RetainResponse.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ValidationError.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/docs/ValidationErrorLocInner.md +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/exceptions.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/bank_list_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/budget.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/chunk_data.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/chunk_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/chunk_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/delete_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/document_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_detail_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_list_item.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_list_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_observation_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/entity_state_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/graph_data_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/http_validation_error.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/list_documents_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/list_memory_units_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/memory_item.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/metadata_filter.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/recall_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/recall_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/recall_result.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/reflect_fact.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/reflect_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/reflect_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/reflect_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/retain_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/retain_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/validation_error.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/models/validation_error_loc_inner.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/rest.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/__init__.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_budget.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_chunk_data.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_chunk_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_chunk_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_delete_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_document_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_detail_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_list_item.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_list_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_observation_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_entity_state_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_graph_data_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_http_validation_error.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_list_documents_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_list_memory_units_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_memory_item.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_metadata_filter.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_recall_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_recall_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_recall_result.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_reflect_fact.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_reflect_include_options.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_reflect_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_reflect_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_retain_request.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_retain_response.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_validation_error.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/hindsight_client_api/test/test_validation_error_loc_inner.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/openapi-generator-config.yaml +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/tests/__init__.py +0 -0
- {hindsight_client-0.0.18 → hindsight_client-0.0.20}/tests/test_main_operations.py +0 -0
|
@@ -17,6 +17,7 @@ hindsight_client_api/docs/ChunkResponse.md
|
|
|
17
17
|
hindsight_client_api/docs/CreateBankRequest.md
|
|
18
18
|
hindsight_client_api/docs/DefaultApi.md
|
|
19
19
|
hindsight_client_api/docs/DeleteResponse.md
|
|
20
|
+
hindsight_client_api/docs/DispositionTraits.md
|
|
20
21
|
hindsight_client_api/docs/DocumentResponse.md
|
|
21
22
|
hindsight_client_api/docs/EntityDetailResponse.md
|
|
22
23
|
hindsight_client_api/docs/EntityIncludeOptions.md
|
|
@@ -32,7 +33,6 @@ hindsight_client_api/docs/ListMemoryUnitsResponse.md
|
|
|
32
33
|
hindsight_client_api/docs/MemoryItem.md
|
|
33
34
|
hindsight_client_api/docs/MetadataFilter.md
|
|
34
35
|
hindsight_client_api/docs/MonitoringApi.md
|
|
35
|
-
hindsight_client_api/docs/PersonalityTraits.md
|
|
36
36
|
hindsight_client_api/docs/RecallRequest.md
|
|
37
37
|
hindsight_client_api/docs/RecallResponse.md
|
|
38
38
|
hindsight_client_api/docs/RecallResult.md
|
|
@@ -42,7 +42,7 @@ hindsight_client_api/docs/ReflectRequest.md
|
|
|
42
42
|
hindsight_client_api/docs/ReflectResponse.md
|
|
43
43
|
hindsight_client_api/docs/RetainRequest.md
|
|
44
44
|
hindsight_client_api/docs/RetainResponse.md
|
|
45
|
-
hindsight_client_api/docs/
|
|
45
|
+
hindsight_client_api/docs/UpdateDispositionRequest.md
|
|
46
46
|
hindsight_client_api/docs/ValidationError.md
|
|
47
47
|
hindsight_client_api/docs/ValidationErrorLocInner.md
|
|
48
48
|
hindsight_client_api/exceptions.py
|
|
@@ -58,6 +58,7 @@ hindsight_client_api/models/chunk_include_options.py
|
|
|
58
58
|
hindsight_client_api/models/chunk_response.py
|
|
59
59
|
hindsight_client_api/models/create_bank_request.py
|
|
60
60
|
hindsight_client_api/models/delete_response.py
|
|
61
|
+
hindsight_client_api/models/disposition_traits.py
|
|
61
62
|
hindsight_client_api/models/document_response.py
|
|
62
63
|
hindsight_client_api/models/entity_detail_response.py
|
|
63
64
|
hindsight_client_api/models/entity_include_options.py
|
|
@@ -72,7 +73,6 @@ hindsight_client_api/models/list_documents_response.py
|
|
|
72
73
|
hindsight_client_api/models/list_memory_units_response.py
|
|
73
74
|
hindsight_client_api/models/memory_item.py
|
|
74
75
|
hindsight_client_api/models/metadata_filter.py
|
|
75
|
-
hindsight_client_api/models/personality_traits.py
|
|
76
76
|
hindsight_client_api/models/recall_request.py
|
|
77
77
|
hindsight_client_api/models/recall_response.py
|
|
78
78
|
hindsight_client_api/models/recall_result.py
|
|
@@ -82,7 +82,7 @@ hindsight_client_api/models/reflect_request.py
|
|
|
82
82
|
hindsight_client_api/models/reflect_response.py
|
|
83
83
|
hindsight_client_api/models/retain_request.py
|
|
84
84
|
hindsight_client_api/models/retain_response.py
|
|
85
|
-
hindsight_client_api/models/
|
|
85
|
+
hindsight_client_api/models/update_disposition_request.py
|
|
86
86
|
hindsight_client_api/models/validation_error.py
|
|
87
87
|
hindsight_client_api/models/validation_error_loc_inner.py
|
|
88
88
|
hindsight_client_api/rest.py
|
|
@@ -99,6 +99,7 @@ hindsight_client_api/test/test_chunk_response.py
|
|
|
99
99
|
hindsight_client_api/test/test_create_bank_request.py
|
|
100
100
|
hindsight_client_api/test/test_default_api.py
|
|
101
101
|
hindsight_client_api/test/test_delete_response.py
|
|
102
|
+
hindsight_client_api/test/test_disposition_traits.py
|
|
102
103
|
hindsight_client_api/test/test_document_response.py
|
|
103
104
|
hindsight_client_api/test/test_entity_detail_response.py
|
|
104
105
|
hindsight_client_api/test/test_entity_include_options.py
|
|
@@ -114,7 +115,6 @@ hindsight_client_api/test/test_list_memory_units_response.py
|
|
|
114
115
|
hindsight_client_api/test/test_memory_item.py
|
|
115
116
|
hindsight_client_api/test/test_metadata_filter.py
|
|
116
117
|
hindsight_client_api/test/test_monitoring_api.py
|
|
117
|
-
hindsight_client_api/test/test_personality_traits.py
|
|
118
118
|
hindsight_client_api/test/test_recall_request.py
|
|
119
119
|
hindsight_client_api/test/test_recall_response.py
|
|
120
120
|
hindsight_client_api/test/test_recall_result.py
|
|
@@ -124,7 +124,7 @@ hindsight_client_api/test/test_reflect_request.py
|
|
|
124
124
|
hindsight_client_api/test/test_reflect_response.py
|
|
125
125
|
hindsight_client_api/test/test_retain_request.py
|
|
126
126
|
hindsight_client_api/test/test_retain_response.py
|
|
127
|
-
hindsight_client_api/test/
|
|
127
|
+
hindsight_client_api/test/test_update_disposition_request.py
|
|
128
128
|
hindsight_client_api/test/test_validation_error.py
|
|
129
129
|
hindsight_client_api/test/test_validation_error_loc_inner.py
|
|
130
130
|
hindsight_client_api_README.md
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hindsight-client
|
|
3
|
+
Version: 0.0.20
|
|
4
|
+
Summary: Python client for Hindsight - Semantic memory system with personality-driven thinking
|
|
5
|
+
Author: Hindsight Team
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: aiohttp-retry>=2.8.3
|
|
8
|
+
Requires-Dist: aiohttp>=3.8.4
|
|
9
|
+
Requires-Dist: pydantic>=2
|
|
10
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
11
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
12
|
+
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
13
|
+
Provides-Extra: test
|
|
14
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'test'
|
|
15
|
+
Requires-Dist: pytest>=7.0.0; extra == 'test'
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Hindsight Python Client
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Hindsight Python Client
|
|
@@ -164,7 +164,7 @@ class Hindsight:
|
|
|
164
164
|
Args:
|
|
165
165
|
bank_id: The memory bank ID
|
|
166
166
|
query: Search query
|
|
167
|
-
types: Optional list of fact types to filter (world,
|
|
167
|
+
types: Optional list of fact types to filter (world, experience, opinion, observation)
|
|
168
168
|
max_tokens: Maximum tokens in results (default: 4096)
|
|
169
169
|
budget: Budget level for recall - "low", "mid", or "high" (default: "mid")
|
|
170
170
|
|
|
@@ -229,7 +229,7 @@ class Hindsight:
|
|
|
229
229
|
Args:
|
|
230
230
|
bank_id: The memory bank ID
|
|
231
231
|
query: Search query
|
|
232
|
-
types: Optional list of fact types to filter (world,
|
|
232
|
+
types: Optional list of fact types to filter (world, experience, opinion, observation)
|
|
233
233
|
budget: Budget level - "low", "mid", or "high"
|
|
234
234
|
max_tokens: Maximum tokens in results
|
|
235
235
|
trace: Enable trace output
|
|
@@ -379,7 +379,7 @@ class Hindsight:
|
|
|
379
379
|
Args:
|
|
380
380
|
bank_id: The memory bank ID
|
|
381
381
|
query: Search query
|
|
382
|
-
types: Optional list of fact types to filter (world,
|
|
382
|
+
types: Optional list of fact types to filter (world, experience, opinion, observation)
|
|
383
383
|
max_tokens: Maximum tokens in results (default: 4096)
|
|
384
384
|
budget: Budget level for recall - "low", "mid", or "high" (default: "mid")
|
|
385
385
|
|
|
@@ -40,6 +40,7 @@ __all__ = [
|
|
|
40
40
|
"ChunkResponse",
|
|
41
41
|
"CreateBankRequest",
|
|
42
42
|
"DeleteResponse",
|
|
43
|
+
"DispositionTraits",
|
|
43
44
|
"DocumentResponse",
|
|
44
45
|
"EntityDetailResponse",
|
|
45
46
|
"EntityIncludeOptions",
|
|
@@ -54,7 +55,6 @@ __all__ = [
|
|
|
54
55
|
"ListMemoryUnitsResponse",
|
|
55
56
|
"MemoryItem",
|
|
56
57
|
"MetadataFilter",
|
|
57
|
-
"PersonalityTraits",
|
|
58
58
|
"RecallRequest",
|
|
59
59
|
"RecallResponse",
|
|
60
60
|
"RecallResult",
|
|
@@ -64,7 +64,7 @@ __all__ = [
|
|
|
64
64
|
"ReflectResponse",
|
|
65
65
|
"RetainRequest",
|
|
66
66
|
"RetainResponse",
|
|
67
|
-
"
|
|
67
|
+
"UpdateDispositionRequest",
|
|
68
68
|
"ValidationError",
|
|
69
69
|
"ValidationErrorLocInner",
|
|
70
70
|
]
|
|
@@ -96,6 +96,7 @@ from hindsight_client_api.models.chunk_include_options import ChunkIncludeOption
|
|
|
96
96
|
from hindsight_client_api.models.chunk_response import ChunkResponse as ChunkResponse
|
|
97
97
|
from hindsight_client_api.models.create_bank_request import CreateBankRequest as CreateBankRequest
|
|
98
98
|
from hindsight_client_api.models.delete_response import DeleteResponse as DeleteResponse
|
|
99
|
+
from hindsight_client_api.models.disposition_traits import DispositionTraits as DispositionTraits
|
|
99
100
|
from hindsight_client_api.models.document_response import DocumentResponse as DocumentResponse
|
|
100
101
|
from hindsight_client_api.models.entity_detail_response import EntityDetailResponse as EntityDetailResponse
|
|
101
102
|
from hindsight_client_api.models.entity_include_options import EntityIncludeOptions as EntityIncludeOptions
|
|
@@ -110,7 +111,6 @@ from hindsight_client_api.models.list_documents_response import ListDocumentsRes
|
|
|
110
111
|
from hindsight_client_api.models.list_memory_units_response import ListMemoryUnitsResponse as ListMemoryUnitsResponse
|
|
111
112
|
from hindsight_client_api.models.memory_item import MemoryItem as MemoryItem
|
|
112
113
|
from hindsight_client_api.models.metadata_filter import MetadataFilter as MetadataFilter
|
|
113
|
-
from hindsight_client_api.models.personality_traits import PersonalityTraits as PersonalityTraits
|
|
114
114
|
from hindsight_client_api.models.recall_request import RecallRequest as RecallRequest
|
|
115
115
|
from hindsight_client_api.models.recall_response import RecallResponse as RecallResponse
|
|
116
116
|
from hindsight_client_api.models.recall_result import RecallResult as RecallResult
|
|
@@ -120,7 +120,7 @@ from hindsight_client_api.models.reflect_request import ReflectRequest as Reflec
|
|
|
120
120
|
from hindsight_client_api.models.reflect_response import ReflectResponse as ReflectResponse
|
|
121
121
|
from hindsight_client_api.models.retain_request import RetainRequest as RetainRequest
|
|
122
122
|
from hindsight_client_api.models.retain_response import RetainResponse as RetainResponse
|
|
123
|
-
from hindsight_client_api.models.
|
|
123
|
+
from hindsight_client_api.models.update_disposition_request import UpdateDispositionRequest as UpdateDispositionRequest
|
|
124
124
|
from hindsight_client_api.models.validation_error import ValidationError as ValidationError
|
|
125
125
|
from hindsight_client_api.models.validation_error_loc_inner import ValidationErrorLocInner as ValidationErrorLocInner
|
|
126
126
|
|
|
@@ -38,7 +38,7 @@ from hindsight_client_api.models.reflect_request import ReflectRequest
|
|
|
38
38
|
from hindsight_client_api.models.reflect_response import ReflectResponse
|
|
39
39
|
from hindsight_client_api.models.retain_request import RetainRequest
|
|
40
40
|
from hindsight_client_api.models.retain_response import RetainResponse
|
|
41
|
-
from hindsight_client_api.models.
|
|
41
|
+
from hindsight_client_api.models.update_disposition_request import UpdateDispositionRequest
|
|
42
42
|
|
|
43
43
|
from hindsight_client_api.api_client import ApiClient, RequestSerialized
|
|
44
44
|
from hindsight_client_api.api_response import ApiResponse
|
|
@@ -78,7 +78,7 @@ class DefaultApi:
|
|
|
78
78
|
) -> BackgroundResponse:
|
|
79
79
|
"""Add/merge memory bank background
|
|
80
80
|
|
|
81
|
-
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers
|
|
81
|
+
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers disposition traits.
|
|
82
82
|
|
|
83
83
|
:param bank_id: (required)
|
|
84
84
|
:type bank_id: str
|
|
@@ -150,7 +150,7 @@ class DefaultApi:
|
|
|
150
150
|
) -> ApiResponse[BackgroundResponse]:
|
|
151
151
|
"""Add/merge memory bank background
|
|
152
152
|
|
|
153
|
-
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers
|
|
153
|
+
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers disposition traits.
|
|
154
154
|
|
|
155
155
|
:param bank_id: (required)
|
|
156
156
|
:type bank_id: str
|
|
@@ -222,7 +222,7 @@ class DefaultApi:
|
|
|
222
222
|
) -> RESTResponseType:
|
|
223
223
|
"""Add/merge memory bank background
|
|
224
224
|
|
|
225
|
-
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers
|
|
225
|
+
Add new background information or merge with existing. LLM intelligently resolves conflicts, normalizes to first person, and optionally infers disposition traits.
|
|
226
226
|
|
|
227
227
|
:param bank_id: (required)
|
|
228
228
|
:type bank_id: str
|
|
@@ -631,7 +631,7 @@ class DefaultApi:
|
|
|
631
631
|
async def clear_bank_memories(
|
|
632
632
|
self,
|
|
633
633
|
bank_id: StrictStr,
|
|
634
|
-
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world,
|
|
634
|
+
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world, experience, opinion)")] = None,
|
|
635
635
|
_request_timeout: Union[
|
|
636
636
|
None,
|
|
637
637
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -647,11 +647,11 @@ class DefaultApi:
|
|
|
647
647
|
) -> DeleteResponse:
|
|
648
648
|
"""Clear memory bank memories
|
|
649
649
|
|
|
650
|
-
Delete memory units for a memory bank. Optionally filter by type (world,
|
|
650
|
+
Delete memory units for a memory bank. Optionally filter by type (world, experience, opinion) to delete only specific types. This is a destructive operation that cannot be undone. The bank profile (personality and background) will be preserved.
|
|
651
651
|
|
|
652
652
|
:param bank_id: (required)
|
|
653
653
|
:type bank_id: str
|
|
654
|
-
:param type: Optional fact type filter (world,
|
|
654
|
+
:param type: Optional fact type filter (world, experience, opinion)
|
|
655
655
|
:type type: str
|
|
656
656
|
:param _request_timeout: timeout setting for this request. If one
|
|
657
657
|
number provided, it will be total request
|
|
@@ -703,7 +703,7 @@ class DefaultApi:
|
|
|
703
703
|
async def clear_bank_memories_with_http_info(
|
|
704
704
|
self,
|
|
705
705
|
bank_id: StrictStr,
|
|
706
|
-
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world,
|
|
706
|
+
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world, experience, opinion)")] = None,
|
|
707
707
|
_request_timeout: Union[
|
|
708
708
|
None,
|
|
709
709
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -719,11 +719,11 @@ class DefaultApi:
|
|
|
719
719
|
) -> ApiResponse[DeleteResponse]:
|
|
720
720
|
"""Clear memory bank memories
|
|
721
721
|
|
|
722
|
-
Delete memory units for a memory bank. Optionally filter by type (world,
|
|
722
|
+
Delete memory units for a memory bank. Optionally filter by type (world, experience, opinion) to delete only specific types. This is a destructive operation that cannot be undone. The bank profile (personality and background) will be preserved.
|
|
723
723
|
|
|
724
724
|
:param bank_id: (required)
|
|
725
725
|
:type bank_id: str
|
|
726
|
-
:param type: Optional fact type filter (world,
|
|
726
|
+
:param type: Optional fact type filter (world, experience, opinion)
|
|
727
727
|
:type type: str
|
|
728
728
|
:param _request_timeout: timeout setting for this request. If one
|
|
729
729
|
number provided, it will be total request
|
|
@@ -775,7 +775,7 @@ class DefaultApi:
|
|
|
775
775
|
async def clear_bank_memories_without_preload_content(
|
|
776
776
|
self,
|
|
777
777
|
bank_id: StrictStr,
|
|
778
|
-
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world,
|
|
778
|
+
type: Annotated[Optional[StrictStr], Field(description="Optional fact type filter (world, experience, opinion)")] = None,
|
|
779
779
|
_request_timeout: Union[
|
|
780
780
|
None,
|
|
781
781
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -791,11 +791,11 @@ class DefaultApi:
|
|
|
791
791
|
) -> RESTResponseType:
|
|
792
792
|
"""Clear memory bank memories
|
|
793
793
|
|
|
794
|
-
Delete memory units for a memory bank. Optionally filter by type (world,
|
|
794
|
+
Delete memory units for a memory bank. Optionally filter by type (world, experience, opinion) to delete only specific types. This is a destructive operation that cannot be undone. The bank profile (personality and background) will be preserved.
|
|
795
795
|
|
|
796
796
|
:param bank_id: (required)
|
|
797
797
|
:type bank_id: str
|
|
798
|
-
:param type: Optional fact type filter (world,
|
|
798
|
+
:param type: Optional fact type filter (world, experience, opinion)
|
|
799
799
|
:type type: str
|
|
800
800
|
:param _request_timeout: timeout setting for this request. If one
|
|
801
801
|
number provided, it will be total request
|
|
@@ -927,7 +927,7 @@ class DefaultApi:
|
|
|
927
927
|
) -> BankProfileResponse:
|
|
928
928
|
"""Create or update memory bank
|
|
929
929
|
|
|
930
|
-
Create a new agent or update existing agent with
|
|
930
|
+
Create a new agent or update existing agent with disposition and background. Auto-fills missing fields with defaults.
|
|
931
931
|
|
|
932
932
|
:param bank_id: (required)
|
|
933
933
|
:type bank_id: str
|
|
@@ -999,7 +999,7 @@ class DefaultApi:
|
|
|
999
999
|
) -> ApiResponse[BankProfileResponse]:
|
|
1000
1000
|
"""Create or update memory bank
|
|
1001
1001
|
|
|
1002
|
-
Create a new agent or update existing agent with
|
|
1002
|
+
Create a new agent or update existing agent with disposition and background. Auto-fills missing fields with defaults.
|
|
1003
1003
|
|
|
1004
1004
|
:param bank_id: (required)
|
|
1005
1005
|
:type bank_id: str
|
|
@@ -1071,7 +1071,7 @@ class DefaultApi:
|
|
|
1071
1071
|
) -> RESTResponseType:
|
|
1072
1072
|
"""Create or update memory bank
|
|
1073
1073
|
|
|
1074
|
-
Create a new agent or update existing agent with
|
|
1074
|
+
Create a new agent or update existing agent with disposition and background. Auto-fills missing fields with defaults.
|
|
1075
1075
|
|
|
1076
1076
|
:param bank_id: (required)
|
|
1077
1077
|
:type bank_id: str
|
|
@@ -1758,7 +1758,7 @@ class DefaultApi:
|
|
|
1758
1758
|
) -> BankProfileResponse:
|
|
1759
1759
|
"""Get memory bank profile
|
|
1760
1760
|
|
|
1761
|
-
Get
|
|
1761
|
+
Get disposition traits and background for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1762
1762
|
|
|
1763
1763
|
:param bank_id: (required)
|
|
1764
1764
|
:type bank_id: str
|
|
@@ -1826,7 +1826,7 @@ class DefaultApi:
|
|
|
1826
1826
|
) -> ApiResponse[BankProfileResponse]:
|
|
1827
1827
|
"""Get memory bank profile
|
|
1828
1828
|
|
|
1829
|
-
Get
|
|
1829
|
+
Get disposition traits and background for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1830
1830
|
|
|
1831
1831
|
:param bank_id: (required)
|
|
1832
1832
|
:type bank_id: str
|
|
@@ -1894,7 +1894,7 @@ class DefaultApi:
|
|
|
1894
1894
|
) -> RESTResponseType:
|
|
1895
1895
|
"""Get memory bank profile
|
|
1896
1896
|
|
|
1897
|
-
Get
|
|
1897
|
+
Get disposition traits and background for a memory bank. Auto-creates agent with defaults if not exists.
|
|
1898
1898
|
|
|
1899
1899
|
:param bank_id: (required)
|
|
1900
1900
|
:type bank_id: str
|
|
@@ -2841,7 +2841,7 @@ class DefaultApi:
|
|
|
2841
2841
|
) -> GraphDataResponse:
|
|
2842
2842
|
"""Get memory graph data
|
|
2843
2843
|
|
|
2844
|
-
Retrieve graph data for visualization, optionally filtered by type (world/
|
|
2844
|
+
Retrieve graph data for visualization, optionally filtered by type (world/experience/opinion). Limited to 1000 most recent items.
|
|
2845
2845
|
|
|
2846
2846
|
:param bank_id: (required)
|
|
2847
2847
|
:type bank_id: str
|
|
@@ -2913,7 +2913,7 @@ class DefaultApi:
|
|
|
2913
2913
|
) -> ApiResponse[GraphDataResponse]:
|
|
2914
2914
|
"""Get memory graph data
|
|
2915
2915
|
|
|
2916
|
-
Retrieve graph data for visualization, optionally filtered by type (world/
|
|
2916
|
+
Retrieve graph data for visualization, optionally filtered by type (world/experience/opinion). Limited to 1000 most recent items.
|
|
2917
2917
|
|
|
2918
2918
|
:param bank_id: (required)
|
|
2919
2919
|
:type bank_id: str
|
|
@@ -2985,7 +2985,7 @@ class DefaultApi:
|
|
|
2985
2985
|
) -> RESTResponseType:
|
|
2986
2986
|
"""Get memory graph data
|
|
2987
2987
|
|
|
2988
|
-
Retrieve graph data for visualization, optionally filtered by type (world/
|
|
2988
|
+
Retrieve graph data for visualization, optionally filtered by type (world/experience/opinion). Limited to 1000 most recent items.
|
|
2989
2989
|
|
|
2990
2990
|
:param bank_id: (required)
|
|
2991
2991
|
:type bank_id: str
|
|
@@ -4554,7 +4554,7 @@ class DefaultApi:
|
|
|
4554
4554
|
) -> RecallResponse:
|
|
4555
4555
|
"""Recall memory
|
|
4556
4556
|
|
|
4557
|
-
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - '
|
|
4557
|
+
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - 'experience': Memories about experience, conversations, actions taken, and tasks performed - 'opinion': The bank's formed beliefs, perspectives, and viewpoints Set include_entities=true to get entity observations alongside recall results.
|
|
4558
4558
|
|
|
4559
4559
|
:param bank_id: (required)
|
|
4560
4560
|
:type bank_id: str
|
|
@@ -4626,7 +4626,7 @@ class DefaultApi:
|
|
|
4626
4626
|
) -> ApiResponse[RecallResponse]:
|
|
4627
4627
|
"""Recall memory
|
|
4628
4628
|
|
|
4629
|
-
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - '
|
|
4629
|
+
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - 'experience': Memories about experience, conversations, actions taken, and tasks performed - 'opinion': The bank's formed beliefs, perspectives, and viewpoints Set include_entities=true to get entity observations alongside recall results.
|
|
4630
4630
|
|
|
4631
4631
|
:param bank_id: (required)
|
|
4632
4632
|
:type bank_id: str
|
|
@@ -4698,7 +4698,7 @@ class DefaultApi:
|
|
|
4698
4698
|
) -> RESTResponseType:
|
|
4699
4699
|
"""Recall memory
|
|
4700
4700
|
|
|
4701
|
-
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - '
|
|
4701
|
+
Recall memory using semantic similarity and spreading activation. The type parameter is optional and must be one of: - 'world': General knowledge about people, places, events, and things that happen - 'experience': Memories about experience, conversations, actions taken, and tasks performed - 'opinion': The bank's formed beliefs, perspectives, and viewpoints Set include_entities=true to get entity observations alongside recall results.
|
|
4702
4702
|
|
|
4703
4703
|
:param bank_id: (required)
|
|
4704
4704
|
:type bank_id: str
|
|
@@ -4845,7 +4845,7 @@ class DefaultApi:
|
|
|
4845
4845
|
) -> ReflectResponse:
|
|
4846
4846
|
"""Reflect and generate answer
|
|
4847
4847
|
|
|
4848
|
-
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves
|
|
4848
|
+
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves experience (conversations and events) 2. Retrieves world facts relevant to the query 3. Retrieves existing opinions (bank's perspectives) 4. Uses LLM to formulate a contextual answer 5. Extracts and stores any new opinions formed 6. Returns plain text answer, the facts used, and new opinions
|
|
4849
4849
|
|
|
4850
4850
|
:param bank_id: (required)
|
|
4851
4851
|
:type bank_id: str
|
|
@@ -4917,7 +4917,7 @@ class DefaultApi:
|
|
|
4917
4917
|
) -> ApiResponse[ReflectResponse]:
|
|
4918
4918
|
"""Reflect and generate answer
|
|
4919
4919
|
|
|
4920
|
-
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves
|
|
4920
|
+
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves experience (conversations and events) 2. Retrieves world facts relevant to the query 3. Retrieves existing opinions (bank's perspectives) 4. Uses LLM to formulate a contextual answer 5. Extracts and stores any new opinions formed 6. Returns plain text answer, the facts used, and new opinions
|
|
4921
4921
|
|
|
4922
4922
|
:param bank_id: (required)
|
|
4923
4923
|
:type bank_id: str
|
|
@@ -4989,7 +4989,7 @@ class DefaultApi:
|
|
|
4989
4989
|
) -> RESTResponseType:
|
|
4990
4990
|
"""Reflect and generate answer
|
|
4991
4991
|
|
|
4992
|
-
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves
|
|
4992
|
+
Reflect and formulate an answer using bank identity, world facts, and opinions. This endpoint: 1. Retrieves experience (conversations and events) 2. Retrieves world facts relevant to the query 3. Retrieves existing opinions (bank's perspectives) 4. Uses LLM to formulate a contextual answer 5. Extracts and stores any new opinions formed 6. Returns plain text answer, the facts used, and new opinions
|
|
4993
4993
|
|
|
4994
4994
|
:param bank_id: (required)
|
|
4995
4995
|
:type bank_id: str
|
|
@@ -5686,10 +5686,10 @@ class DefaultApi:
|
|
|
5686
5686
|
|
|
5687
5687
|
|
|
5688
5688
|
@validate_call
|
|
5689
|
-
async def
|
|
5689
|
+
async def update_bank_disposition(
|
|
5690
5690
|
self,
|
|
5691
5691
|
bank_id: StrictStr,
|
|
5692
|
-
|
|
5692
|
+
update_disposition_request: UpdateDispositionRequest,
|
|
5693
5693
|
_request_timeout: Union[
|
|
5694
5694
|
None,
|
|
5695
5695
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -5703,14 +5703,14 @@ class DefaultApi:
|
|
|
5703
5703
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
5704
5704
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
5705
5705
|
) -> BankProfileResponse:
|
|
5706
|
-
"""Update memory bank
|
|
5706
|
+
"""Update memory bank disposition
|
|
5707
5707
|
|
|
5708
|
-
Update bank's Big Five
|
|
5708
|
+
Update bank's Big Five disposition traits and bias strength
|
|
5709
5709
|
|
|
5710
5710
|
:param bank_id: (required)
|
|
5711
5711
|
:type bank_id: str
|
|
5712
|
-
:param
|
|
5713
|
-
:type
|
|
5712
|
+
:param update_disposition_request: (required)
|
|
5713
|
+
:type update_disposition_request: UpdateDispositionRequest
|
|
5714
5714
|
:param _request_timeout: timeout setting for this request. If one
|
|
5715
5715
|
number provided, it will be total request
|
|
5716
5716
|
timeout. It can also be a pair (tuple) of
|
|
@@ -5733,9 +5733,9 @@ class DefaultApi:
|
|
|
5733
5733
|
:return: Returns the result object.
|
|
5734
5734
|
""" # noqa: E501
|
|
5735
5735
|
|
|
5736
|
-
_param = self.
|
|
5736
|
+
_param = self._update_bank_disposition_serialize(
|
|
5737
5737
|
bank_id=bank_id,
|
|
5738
|
-
|
|
5738
|
+
update_disposition_request=update_disposition_request,
|
|
5739
5739
|
_request_auth=_request_auth,
|
|
5740
5740
|
_content_type=_content_type,
|
|
5741
5741
|
_headers=_headers,
|
|
@@ -5758,10 +5758,10 @@ class DefaultApi:
|
|
|
5758
5758
|
|
|
5759
5759
|
|
|
5760
5760
|
@validate_call
|
|
5761
|
-
async def
|
|
5761
|
+
async def update_bank_disposition_with_http_info(
|
|
5762
5762
|
self,
|
|
5763
5763
|
bank_id: StrictStr,
|
|
5764
|
-
|
|
5764
|
+
update_disposition_request: UpdateDispositionRequest,
|
|
5765
5765
|
_request_timeout: Union[
|
|
5766
5766
|
None,
|
|
5767
5767
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -5775,14 +5775,14 @@ class DefaultApi:
|
|
|
5775
5775
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
5776
5776
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
5777
5777
|
) -> ApiResponse[BankProfileResponse]:
|
|
5778
|
-
"""Update memory bank
|
|
5778
|
+
"""Update memory bank disposition
|
|
5779
5779
|
|
|
5780
|
-
Update bank's Big Five
|
|
5780
|
+
Update bank's Big Five disposition traits and bias strength
|
|
5781
5781
|
|
|
5782
5782
|
:param bank_id: (required)
|
|
5783
5783
|
:type bank_id: str
|
|
5784
|
-
:param
|
|
5785
|
-
:type
|
|
5784
|
+
:param update_disposition_request: (required)
|
|
5785
|
+
:type update_disposition_request: UpdateDispositionRequest
|
|
5786
5786
|
:param _request_timeout: timeout setting for this request. If one
|
|
5787
5787
|
number provided, it will be total request
|
|
5788
5788
|
timeout. It can also be a pair (tuple) of
|
|
@@ -5805,9 +5805,9 @@ class DefaultApi:
|
|
|
5805
5805
|
:return: Returns the result object.
|
|
5806
5806
|
""" # noqa: E501
|
|
5807
5807
|
|
|
5808
|
-
_param = self.
|
|
5808
|
+
_param = self._update_bank_disposition_serialize(
|
|
5809
5809
|
bank_id=bank_id,
|
|
5810
|
-
|
|
5810
|
+
update_disposition_request=update_disposition_request,
|
|
5811
5811
|
_request_auth=_request_auth,
|
|
5812
5812
|
_content_type=_content_type,
|
|
5813
5813
|
_headers=_headers,
|
|
@@ -5830,10 +5830,10 @@ class DefaultApi:
|
|
|
5830
5830
|
|
|
5831
5831
|
|
|
5832
5832
|
@validate_call
|
|
5833
|
-
async def
|
|
5833
|
+
async def update_bank_disposition_without_preload_content(
|
|
5834
5834
|
self,
|
|
5835
5835
|
bank_id: StrictStr,
|
|
5836
|
-
|
|
5836
|
+
update_disposition_request: UpdateDispositionRequest,
|
|
5837
5837
|
_request_timeout: Union[
|
|
5838
5838
|
None,
|
|
5839
5839
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -5847,14 +5847,14 @@ class DefaultApi:
|
|
|
5847
5847
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
5848
5848
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
5849
5849
|
) -> RESTResponseType:
|
|
5850
|
-
"""Update memory bank
|
|
5850
|
+
"""Update memory bank disposition
|
|
5851
5851
|
|
|
5852
|
-
Update bank's Big Five
|
|
5852
|
+
Update bank's Big Five disposition traits and bias strength
|
|
5853
5853
|
|
|
5854
5854
|
:param bank_id: (required)
|
|
5855
5855
|
:type bank_id: str
|
|
5856
|
-
:param
|
|
5857
|
-
:type
|
|
5856
|
+
:param update_disposition_request: (required)
|
|
5857
|
+
:type update_disposition_request: UpdateDispositionRequest
|
|
5858
5858
|
:param _request_timeout: timeout setting for this request. If one
|
|
5859
5859
|
number provided, it will be total request
|
|
5860
5860
|
timeout. It can also be a pair (tuple) of
|
|
@@ -5877,9 +5877,9 @@ class DefaultApi:
|
|
|
5877
5877
|
:return: Returns the result object.
|
|
5878
5878
|
""" # noqa: E501
|
|
5879
5879
|
|
|
5880
|
-
_param = self.
|
|
5880
|
+
_param = self._update_bank_disposition_serialize(
|
|
5881
5881
|
bank_id=bank_id,
|
|
5882
|
-
|
|
5882
|
+
update_disposition_request=update_disposition_request,
|
|
5883
5883
|
_request_auth=_request_auth,
|
|
5884
5884
|
_content_type=_content_type,
|
|
5885
5885
|
_headers=_headers,
|
|
@@ -5897,10 +5897,10 @@ class DefaultApi:
|
|
|
5897
5897
|
return response_data.response
|
|
5898
5898
|
|
|
5899
5899
|
|
|
5900
|
-
def
|
|
5900
|
+
def _update_bank_disposition_serialize(
|
|
5901
5901
|
self,
|
|
5902
5902
|
bank_id,
|
|
5903
|
-
|
|
5903
|
+
update_disposition_request,
|
|
5904
5904
|
_request_auth,
|
|
5905
5905
|
_content_type,
|
|
5906
5906
|
_headers,
|
|
@@ -5928,8 +5928,8 @@ class DefaultApi:
|
|
|
5928
5928
|
# process the header parameters
|
|
5929
5929
|
# process the form parameters
|
|
5930
5930
|
# process the body parameter
|
|
5931
|
-
if
|
|
5932
|
-
_body_params =
|
|
5931
|
+
if update_disposition_request is not None:
|
|
5932
|
+
_body_params = update_disposition_request
|
|
5933
5933
|
|
|
5934
5934
|
|
|
5935
5935
|
# set the HTTP header `Accept`
|