hindsight-client 0.1.14__py3-none-any.whl → 0.1.16__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.
Files changed (114) hide show
  1. hindsight_client/hindsight_client.py +11 -10
  2. {hindsight_client-0.1.14.dist-info → hindsight_client-0.1.16.dist-info}/METADATA +1 -1
  3. hindsight_client-0.1.16.dist-info/RECORD +109 -0
  4. hindsight_client_api/__init__.py +21 -3
  5. hindsight_client_api/api/__init__.py +5 -1
  6. hindsight_client_api/api/banks_api.py +2045 -0
  7. hindsight_client_api/api/documents_api.py +1234 -0
  8. hindsight_client_api/api/entities_api.py +921 -0
  9. hindsight_client_api/api/memory_api.py +1901 -0
  10. hindsight_client_api/api/monitoring_api.py +1 -1
  11. hindsight_client_api/api/operations_api.py +610 -0
  12. hindsight_client_api/api_client.py +1 -1
  13. hindsight_client_api/configuration.py +2 -2
  14. hindsight_client_api/docs/BankListItem.md +2 -2
  15. hindsight_client_api/docs/BankStatsResponse.md +39 -0
  16. hindsight_client_api/docs/BanksApi.md +517 -0
  17. hindsight_client_api/docs/CancelOperationResponse.md +32 -0
  18. hindsight_client_api/docs/DeleteDocumentResponse.md +33 -0
  19. hindsight_client_api/docs/DeleteResponse.md +2 -0
  20. hindsight_client_api/docs/DocumentsApi.md +313 -0
  21. hindsight_client_api/docs/EntitiesApi.md +230 -0
  22. hindsight_client_api/docs/MemoryApi.md +499 -0
  23. hindsight_client_api/docs/OperationResponse.md +36 -0
  24. hindsight_client_api/docs/OperationsApi.md +154 -0
  25. hindsight_client_api/docs/OperationsListResponse.md +31 -0
  26. hindsight_client_api/exceptions.py +1 -1
  27. hindsight_client_api/models/__init__.py +6 -1
  28. hindsight_client_api/models/add_background_request.py +1 -1
  29. hindsight_client_api/models/background_response.py +1 -1
  30. hindsight_client_api/models/bank_list_item.py +13 -3
  31. hindsight_client_api/models/bank_list_response.py +1 -1
  32. hindsight_client_api/models/bank_profile_response.py +1 -1
  33. hindsight_client_api/models/bank_stats_response.py +105 -0
  34. hindsight_client_api/models/budget.py +1 -1
  35. hindsight_client_api/models/cancel_operation_response.py +91 -0
  36. hindsight_client_api/models/chunk_data.py +1 -1
  37. hindsight_client_api/models/chunk_include_options.py +1 -1
  38. hindsight_client_api/models/chunk_response.py +1 -1
  39. hindsight_client_api/models/create_bank_request.py +1 -1
  40. hindsight_client_api/models/delete_document_response.py +93 -0
  41. hindsight_client_api/models/delete_response.py +19 -5
  42. hindsight_client_api/models/disposition_traits.py +1 -1
  43. hindsight_client_api/models/document_response.py +1 -1
  44. hindsight_client_api/models/entity_detail_response.py +1 -1
  45. hindsight_client_api/models/entity_include_options.py +1 -1
  46. hindsight_client_api/models/entity_list_item.py +1 -1
  47. hindsight_client_api/models/entity_list_response.py +1 -1
  48. hindsight_client_api/models/entity_observation_response.py +1 -1
  49. hindsight_client_api/models/entity_state_response.py +1 -1
  50. hindsight_client_api/models/graph_data_response.py +1 -1
  51. hindsight_client_api/models/http_validation_error.py +1 -1
  52. hindsight_client_api/models/include_options.py +1 -1
  53. hindsight_client_api/models/list_documents_response.py +1 -1
  54. hindsight_client_api/models/list_memory_units_response.py +1 -1
  55. hindsight_client_api/models/memory_item.py +1 -1
  56. hindsight_client_api/models/operation_response.py +109 -0
  57. hindsight_client_api/models/operations_list_response.py +97 -0
  58. hindsight_client_api/models/recall_request.py +1 -1
  59. hindsight_client_api/models/recall_response.py +1 -1
  60. hindsight_client_api/models/recall_result.py +1 -1
  61. hindsight_client_api/models/reflect_fact.py +1 -1
  62. hindsight_client_api/models/reflect_include_options.py +1 -1
  63. hindsight_client_api/models/reflect_request.py +1 -1
  64. hindsight_client_api/models/reflect_response.py +1 -1
  65. hindsight_client_api/models/retain_request.py +1 -1
  66. hindsight_client_api/models/retain_response.py +1 -1
  67. hindsight_client_api/models/update_disposition_request.py +1 -1
  68. hindsight_client_api/models/validation_error.py +1 -1
  69. hindsight_client_api/models/validation_error_loc_inner.py +1 -1
  70. hindsight_client_api/rest.py +1 -1
  71. hindsight_client-0.1.14.dist-info/RECORD +0 -131
  72. hindsight_client_api/api/default_api.py +0 -5976
  73. hindsight_client_api/docs/DefaultApi.md +0 -1568
  74. hindsight_client_api/test/__init__.py +0 -0
  75. hindsight_client_api/test/test_add_background_request.py +0 -53
  76. hindsight_client_api/test/test_background_response.py +0 -53
  77. hindsight_client_api/test/test_bank_list_item.py +0 -60
  78. hindsight_client_api/test/test_bank_list_response.py +0 -68
  79. hindsight_client_api/test/test_bank_profile_response.py +0 -58
  80. hindsight_client_api/test/test_budget.py +0 -33
  81. hindsight_client_api/test/test_chunk_data.py +0 -57
  82. hindsight_client_api/test/test_chunk_include_options.py +0 -51
  83. hindsight_client_api/test/test_chunk_response.py +0 -62
  84. hindsight_client_api/test/test_create_bank_request.py +0 -53
  85. hindsight_client_api/test/test_default_api.py +0 -178
  86. hindsight_client_api/test/test_delete_response.py +0 -52
  87. hindsight_client_api/test/test_disposition_traits.py +0 -56
  88. hindsight_client_api/test/test_document_response.py +0 -64
  89. hindsight_client_api/test/test_entity_detail_response.py +0 -71
  90. hindsight_client_api/test/test_entity_include_options.py +0 -51
  91. hindsight_client_api/test/test_entity_list_item.py +0 -61
  92. hindsight_client_api/test/test_entity_list_response.py +0 -56
  93. hindsight_client_api/test/test_entity_observation_response.py +0 -53
  94. hindsight_client_api/test/test_entity_state_response.py +0 -64
  95. hindsight_client_api/test/test_graph_data_response.py +0 -82
  96. hindsight_client_api/test/test_http_validation_error.py +0 -58
  97. hindsight_client_api/test/test_include_options.py +0 -54
  98. hindsight_client_api/test/test_list_documents_response.py +0 -66
  99. hindsight_client_api/test/test_list_memory_units_response.py +0 -66
  100. hindsight_client_api/test/test_memory_item.py +0 -58
  101. hindsight_client_api/test/test_monitoring_api.py +0 -45
  102. hindsight_client_api/test/test_recall_request.py +0 -64
  103. hindsight_client_api/test/test_recall_response.py +0 -76
  104. hindsight_client_api/test/test_recall_result.py +0 -67
  105. hindsight_client_api/test/test_reflect_fact.py +0 -57
  106. hindsight_client_api/test/test_reflect_include_options.py +0 -51
  107. hindsight_client_api/test/test_reflect_request.py +0 -56
  108. hindsight_client_api/test/test_reflect_response.py +0 -55
  109. hindsight_client_api/test/test_retain_request.py +0 -57
  110. hindsight_client_api/test/test_retain_response.py +0 -58
  111. hindsight_client_api/test/test_update_disposition_request.py +0 -52
  112. hindsight_client_api/test/test_validation_error.py +0 -60
  113. hindsight_client_api/test/test_validation_error_loc_inner.py +0 -50
  114. {hindsight_client-0.1.14.dist-info → hindsight_client-0.1.16.dist-info}/WHEEL +0 -0
