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.
Files changed (60) hide show
  1. hindsight_client/__init__.py +9 -8
  2. hindsight_client/hindsight_client.py +396 -59
  3. {hindsight_client-0.2.1.dist-info → hindsight_client-0.4.0.dist-info}/METADATA +1 -1
  4. hindsight_client-0.4.0.dist-info/RECORD +89 -0
  5. hindsight_client_api/__init__.py +27 -0
  6. hindsight_client_api/api/__init__.py +2 -0
  7. hindsight_client_api/api/banks_api.py +1012 -131
  8. hindsight_client_api/api/directives_api.py +1619 -0
  9. hindsight_client_api/api/entities_api.py +29 -9
  10. hindsight_client_api/api/memory_api.py +713 -73
  11. hindsight_client_api/api/mental_models_api.py +1897 -0
  12. hindsight_client_api/api/monitoring_api.py +246 -0
  13. hindsight_client_api/api/operations_api.py +350 -4
  14. hindsight_client_api/models/__init__.py +25 -0
  15. hindsight_client_api/models/add_background_request.py +2 -2
  16. hindsight_client_api/models/async_operation_submit_response.py +89 -0
  17. hindsight_client_api/models/background_response.py +10 -3
  18. hindsight_client_api/models/bank_list_item.py +6 -6
  19. hindsight_client_api/models/bank_profile_response.py +11 -4
  20. hindsight_client_api/models/bank_stats_response.py +15 -4
  21. hindsight_client_api/models/consolidation_response.py +89 -0
  22. hindsight_client_api/models/create_bank_request.py +8 -1
  23. hindsight_client_api/models/create_directive_request.py +95 -0
  24. hindsight_client_api/models/create_mental_model_request.py +100 -0
  25. hindsight_client_api/models/create_mental_model_response.py +87 -0
  26. hindsight_client_api/models/directive_list_response.py +95 -0
  27. hindsight_client_api/models/directive_response.py +113 -0
  28. hindsight_client_api/models/document_response.py +5 -3
  29. hindsight_client_api/models/entity_list_response.py +9 -3
  30. hindsight_client_api/models/features_info.py +91 -0
  31. hindsight_client_api/models/graph_data_response.py +4 -2
  32. hindsight_client_api/models/list_tags_response.py +101 -0
  33. hindsight_client_api/models/memory_item.py +9 -2
  34. hindsight_client_api/models/mental_model_list_response.py +95 -0
  35. hindsight_client_api/models/mental_model_response.py +126 -0
  36. hindsight_client_api/models/mental_model_trigger.py +87 -0
  37. hindsight_client_api/models/operation_response.py +1 -1
  38. hindsight_client_api/models/operation_status_response.py +131 -0
  39. hindsight_client_api/models/operations_list_response.py +8 -2
  40. hindsight_client_api/models/recall_request.py +22 -3
  41. hindsight_client_api/models/recall_result.py +9 -2
  42. hindsight_client_api/models/reflect_based_on.py +115 -0
  43. hindsight_client_api/models/reflect_directive.py +91 -0
  44. hindsight_client_api/models/reflect_include_options.py +13 -2
  45. hindsight_client_api/models/reflect_llm_call.py +89 -0
  46. hindsight_client_api/models/reflect_mental_model.py +96 -0
  47. hindsight_client_api/models/reflect_request.py +22 -3
  48. hindsight_client_api/models/reflect_response.py +34 -11
  49. hindsight_client_api/models/reflect_tool_call.py +100 -0
  50. hindsight_client_api/models/reflect_trace.py +105 -0
  51. hindsight_client_api/models/retain_request.py +10 -3
  52. hindsight_client_api/models/retain_response.py +21 -3
  53. hindsight_client_api/models/tag_item.py +89 -0
  54. hindsight_client_api/models/token_usage.py +91 -0
  55. hindsight_client_api/models/tool_calls_include_options.py +87 -0
  56. hindsight_client_api/models/update_directive_request.py +120 -0
  57. hindsight_client_api/models/update_mental_model_request.py +125 -0
  58. hindsight_client_api/models/version_response.py +93 -0
  59. hindsight_client-0.2.1.dist-info/RECORD +0 -62
  60. {hindsight_client-0.2.1.dist-info → hindsight_client-0.4.0.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hindsight-client
3
- Version: 0.2.1
3
+ Version: 0.4.0
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,89 @@
1
+ hindsight_client/__init__.py,sha256=lLs5nlnCLC6CEs88UO668baAJR4ifxymqX38rtsH27Y,3115
2
+ hindsight_client/hindsight_client.py,sha256=EuDM-H64l1yWGb7YvWN5y99WgU6zfdoNJ3hDPBzsszU,27909
3
+ hindsight_client_api/__init__.py,sha256=P1aEW0Cq7wovssS0OxhSiiL6CkL0bugNl2T172weYYk,6725
4
+ hindsight_client_api/api_client.py,sha256=yFIRrXfpV3BoHTh1Xo-ixJVgzz39asRCp9_KDN1-UCs,27537
5
+ hindsight_client_api/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
6
+ hindsight_client_api/configuration.py,sha256=ByAYUPBL5JZ753cBbAcS0alWiOH_ZemiAskUXGnaBik,17229
7
+ hindsight_client_api/exceptions.py,sha256=cZAGBnRIB3RWaxddPD7rP_-oHUFfV8QqDKslBBZZows,5899
8
+ hindsight_client_api/rest.py,sha256=bP7YkGFnvF6_fX3e9Vf3XfltJ-qdNPQ9GVne07WUi-Y,7900
9
+ hindsight_client_api/api/__init__.py,sha256=Vq512szi8cgkxSYWLkGi7egt_BR8DMO5NVLMObjy6-I,557
10
+ hindsight_client_api/api/banks_api.py,sha256=N4sBhrNvjQDglkiGIgCd8AvQ77xjK9y9IVn2FLhOCY0,113715
11
+ hindsight_client_api/api/directives_api.py,sha256=Mkn7AVLPmyzzPltw9qmvDjVSNX4WCnLrG5vest4x3NU,61806
12
+ hindsight_client_api/api/documents_api.py,sha256=F890v_gYJgbbaqE760jSpTEzT1fVBJ8Lk0Zo-H0ueiQ,46778
13
+ hindsight_client_api/api/entities_api.py,sha256=QEMI4a5_ocjQ5qk6Gaf6pNAgWvtUfCbZHt0VPKzEkSI,36373
14
+ hindsight_client_api/api/memory_api.py,sha256=JJzN3rMhb-Pcu2XhYzWhAXnZ6SRagQMQq9vZ4I0njtU,102710
15
+ hindsight_client_api/api/mental_models_api.py,sha256=0N89BPlmOymKxbW9WW5OUaAkpGdXuoW2MQn-sjGG-Rc,73721
16
+ hindsight_client_api/api/monitoring_api.py,sha256=u3igeF4VlRHWOFpcYOHv42Htf2WfRk9kuV68vq7KyFU,29487
17
+ hindsight_client_api/api/operations_api.py,sha256=cIyZOiuwTX5fBQdCf-_-tSyaC3K7YnwdDcBp3yTdQyQ,37665
18
+ hindsight_client_api/models/__init__.py,sha256=X2jY45dXrOWG6m5LZhPSYuaR35k03p2xmkYjfdrYkQ8,5618
19
+ hindsight_client_api/models/add_background_request.py,sha256=-DXL5XHi9j_QbgtRfYvzcnMGI0XzDBb1IlbYAVcI1XE,2898
20
+ hindsight_client_api/models/async_operation_submit_response.py,sha256=yFr1MFSz1Dwlc05GIJGVxwAueQcnmCA7Xvh19k_W77w,2581
21
+ hindsight_client_api/models/background_response.py,sha256=uNvDfvJT9L0DqkETouExJAI_2Jmw4n1IDS6k8R4kjo8,3502
22
+ hindsight_client_api/models/bank_list_item.py,sha256=o2_3Rf-3ekNWPp3jQyAVILn5aFf7Uqp_Dxza4thefsw,4113
23
+ hindsight_client_api/models/bank_list_response.py,sha256=LiACkek7iqhA5mmVvYQkMnf4J5bfSFwBJ_mkC0u_Nz4,2896
24
+ hindsight_client_api/models/bank_profile_response.py,sha256=Jso7L59h1eNUx88Jf-Hq8YnUx375UPUDbMqItqL-rgo,3460
25
+ hindsight_client_api/models/bank_stats_response.py,sha256=R_VMbSAvpYx4_AHwdT4vHv3xdBUULr5sgwiSKBU4kjY,4480
26
+ hindsight_client_api/models/budget.py,sha256=AwTSqd59PKqQEM1g3qM3E7fSH2lUFll9iFLjzRMhtDE,702
27
+ hindsight_client_api/models/cancel_operation_response.py,sha256=jxLGkFmZ8aWRMcHVmnnnl306u8R10mSS5Yo9n-vtNCM,2656
28
+ hindsight_client_api/models/chunk_data.py,sha256=3iU9LmeMrMr2cdnSoE38_ipx7YZxAHU46v72ShVbPKo,2828
29
+ hindsight_client_api/models/chunk_include_options.py,sha256=96r8h9pZbHGvK2OMC3q4xfoBqXRwCSypmcCDO0KCM7A,2634
30
+ hindsight_client_api/models/chunk_response.py,sha256=5E6XHhhEO7AF_OMNk6vJZFT47_IRex8bGHlFW-AEPLs,2888
31
+ hindsight_client_api/models/consolidation_response.py,sha256=xC5JEq9oRdC2fmH35ie5kMEIpTxhg0e-_32CpxyMpU4,2820
32
+ hindsight_client_api/models/create_bank_request.py,sha256=4Q7KeJAlmfwgLCsD67wymtDY_SMJlRzOKonW4cO2cpc,3973
33
+ hindsight_client_api/models/create_directive_request.py,sha256=U7i37vdpRFD6GX_qO6nCyVxoZFv6BbFY67ul37ebswM,3253
34
+ hindsight_client_api/models/create_mental_model_request.py,sha256=J4P-s3ILGcVrJ7BGE97neTEq9Wm3i7yockJhnNnipb8,3607
35
+ hindsight_client_api/models/create_mental_model_response.py,sha256=Fuzi8AGjrUgIoBbEkCo7-EpjM_pLScttN2CcZWTQOXw,2552
36
+ hindsight_client_api/models/delete_document_response.py,sha256=k_gHKh2qiUOyAS-iLzPPGVNFwTltvH2gbFceLU-JBrI,2788
37
+ hindsight_client_api/models/delete_response.py,sha256=8TjUUMXrEfbxxMHj5PsCaqEib2qpaA3JT45cbxToFj0,3126
38
+ hindsight_client_api/models/directive_list_response.py,sha256=xquE01nbCtbkgQHGYYS09i5PB7Ppv9Z0h0TNI8NKbng,2931
39
+ hindsight_client_api/models/directive_response.py,sha256=aGnkydkEeuOQ7dRjQDwdJCOO3G7oEZO-25KGITaUHtM,3701
40
+ hindsight_client_api/models/disposition_traits.py,sha256=I61B7L3BkGQlAxBONDILwE-hH_S3oY2IFrbeTzpj9Mg,3055
41
+ hindsight_client_api/models/document_response.py,sha256=iK_H6V9t02OPBOaEo-U6fczmLNfSNCpeTQDgcziohiM,3416
42
+ hindsight_client_api/models/entity_detail_response.py,sha256=51Pv6lQEVGjUZ2KimRP0xFCowwOgt0ShcNITeHLF0Ro,4312
43
+ hindsight_client_api/models/entity_include_options.py,sha256=j6o0SPWslW7y461xahbw4l1VXMIU1B5vxR3MX8cJ2FY,2635
44
+ hindsight_client_api/models/entity_input.py,sha256=e8d-WuZxv0G_b8BlwASi_Eymwd87-O4Ap2RkaMa3VSU,2760
45
+ hindsight_client_api/models/entity_list_item.py,sha256=ZtdnkJ-xz7djdls1RaYXl7BEF_q1YIcan61MrHH0x6g,3602
46
+ hindsight_client_api/models/entity_list_response.py,sha256=HVjiza5MDMU4RRjVacxnTGOt8Wcue8f41LZmA2-n2q0,3135
47
+ hindsight_client_api/models/entity_observation_response.py,sha256=Sbz_m0MssD-gYyV4sAeD56HGrnmlWcdO0bBs73K65YU,2804
48
+ hindsight_client_api/models/entity_state_response.py,sha256=VNxiaOcNy2vCXuNGJMD1WbTTqwUguizvCxJHkt7Lyuw,3239
49
+ hindsight_client_api/models/features_info.py,sha256=bmjuRXb70cP6s9uKD5ae_kzULM_0if_qVpO6vIxnElY,2831
50
+ hindsight_client_api/models/graph_data_response.py,sha256=sYmmyxd4lu0FMbN0Ocnj5ShfFWk1GQp2p8i9wZFLLG4,2790
51
+ hindsight_client_api/models/http_validation_error.py,sha256=KKvY67lajAI7hAys0IZHeeTsG2ArvpVIATqSMjbWGOY,2937
52
+ hindsight_client_api/models/include_options.py,sha256=FlB8QT_bqA141_tSv51QvZRbqKZdcaR2estkHg6eBGc,3645
53
+ hindsight_client_api/models/list_documents_response.py,sha256=8lXIfprjJHpWCgiKkw4-M8d2y4NOTcK76HoF1otMekI,2675
54
+ hindsight_client_api/models/list_memory_units_response.py,sha256=gEC-opRav_3cWdKvoO7Hure3dnVyFiFC0gtDP0TE7H8,2684
55
+ hindsight_client_api/models/list_tags_response.py,sha256=VG4PFyNxge1vzeRxq-DwnpgXQmJ9U-MVSpnjiclg-tM,3098
56
+ hindsight_client_api/models/memory_item.py,sha256=MFXBoBDbogNwaWpME5RzUw5PgZLZiA7o3jP0Kw0mJYE,4835
57
+ hindsight_client_api/models/mental_model_list_response.py,sha256=a3ORI4xlJeH6mv0STEIP_MpiknxBHv333Cdi6kKlizs,2949
58
+ hindsight_client_api/models/mental_model_response.py,sha256=QohMkvBohLNMcDaa5OOy1TWTdEC2JinHf82K0q9ciqk,4544
59
+ hindsight_client_api/models/mental_model_trigger.py,sha256=D7_YOIl5QJSviyxLDSOQWhSwuO2pFo0yuXFGkF9H718,2742
60
+ hindsight_client_api/models/operation_response.py,sha256=aC2oWnGti3Ee3ewGanteQ2SMXF7RX_FUZS-IQiLB4ec,3474
61
+ hindsight_client_api/models/operation_status_response.py,sha256=rzQKeNakdHV6zxtuYUoeSPqGb3ei9GXXFWRa8I7O_2s,4627
62
+ hindsight_client_api/models/operations_list_response.py,sha256=r5vmuR0rJUhDPBe-gVEpgCaft3EdZnOhEkxUqfLPWWk,3310
63
+ hindsight_client_api/models/recall_request.py,sha256=cGG7rhr5gVnnwagNMAosV9hGJ_vHKlZWHhTCIwbbnNQ,5064
64
+ hindsight_client_api/models/recall_response.py,sha256=t_qYAUMHXFBnXX7kCF8EeLfqeyF9V01wvQizCDvf4dY,5103
65
+ hindsight_client_api/models/recall_result.py,sha256=OULXvXYlxsJYuf8zSsTuV_qArXQFxw2Pw5494FvdGwQ,5689
66
+ hindsight_client_api/models/reflect_based_on.py,sha256=kNUytuJsS6_h55hlnXZ52vh7Yk4lCj1ZZLjhmXUVH9I,4517
67
+ hindsight_client_api/models/reflect_directive.py,sha256=nUuSnoKaGyX7FSnN61r7eQL6sh1KFASex_8AmvGHSoM,2682
68
+ hindsight_client_api/models/reflect_fact.py,sha256=sYW00LmDpY7VptK0E4I0gUWHkCRaCTeypuHSdciknw8,3973
69
+ hindsight_client_api/models/reflect_include_options.py,sha256=yFeoW1DHjvQ_R6Gjffw_wQSOEiVOG90aa_ysBAH9V_M,3273
70
+ hindsight_client_api/models/reflect_llm_call.py,sha256=OxPRqg9dnqfDhCEmFohLsvAxK1n1B_jZ7TycO28nqWs,2667
71
+ hindsight_client_api/models/reflect_mental_model.py,sha256=iedJ76ifwqtEK4KtTy9uE8TK10VQ5cy25MBM54QcrNA,2894
72
+ hindsight_client_api/models/reflect_request.py,sha256=yxAZ0r6fd_rdlISXUXjRz79nwcCEhfVZ9guAe7TfHZc,5018
73
+ hindsight_client_api/models/reflect_response.py,sha256=v0mInWs08NuD8uEz42qqyUwzGCzBToMCicIIaqSHjZg,4596
74
+ hindsight_client_api/models/reflect_tool_call.py,sha256=qVMx1iNl-TbQ0z7NMmVG2TPvd0uA40eTb8bg9T0xGwY,3321
75
+ hindsight_client_api/models/reflect_trace.py,sha256=xd2fRXoBj_h3HwcroSd1xnqqnZnuooZygsEsOM8dnhQ,3753
76
+ hindsight_client_api/models/retain_request.py,sha256=xlU_R2qMgbPL00EkRtyFLKIPelyulgleuaIrnJTJiIw,3548
77
+ hindsight_client_api/models/retain_response.py,sha256=RQd_6q1_it0Yfws2BpcuL41FKE1CMnk_65wHcBjtfKw,3721
78
+ hindsight_client_api/models/tag_item.py,sha256=uxTTRBUfSsb8ah3n7DARyStctQZvSfQXcmRdiaJcx_c,2568
79
+ hindsight_client_api/models/token_usage.py,sha256=r8tcfugayce78fZ65LBcTK8HzY8LjnlIbUTHKFKFGUg,3140
80
+ hindsight_client_api/models/tool_calls_include_options.py,sha256=1yYvN9YjsLC07LaV-OVL36LUaoRF8yxnNr3nmfy7zes,2671
81
+ hindsight_client_api/models/update_directive_request.py,sha256=XyxjVmrUDXWmLWexu9ZxSXcYnqKpKXhT5HOzKfgJOGM,3924
82
+ hindsight_client_api/models/update_disposition_request.py,sha256=6D3qceEJByBWcZrfSbNXrdlrDtnj0_QXh2zosc49-5E,2817
83
+ hindsight_client_api/models/update_mental_model_request.py,sha256=eFlMhbqHyFa2mNW4Ctic3MyDXqpfAHGro3Z_LqZsJBk,4362
84
+ hindsight_client_api/models/validation_error.py,sha256=XnK71WeEUbZyXPbzv1uKaNAFEYxfsiS7G0cvjTgCxiM,3029
85
+ hindsight_client_api/models/validation_error_loc_inner.py,sha256=q51Yi64xsxhsy3_AAD5DlcfI2-g_81hQoN6Olh3I8ag,4812
86
+ hindsight_client_api/models/version_response.py,sha256=rrTt82kPQnxqgSXOxSQiOSHiKmiW5S6EYjX4_mgmb64,2940
87
+ hindsight_client-0.4.0.dist-info/METADATA,sha256=XBQqEhQ-1USLAcDDaFAk5u-hu0BnuD7xw2LK-7P7kqc,647
88
+ hindsight_client-0.4.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
89
+ hindsight_client-0.4.0.dist-info/RECORD,,
@@ -18,9 +18,11 @@ __version__ = "0.0.7"
18
18
 
19
19
  # import apis into sdk package
20
20
  from hindsight_client_api.api.banks_api import BanksApi
21
+ from hindsight_client_api.api.directives_api import DirectivesApi
21
22
  from hindsight_client_api.api.documents_api import DocumentsApi
22
23
  from hindsight_client_api.api.entities_api import EntitiesApi
23
24
  from hindsight_client_api.api.memory_api import MemoryApi
25
+ from hindsight_client_api.api.mental_models_api import MentalModelsApi
24
26
  from hindsight_client_api.api.monitoring_api import MonitoringApi
25
27
  from hindsight_client_api.api.operations_api import OperationsApi
26
28
 
@@ -37,6 +39,7 @@ from hindsight_client_api.exceptions import ApiException
37
39
 
38
40
  # import models into sdk package
39
41
  from hindsight_client_api.models.add_background_request import AddBackgroundRequest
42
+ from hindsight_client_api.models.async_operation_submit_response import AsyncOperationSubmitResponse
40
43
  from hindsight_client_api.models.background_response import BackgroundResponse
41
44
  from hindsight_client_api.models.bank_list_item import BankListItem
42
45
  from hindsight_client_api.models.bank_list_response import BankListResponse
@@ -47,9 +50,15 @@ from hindsight_client_api.models.cancel_operation_response import CancelOperatio
47
50
  from hindsight_client_api.models.chunk_data import ChunkData
48
51
  from hindsight_client_api.models.chunk_include_options import ChunkIncludeOptions
49
52
  from hindsight_client_api.models.chunk_response import ChunkResponse
53
+ from hindsight_client_api.models.consolidation_response import ConsolidationResponse
50
54
  from hindsight_client_api.models.create_bank_request import CreateBankRequest
55
+ from hindsight_client_api.models.create_directive_request import CreateDirectiveRequest
56
+ from hindsight_client_api.models.create_mental_model_request import CreateMentalModelRequest
57
+ from hindsight_client_api.models.create_mental_model_response import CreateMentalModelResponse
51
58
  from hindsight_client_api.models.delete_document_response import DeleteDocumentResponse
52
59
  from hindsight_client_api.models.delete_response import DeleteResponse
60
+ from hindsight_client_api.models.directive_list_response import DirectiveListResponse
61
+ from hindsight_client_api.models.directive_response import DirectiveResponse
53
62
  from hindsight_client_api.models.disposition_traits import DispositionTraits
54
63
  from hindsight_client_api.models.document_response import DocumentResponse
55
64
  from hindsight_client_api.models.entity_detail_response import EntityDetailResponse
@@ -59,23 +68,41 @@ from hindsight_client_api.models.entity_list_item import EntityListItem
59
68
  from hindsight_client_api.models.entity_list_response import EntityListResponse
60
69
  from hindsight_client_api.models.entity_observation_response import EntityObservationResponse
61
70
  from hindsight_client_api.models.entity_state_response import EntityStateResponse
71
+ from hindsight_client_api.models.features_info import FeaturesInfo
62
72
  from hindsight_client_api.models.graph_data_response import GraphDataResponse
63
73
  from hindsight_client_api.models.http_validation_error import HTTPValidationError
64
74
  from hindsight_client_api.models.include_options import IncludeOptions
65
75
  from hindsight_client_api.models.list_documents_response import ListDocumentsResponse
66
76
  from hindsight_client_api.models.list_memory_units_response import ListMemoryUnitsResponse
77
+ from hindsight_client_api.models.list_tags_response import ListTagsResponse
67
78
  from hindsight_client_api.models.memory_item import MemoryItem
79
+ from hindsight_client_api.models.mental_model_list_response import MentalModelListResponse
80
+ from hindsight_client_api.models.mental_model_response import MentalModelResponse
81
+ from hindsight_client_api.models.mental_model_trigger import MentalModelTrigger
68
82
  from hindsight_client_api.models.operation_response import OperationResponse
83
+ from hindsight_client_api.models.operation_status_response import OperationStatusResponse
69
84
  from hindsight_client_api.models.operations_list_response import OperationsListResponse
70
85
  from hindsight_client_api.models.recall_request import RecallRequest
71
86
  from hindsight_client_api.models.recall_response import RecallResponse
72
87
  from hindsight_client_api.models.recall_result import RecallResult
88
+ from hindsight_client_api.models.reflect_based_on import ReflectBasedOn
89
+ from hindsight_client_api.models.reflect_directive import ReflectDirective
73
90
  from hindsight_client_api.models.reflect_fact import ReflectFact
74
91
  from hindsight_client_api.models.reflect_include_options import ReflectIncludeOptions
92
+ from hindsight_client_api.models.reflect_llm_call import ReflectLLMCall
93
+ from hindsight_client_api.models.reflect_mental_model import ReflectMentalModel
75
94
  from hindsight_client_api.models.reflect_request import ReflectRequest
76
95
  from hindsight_client_api.models.reflect_response import ReflectResponse
96
+ from hindsight_client_api.models.reflect_tool_call import ReflectToolCall
97
+ from hindsight_client_api.models.reflect_trace import ReflectTrace
77
98
  from hindsight_client_api.models.retain_request import RetainRequest
78
99
  from hindsight_client_api.models.retain_response import RetainResponse
100
+ from hindsight_client_api.models.tag_item import TagItem
101
+ from hindsight_client_api.models.token_usage import TokenUsage
102
+ from hindsight_client_api.models.tool_calls_include_options import ToolCallsIncludeOptions
103
+ from hindsight_client_api.models.update_directive_request import UpdateDirectiveRequest
79
104
  from hindsight_client_api.models.update_disposition_request import UpdateDispositionRequest
105
+ from hindsight_client_api.models.update_mental_model_request import UpdateMentalModelRequest
80
106
  from hindsight_client_api.models.validation_error import ValidationError
81
107
  from hindsight_client_api.models.validation_error_loc_inner import ValidationErrorLocInner
108
+ from hindsight_client_api.models.version_response import VersionResponse
@@ -2,9 +2,11 @@
2
2
 
3
3
  # import apis into api package
4
4
  from hindsight_client_api.api.banks_api import BanksApi
5
+ from hindsight_client_api.api.directives_api import DirectivesApi
5
6
  from hindsight_client_api.api.documents_api import DocumentsApi
6
7
  from hindsight_client_api.api.entities_api import EntitiesApi
7
8
  from hindsight_client_api.api.memory_api import MemoryApi
9
+ from hindsight_client_api.api.mental_models_api import MentalModelsApi
8
10
  from hindsight_client_api.api.monitoring_api import MonitoringApi
9
11
  from hindsight_client_api.api.operations_api import OperationsApi
10
12