@@ -10,7 +10,7 @@ from typing import Optional, List, Dict, Any
10
10
  from datetime import datetime
11
11
 
12
12
  import hindsight_client_api
13
- from hindsight_client_api.api import default_api
13
+ from hindsight_client_api.api import memory_api, banks_api
14
14
  from hindsight_client_api.models import (
15
15
  recall_request,
16
16
  retain_request,
@@ -74,7 +74,8 @@ class Hindsight:
74
74
  """
75
75
  config = hindsight_client_api.Configuration(host=base_url, access_token=api_key)
76
76
  self._api_client = hindsight_client_api.ApiClient(config)
77
- self._api = default_api.DefaultApi(self._api_client)
77
+ self._memory_api = memory_api.MemoryApi(self._api_client)
78
+ self._banks_api = banks_api.BanksApi(self._api_client)
78
79
 
79
80
  def __enter__(self):
80
81
  """Context manager entry."""
@@ -168,7 +169,7 @@ class Hindsight:
168
169
  async_=retain_async,
169
170
  )
170
171
 
171
- return _run_async(self._api.retain_memories(bank_id, request_obj))
172
+ return _run_async(self._memory_api.retain_memories(bank_id, request_obj))
172
173
 
173
174
  def recall(
174
175
  self,
@@ -220,7 +221,7 @@ class Hindsight:
220
221
  include=include_opts,
221
222
  )
222
223
 
223
- return _run_async(self._api.recall_memories(bank_id, request_obj))
224
+ return _run_async(self._memory_api.recall_memories(bank_id, request_obj))
224
225
 
225
226
  def reflect(
226
227
  self,
@@ -247,7 +248,7 @@ class Hindsight:
247
248
  context=context,
248
249
  )
249
250
 
250
- return _run_async(self._api.reflect(bank_id, request_obj))
251
+ return _run_async(self._memory_api.reflect(bank_id, request_obj))
251
252
 
252
253
  def list_memories(
253
254
  self,
@@ -258,7 +259,7 @@ class Hindsight:
258
259
  offset: int = 0,
259
260
  ) -> ListMemoryUnitsResponse:
260
261
  """List memory units with pagination."""
261
- return _run_async(self._api.list_memories(
262
+ return _run_async(self._memory_api.list_memories(
262
263
  bank_id=bank_id,
263
264
  type=type,
264
265
  q=search_query,
@@ -286,7 +287,7 @@ class Hindsight:
286
287
  disposition=disposition_obj,
287
288
  )
288
289
 
289
- return _run_async(self._api.create_or_update_bank(bank_id, request_obj))
290
+ return _run_async(self._banks_api.create_or_update_bank(bank_id, request_obj))
290
291
 
291
292
  # Async methods (native async, no _run_async wrapper)
292
293
 
@@ -326,7 +327,7 @@ class Hindsight:
326
327
  async_=retain_async,
327
328
  )
328
329
 
329
- return await self._api.retain_memories(bank_id, request_obj)
330
+ return await self._memory_api.retain_memories(bank_id, request_obj)
330
331
 
331
332
  async def aretain(
332
333
  self,
@@ -386,7 +387,7 @@ class Hindsight:
386
387
  trace=False,
387
388
  )
388
389
 
389
- response = await self._api.recall_memories(bank_id, request_obj)
390
+ response = await self._memory_api.recall_memories(bank_id, request_obj)
390
391
  return response.results if hasattr(response, 'results') else []
391
392
 
392
393
  async def areflect(
@@ -414,4 +415,4 @@ class Hindsight:
414
415
  context=context,
415
416
  )
416
417
 
417
- return await self._api.reflect(bank_id, request_obj)
418
+ return await self._memory_api.reflect(bank_id, request_obj)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hindsight-client
3
- Version: 0.1.14
3
+ Version: 0.1.16
4
4
  Summary: Python client for Hindsight - Semantic memory system with personality-driven thinking
5
5
  Author: Hindsight Team
6
6
  Requires-Python: >=3.10
@@ -0,0 +1,109 @@
1
+ hindsight_client/__init__.py,sha256=PyDJ4UVKmtRN5OeBs0-rl-tUtqS8OoX53qvejKGC3JU,3114
2
+ hindsight_client/hindsight_client.py,sha256=sOyI7okjIuq6U6Qf30dXsTR9ikDMC6FVtX71aZ_Ribw,14453
3
+ hindsight_client_api/__init__.py,sha256=5PKjxuRIBdYzBm_35NF_B583xiI5TAlbxmTTKkF60j0,7004
4
+ hindsight_client_api/api_client.py,sha256=6Q0Hdx1h4U549-Bfk9ckwSlIdF27arfLMMQsGeoyR98,27860
5
+ hindsight_client_api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
6
+ hindsight_client_api/configuration.py,sha256=HJVm0OTS-ShvzbNjhlB7P_zFpZSCI2UVAMgxHZGsGxY,17787
7
+ hindsight_client_api/exceptions.py,sha256=YkyzFWcoSnqgQ1_Zb0KcfdzzC09amaPMNeQJee0VbAM,6470
8
+ hindsight_client_api/rest.py,sha256=MZjIq4Rp21cNayqnI6SC9aP8K4DjsEcPPebHl2Y6nCM,7225
9
+ hindsight_client_api/api/__init__.py,sha256=Kn3AGORXpRNUKhh0v-I9-8BoZYGgVxhzIQ1_suO261w,420
10
+ hindsight_client_api/api/banks_api.py,sha256=Vk607GRBbRz_Wwr59z7iOSsz-VwY5JRtjawY7fruOBU,79646
11
+ hindsight_client_api/api/documents_api.py,sha256=F890v_gYJgbbaqE760jSpTEzT1fVBJ8Lk0Zo-H0ueiQ,46778
12
+ hindsight_client_api/api/entities_api.py,sha256=QGw4UBbQueXMWG5zx9AD30SuRxDqUaQWpLbFAXClU3k,35098
13
+ hindsight_client_api/api/memory_api.py,sha256=aJmZe253m8sL1dJB8HKYPyGDbE5j6JJi3T-rPDPWYbQ,77697
14
+ hindsight_client_api/api/monitoring_api.py,sha256=pt_jMV8GN6xpxX-iqk-FjrlihXLuygCKCXxg9ksEMcE,19807
15
+ hindsight_client_api/api/operations_api.py,sha256=C-ABeir4C-fz7mbN9_uDGqhVReA9OzsuvC0YYJdWlNo,23249
16
+ hindsight_client_api/docs/AddBackgroundRequest.md,sha256=kGqmmpNVKwddWU8vQi8rrFCU7duFEDYwBLclPOlS9yw,1214
17
+ hindsight_client_api/docs/BackgroundResponse.md,sha256=VAn0Kz5hj8BCqzeb_tHFL1H-YC6ePi6QrChWR1sPlc0,1061
18
+ hindsight_client_api/docs/BankListItem.md,sha256=QhNR5gBXj6zIFPWYZYAuWDsM6jnB9dN6JAQt8HkWaUQ,1136
19
+ hindsight_client_api/docs/BankListResponse.md,sha256=20McKN_iVmyOFzQBGOGo-a0D7P2YJTeh31GJna1P6J8,989
20
+ hindsight_client_api/docs/BankProfileResponse.md,sha256=QsB-nP0gaAitMKxZlzliIqHEra_9gUYqzTi5ib-rMG8,1117
21
+ hindsight_client_api/docs/BankStatsResponse.md,sha256=ArJZQnudHPprX_VHAdAgBcdfO6EB84Uh7MubUgIDYBE,1362
22
+ hindsight_client_api/docs/BanksApi.md,sha256=kCuYVmRAEpfqfV5RvlfJ6L7QbJ9VQWP1VVTG3i1jYCY,16607
23
+ hindsight_client_api/docs/Budget.md,sha256=UMCVLms95l0XATPyK4VcTQoeGQjRv6FsnaKZ547s0Ow,309
24
+ hindsight_client_api/docs/CancelOperationResponse.md,sha256=Fy7PDYGywE3txFbBEGye5HPuPGcjJrNnYFtQrROZZak,1118
25
+ hindsight_client_api/docs/ChunkData.md,sha256=8HaU0DkJnIcVayGQc52noa-QxoM_lckzfX0p3B0cVsg,1021
26
+ hindsight_client_api/docs/ChunkIncludeOptions.md,sha256=zPqCLDkW7flyLjJdhrBnh97zm8Y7WTs-kkaYI1xK9G0,1088
27
+ hindsight_client_api/docs/ChunkResponse.md,sha256=6qZwJfZATMT2dD8ML8IDJ7eSwF-8bmuKz2pLGU1UYPE,1068
28
+ hindsight_client_api/docs/CreateBankRequest.md,sha256=YaJoRl-vBdee48YN-1OjWrmIaenKWKGfWkTM13ljqGE,1107
29
+ hindsight_client_api/docs/DeleteDocumentResponse.md,sha256=PzP5Rgi8iYBrJYBJO1f_ovVi_210h47jyY4uYAg6JUk,1144
30
+ hindsight_client_api/docs/DeleteResponse.md,sha256=lJLOnSd5QxiFN349Y2EJXL5roRDRhj58llyLcrPi-w4,1010
31
+ hindsight_client_api/docs/DispositionTraits.md,sha256=soMPj6hVeJxOGoec9fewHzEGWLoghBhBtw4MVU5HFgw,1271
32
+ hindsight_client_api/docs/DocumentResponse.md,sha256=ruwb2llltuJLZ3KoVJ-zwF3C7ELjpjaUNet9OK-4JKQ,1145
33
+ hindsight_client_api/docs/DocumentsApi.md,sha256=-fiHgyRSrHnI7Jq56bMsRIWGKkRTxWv_ugBjBWabCY0,9690
34
+ hindsight_client_api/docs/EntitiesApi.md,sha256=snMl6SoujNoBIwamltK3Xi_Dsx1S60DEqqIRg9nsuRU,7331
35
+ hindsight_client_api/docs/EntityDetailResponse.md,sha256=Ea6SGkeMCZWzhOGyzJ5nP7PU7a6SBit6GL8gWnNyOvA,1308
36
+ hindsight_client_api/docs/EntityIncludeOptions.md,sha256=ldI3RHhT8ub11bc1hmwqCEy4XGzJrFq08NGfEXy7p_Y,1100
37
+ hindsight_client_api/docs/EntityListItem.md,sha256=BpYo9ftZyCHUlB6xPURvCvGu_7YSore0xt8Y_b-4gHA,1125
38
+ hindsight_client_api/docs/EntityListResponse.md,sha256=uwzq605X0L8iHDVR12pIG0t-iVPCgUz5NR39lyWYgqE,1022
39
+ hindsight_client_api/docs/EntityObservationResponse.md,sha256=6-7UxvIKFqGyQaoyHOdadHzXnAigOb2zGHXmpvr6rf0,1109
40
+ hindsight_client_api/docs/EntityStateResponse.md,sha256=08ntXHc69PVXiOGcrg3HwqeYo9wHG5ivfcAvJI-C6eQ,1123
41
+ hindsight_client_api/docs/GraphDataResponse.md,sha256=UIsZmMFNXwKNujVeha8TFPiq4HxZqHOWDXNXbm1yNm8,1119
42
+ hindsight_client_api/docs/HTTPValidationError.md,sha256=IZC9oMGPXsIFy7yeKKgRpZHQXzz0wyIp2ZChHA9MaXI,1008
43
+ hindsight_client_api/docs/IncludeOptions.md,sha256=GZ4xlW2amRYgWq_dL7sdmnrmUdWtdY9FnHqKhotcRoI,1080
44
+ hindsight_client_api/docs/ListDocumentsResponse.md,sha256=knIyqPUGLe1Pg0dLnjrnHgO1RqB7RisKEZWSyiX4oiI,1125
45
+ hindsight_client_api/docs/ListMemoryUnitsResponse.md,sha256=UBFQ1uJd9AAcRHWtgr7hjx86ka_EmPKr5LwH15UO2Mc,1160
46
+ hindsight_client_api/docs/MemoryApi.md,sha256=0rTXM4HsK7McTQhf00RsuW05XDqcraj11894hc0NYfY,16719
47
+ hindsight_client_api/docs/MemoryItem.md,sha256=UaHZE9BQO9BJgsGJL8QfAeuogtCZmFoH4XZshoyLmcI,1045
48
+ hindsight_client_api/docs/MonitoringApi.md,sha256=Iquzlr0AmtLliR9c-yKy9-PyXWqncytBhLbZ0eO1C_8,3755
49
+ hindsight_client_api/docs/OperationResponse.md,sha256=N5DUPYa9Q6lALTdpUsPfLVBJBplxQqV3Pi8t6ZMYATc,1152
50
+ hindsight_client_api/docs/OperationsApi.md,sha256=stE5s6j-N0n9DfMD9TJKfk0iFtXpMx9KF9DXFlPB0l0,4868
51
+ hindsight_client_api/docs/OperationsListResponse.md,sha256=X_ULXJETpzI1-n3J8irktDlOBWyOo-0sa7JdHUO8Ovw,1117
52
+ hindsight_client_api/docs/RecallRequest.md,sha256=PiRDR-7hihL2zhCKTRNdJKIUZ5hTHBURwQCrMQl_XHs,1309
53
+ hindsight_client_api/docs/RecallResponse.md,sha256=VbABZlZwMTaSuqaqAAOOAjkuqaDB4azaQAFP5noJkVc,1173
54
+ hindsight_client_api/docs/RecallResult.md,sha256=1QTIqPN86Gq--tw-LwFVBmO5QD4dj8DbzJqe0ywUrew,1297
55
+ hindsight_client_api/docs/ReflectFact.md,sha256=f9wmQde692is1dF6sw6S5_zIDI9Z_AHSbCvD7ALluLY,1075
56
+ hindsight_client_api/docs/ReflectIncludeOptions.md,sha256=tH-pQeSv0QH9hoLmQhsg0PO5R3jVolDK6JFUG5CHi50,1112
57
+ hindsight_client_api/docs/ReflectRequest.md,sha256=QIkRNJJsZS47yy20ZsoDFQhOFx8kYmB2wd0az85OelY,1158
58
+ hindsight_client_api/docs/ReflectResponse.md,sha256=ziZtjLkXfX7RieaBtL5XC1JxgyG5_1rda-pZHHrQAaA,1019
59
+ hindsight_client_api/docs/RetainRequest.md,sha256=u-IhxRJo2iFWtskDsRpBJJjOdm7mfLGE6j1W6iNTcKY,1090
60
+ hindsight_client_api/docs/RetainResponse.md,sha256=2a3Wz7ilrnQ_BFf6YTqWDmA94gohs8kU9sCR3mJYrj8,1065
61
+ hindsight_client_api/docs/UpdateDispositionRequest.md,sha256=C3Q9UcVts2wPjYQgy1JH2ch1jy0tP2xswGe8sUzkZ_8,1112
62
+ hindsight_client_api/docs/ValidationError.md,sha256=moV1dyA1z8n2DSD18ri7x7GDJujHc6--fbwGr4u8cl4,1001
63
+ hindsight_client_api/docs/ValidationErrorLocInner.md,sha256=WP7Zm2LNt2HZb6XHo0cLvLCrht-EGFKp0i4zD3jPMto,988
64
+ hindsight_client_api/models/__init__.py,sha256=a-vD1DQG9S6RMncyRj29QJZnkzCNuF17VVAwWMYrH58,3537
65
+ hindsight_client_api/models/add_background_request.py,sha256=3rld3CjxNSPbxX9CoDSr5WEuhEoo-gRrCZ709Vvy9rI,2867
66
+ hindsight_client_api/models/background_response.py,sha256=SUFt-k6ipl2SXAvHb3IU3IJ5LuXIGEoK8_pVbZO3Dgw,3144
67
+ hindsight_client_api/models/bank_list_item.py,sha256=grJYCFBinjxEy1M8ZxPiy8asUVKj58b2KnScE2tmU-Q,4137
68
+ hindsight_client_api/models/bank_list_response.py,sha256=LiACkek7iqhA5mmVvYQkMnf4J5bfSFwBJ_mkC0u_Nz4,2896
69
+ hindsight_client_api/models/bank_profile_response.py,sha256=1vMc2814672N61dLK2a8b_H0yJfbOxSgiAQvHztvyrk,3030
70
+ hindsight_client_api/models/bank_stats_response.py,sha256=ekrmI8GnALqfSzOIRXF0a8mXPWyyqzz76SSEl7gfnRE,3521
71
+ hindsight_client_api/models/budget.py,sha256=AwTSqd59PKqQEM1g3qM3E7fSH2lUFll9iFLjzRMhtDE,702
72
+ hindsight_client_api/models/cancel_operation_response.py,sha256=jxLGkFmZ8aWRMcHVmnnnl306u8R10mSS5Yo9n-vtNCM,2656
73
+ hindsight_client_api/models/chunk_data.py,sha256=3iU9LmeMrMr2cdnSoE38_ipx7YZxAHU46v72ShVbPKo,2828
74
+ hindsight_client_api/models/chunk_include_options.py,sha256=96r8h9pZbHGvK2OMC3q4xfoBqXRwCSypmcCDO0KCM7A,2634
75
+ hindsight_client_api/models/chunk_response.py,sha256=5E6XHhhEO7AF_OMNk6vJZFT47_IRex8bGHlFW-AEPLs,2888
76
+ hindsight_client_api/models/create_bank_request.py,sha256=5IEuAmetFFtI1NFH0gTzTCtVni49TNVXAnrqz9n9lhk,3668
77
+ hindsight_client_api/models/delete_document_response.py,sha256=k_gHKh2qiUOyAS-iLzPPGVNFwTltvH2gbFceLU-JBrI,2788
78
+ hindsight_client_api/models/delete_response.py,sha256=8TjUUMXrEfbxxMHj5PsCaqEib2qpaA3JT45cbxToFj0,3126
79
+ hindsight_client_api/models/disposition_traits.py,sha256=I61B7L3BkGQlAxBONDILwE-hH_S3oY2IFrbeTzpj9Mg,3055
80
+ hindsight_client_api/models/document_response.py,sha256=hvtlBhm0EEGldM5Gh82cwnFYCL2ckwI2upDySdhbFZ0,3256
81
+ hindsight_client_api/models/entity_detail_response.py,sha256=51Pv6lQEVGjUZ2KimRP0xFCowwOgt0ShcNITeHLF0Ro,4312
82
+ hindsight_client_api/models/entity_include_options.py,sha256=j6o0SPWslW7y461xahbw4l1VXMIU1B5vxR3MX8cJ2FY,2635
83
+ hindsight_client_api/models/entity_list_item.py,sha256=ZtdnkJ-xz7djdls1RaYXl7BEF_q1YIcan61MrHH0x6g,3602
84
+ hindsight_client_api/models/entity_list_response.py,sha256=J3EYrjHKJk8AjcUQH2uEI3s1Hw11mIyQDgKrvPRhd4w,2913
85
+ hindsight_client_api/models/entity_observation_response.py,sha256=Sbz_m0MssD-gYyV4sAeD56HGrnmlWcdO0bBs73K65YU,2804
86
+ hindsight_client_api/models/entity_state_response.py,sha256=VNxiaOcNy2vCXuNGJMD1WbTTqwUguizvCxJHkt7Lyuw,3239
87
+ hindsight_client_api/models/graph_data_response.py,sha256=24l32YX7rzsNZBIeLAL2TX25O3-7Ji-I-9WkYPHWSNQ,2721
88
+ hindsight_client_api/models/http_validation_error.py,sha256=KKvY67lajAI7hAys0IZHeeTsG2ArvpVIATqSMjbWGOY,2937
89
+ hindsight_client_api/models/include_options.py,sha256=FlB8QT_bqA141_tSv51QvZRbqKZdcaR2estkHg6eBGc,3645
90
+ hindsight_client_api/models/list_documents_response.py,sha256=8lXIfprjJHpWCgiKkw4-M8d2y4NOTcK76HoF1otMekI,2675
91
+ hindsight_client_api/models/list_memory_units_response.py,sha256=gEC-opRav_3cWdKvoO7Hure3dnVyFiFC0gtDP0TE7H8,2684
92
+ hindsight_client_api/models/memory_item.py,sha256=2DisYT6Hnfpi9IbVkQfkOhlQQk_E9AqAmGn4wo_WcIA,3741
93
+ hindsight_client_api/models/operation_response.py,sha256=ach9QI35J3FtPKLzZDqb54Xfov7ouiEhto4nztCKc8I,3467
94
+ hindsight_client_api/models/operations_list_response.py,sha256=3XOfvTBBkv7VmYo-PZX0wVK_RtMCZkQdaPkXXhGIiRU,3088
95
+ hindsight_client_api/models/recall_request.py,sha256=IPYeipQO7qxUepB01iCkz2ACNWQg5jXLIPzSAxsTQts,4053
96
+ hindsight_client_api/models/recall_response.py,sha256=t_qYAUMHXFBnXX7kCF8EeLfqeyF9V01wvQizCDvf4dY,5103
97
+ hindsight_client_api/models/recall_result.py,sha256=fI-TCBDFGuSIytFsI7FADtJkmvsTOX-G3bFFRxLJbMY,5402
98
+ hindsight_client_api/models/reflect_fact.py,sha256=sYW00LmDpY7VptK0E4I0gUWHkCRaCTeypuHSdciknw8,3973
99
+ hindsight_client_api/models/reflect_include_options.py,sha256=q3TqMu-zrJw8LIHOl5pb0baDEQlOlFkBI5gE9MEmKQQ,2584
100
+ hindsight_client_api/models/reflect_request.py,sha256=_Rt9QSGz040309-WTN8YXWkfQ6KzGWWQAmGsaGgw0Iw,3407
101
+ hindsight_client_api/models/reflect_response.py,sha256=z4rzUMGlFzk4DQKINQhaLHWmwe6kocgglSFePyaKLE0,3024
102
+ hindsight_client_api/models/retain_request.py,sha256=LABq0vwi3ZYnb1RB6UCLw6PoFT4Q4qap8LNWLquh7jE,3178
103
+ hindsight_client_api/models/retain_response.py,sha256=b3t5H7_ixi7jZw_kvb2XYh0Q6IDTfHvWRR2KaKqf7ls,2796
104
+ hindsight_client_api/models/update_disposition_request.py,sha256=6D3qceEJByBWcZrfSbNXrdlrDtnj0_QXh2zosc49-5E,2817
105
+ hindsight_client_api/models/validation_error.py,sha256=XnK71WeEUbZyXPbzv1uKaNAFEYxfsiS7G0cvjTgCxiM,3029
106
+ hindsight_client_api/models/validation_error_loc_inner.py,sha256=q51Yi64xsxhsy3_AAD5DlcfI2-g_81hQoN6Olh3I8ag,4812
107
+ hindsight_client-0.1.16.dist-info/METADATA,sha256=8ZaRBmGD8mU--Mksp6A9tX2PUllNMXu-ltAlvms6S5Y,648
108
+ hindsight_client-0.1.16.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
109
+ hindsight_client-0.1.16.dist-info/RECORD,,
@@ -7,7 +7,7 @@
7
7
 
8
8
  HTTP API for Hindsight
9
9
 
10
- The version of the OpenAPI document: 1.0.0
10
+ The version of the OpenAPI document: 0.1.0
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
13
  Do not edit the class manually.
@@ -18,8 +18,12 @@ __version__ = "0.0.7"
18
18
 
19
19
  # Define package exports
20
20
  __all__ = [
21
+ "BanksApi",
22
+ "DocumentsApi",
23
+ "EntitiesApi",
24
+ "MemoryApi",
21
25
  "MonitoringApi",
22
- "DefaultApi",
26
+ "OperationsApi",
23
27
  "ApiResponse",
24
28
  "ApiClient",
25
29
  "Configuration",
@@ -34,11 +38,14 @@ __all__ = [
34
38
  "BankListItem",
35
39
  "BankListResponse",
36
40
  "BankProfileResponse",
41
+ "BankStatsResponse",
37
42
  "Budget",
43
+ "CancelOperationResponse",
38
44
  "ChunkData",
39
45
  "ChunkIncludeOptions",
40
46
  "ChunkResponse",
41
47
  "CreateBankRequest",
48
+ "DeleteDocumentResponse",
42
49
  "DeleteResponse",
43
50
  "DispositionTraits",
44
51
  "DocumentResponse",
@@ -54,6 +61,8 @@ __all__ = [
54
61
  "ListDocumentsResponse",
55
62
  "ListMemoryUnitsResponse",
56
63
  "MemoryItem",
64
+ "OperationResponse",
65
+ "OperationsListResponse",
57
66
  "RecallRequest",
58
67
  "RecallResponse",
59
68
  "RecallResult",
@@ -69,8 +78,12 @@ __all__ = [
69
78
  ]
70
79
 
71
80
  # import apis into sdk package
81
+ from hindsight_client_api.api.banks_api import BanksApi as BanksApi
82
+ from hindsight_client_api.api.documents_api import DocumentsApi as DocumentsApi
83
+ from hindsight_client_api.api.entities_api import EntitiesApi as EntitiesApi
84
+ from hindsight_client_api.api.memory_api import MemoryApi as MemoryApi
72
85
  from hindsight_client_api.api.monitoring_api import MonitoringApi as MonitoringApi
73
- from hindsight_client_api.api.default_api import DefaultApi as DefaultApi
86
+ from hindsight_client_api.api.operations_api import OperationsApi as OperationsApi
74
87
 
75
88
  # import ApiClient
76
89
  from hindsight_client_api.api_response import ApiResponse as ApiResponse
@@ -89,11 +102,14 @@ from hindsight_client_api.models.background_response import BackgroundResponse a
89
102
  from hindsight_client_api.models.bank_list_item import BankListItem as BankListItem
90
103
  from hindsight_client_api.models.bank_list_response import BankListResponse as BankListResponse
91
104
  from hindsight_client_api.models.bank_profile_response import BankProfileResponse as BankProfileResponse
105
+ from hindsight_client_api.models.bank_stats_response import BankStatsResponse as BankStatsResponse
92
106
  from hindsight_client_api.models.budget import Budget as Budget
107
+ from hindsight_client_api.models.cancel_operation_response import CancelOperationResponse as CancelOperationResponse
93
108
  from hindsight_client_api.models.chunk_data import ChunkData as ChunkData
94
109
  from hindsight_client_api.models.chunk_include_options import ChunkIncludeOptions as ChunkIncludeOptions
95
110
  from hindsight_client_api.models.chunk_response import ChunkResponse as ChunkResponse
96
111
  from hindsight_client_api.models.create_bank_request import CreateBankRequest as CreateBankRequest
112
+ from hindsight_client_api.models.delete_document_response import DeleteDocumentResponse as DeleteDocumentResponse
97
113
  from hindsight_client_api.models.delete_response import DeleteResponse as DeleteResponse
98
114
  from hindsight_client_api.models.disposition_traits import DispositionTraits as DispositionTraits
99
115
  from hindsight_client_api.models.document_response import DocumentResponse as DocumentResponse
@@ -109,6 +125,8 @@ from hindsight_client_api.models.include_options import IncludeOptions as Includ
109
125
  from hindsight_client_api.models.list_documents_response import ListDocumentsResponse as ListDocumentsResponse
110
126
  from hindsight_client_api.models.list_memory_units_response import ListMemoryUnitsResponse as ListMemoryUnitsResponse
111
127
  from hindsight_client_api.models.memory_item import MemoryItem as MemoryItem
128
+ from hindsight_client_api.models.operation_response import OperationResponse as OperationResponse
129
+ from hindsight_client_api.models.operations_list_response import OperationsListResponse as OperationsListResponse
112
130
  from hindsight_client_api.models.recall_request import RecallRequest as RecallRequest
113
131
  from hindsight_client_api.models.recall_response import RecallResponse as RecallResponse
114
132
  from hindsight_client_api.models.recall_result import RecallResult as RecallResult
@@ -1,6 +1,10 @@
1
1
  # flake8: noqa
2
2
 
3
3
  # import apis into api package
4
+ from hindsight_client_api.api.banks_api import BanksApi
5
+ from hindsight_client_api.api.documents_api import DocumentsApi
6
+ from hindsight_client_api.api.entities_api import EntitiesApi
7
+ from hindsight_client_api.api.memory_api import MemoryApi
4
8
  from hindsight_client_api.api.monitoring_api import MonitoringApi
5
- from hindsight_client_api.api.default_api import DefaultApi
9
+ from hindsight_client_api.api.operations_api import OperationsApi
6
10