hindsight-client 0.0.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hindsight_client/__init__.py +26 -0
- hindsight_client/hindsight_client.py +432 -0
- hindsight_client-0.0.13.dist-info/METADATA +56 -0
- hindsight_client-0.0.13.dist-info/RECORD +134 -0
- hindsight_client-0.0.13.dist-info/WHEEL +4 -0
- hindsight_client_api/__init__.py +126 -0
- hindsight_client_api/api/__init__.py +6 -0
- hindsight_client_api/api/default_api.py +5976 -0
- hindsight_client_api/api/monitoring_api.py +281 -0
- hindsight_client_api/api_client.py +807 -0
- hindsight_client_api/api_response.py +21 -0
- hindsight_client_api/configuration.py +572 -0
- hindsight_client_api/docs/AddBackgroundRequest.md +31 -0
- hindsight_client_api/docs/BackgroundResponse.md +31 -0
- hindsight_client_api/docs/BankListItem.md +35 -0
- hindsight_client_api/docs/BankListResponse.md +30 -0
- hindsight_client_api/docs/BankProfileResponse.md +33 -0
- hindsight_client_api/docs/Budget.md +15 -0
- hindsight_client_api/docs/ChunkData.md +33 -0
- hindsight_client_api/docs/ChunkIncludeOptions.md +30 -0
- hindsight_client_api/docs/ChunkResponse.md +35 -0
- hindsight_client_api/docs/CreateBankRequest.md +32 -0
- hindsight_client_api/docs/DefaultApi.md +1569 -0
- hindsight_client_api/docs/DeleteResponse.md +30 -0
- hindsight_client_api/docs/DocumentResponse.md +36 -0
- hindsight_client_api/docs/EntityDetailResponse.md +36 -0
- hindsight_client_api/docs/EntityIncludeOptions.md +30 -0
- hindsight_client_api/docs/EntityListItem.md +35 -0
- hindsight_client_api/docs/EntityListResponse.md +30 -0
- hindsight_client_api/docs/EntityObservationResponse.md +31 -0
- hindsight_client_api/docs/EntityStateResponse.md +32 -0
- hindsight_client_api/docs/GraphDataResponse.md +33 -0
- hindsight_client_api/docs/HTTPValidationError.md +29 -0
- hindsight_client_api/docs/IncludeOptions.md +31 -0
- hindsight_client_api/docs/ListDocumentsResponse.md +33 -0
- hindsight_client_api/docs/ListMemoryUnitsResponse.md +33 -0
- hindsight_client_api/docs/MemoryItem.md +34 -0
- hindsight_client_api/docs/MetadataFilter.md +32 -0
- hindsight_client_api/docs/MonitoringApi.md +72 -0
- hindsight_client_api/docs/PersonalityTraits.md +35 -0
- hindsight_client_api/docs/RecallRequest.md +37 -0
- hindsight_client_api/docs/RecallResponse.md +33 -0
- hindsight_client_api/docs/RecallResult.md +40 -0
- hindsight_client_api/docs/ReflectFact.md +35 -0
- hindsight_client_api/docs/ReflectIncludeOptions.md +30 -0
- hindsight_client_api/docs/ReflectRequest.md +34 -0
- hindsight_client_api/docs/ReflectResponse.md +31 -0
- hindsight_client_api/docs/RetainRequest.md +31 -0
- hindsight_client_api/docs/RetainResponse.md +33 -0
- hindsight_client_api/docs/UpdatePersonalityRequest.md +30 -0
- hindsight_client_api/docs/ValidationError.md +31 -0
- hindsight_client_api/docs/ValidationErrorLocInner.md +28 -0
- hindsight_client_api/exceptions.py +219 -0
- hindsight_client_api/models/__init__.py +54 -0
- hindsight_client_api/models/add_background_request.py +89 -0
- hindsight_client_api/models/background_response.py +98 -0
- hindsight_client_api/models/bank_list_item.py +111 -0
- hindsight_client_api/models/bank_list_response.py +95 -0
- hindsight_client_api/models/bank_profile_response.py +97 -0
- hindsight_client_api/models/budget.py +38 -0
- hindsight_client_api/models/chunk_data.py +93 -0
- hindsight_client_api/models/chunk_include_options.py +87 -0
- hindsight_client_api/models/chunk_response.py +97 -0
- hindsight_client_api/models/create_bank_request.py +110 -0
- hindsight_client_api/models/delete_response.py +87 -0
- hindsight_client_api/models/document_response.py +104 -0
- hindsight_client_api/models/entity_detail_response.py +122 -0
- hindsight_client_api/models/entity_include_options.py +87 -0
- hindsight_client_api/models/entity_list_item.py +112 -0
- hindsight_client_api/models/entity_list_response.py +95 -0
- hindsight_client_api/models/entity_observation_response.py +94 -0
- hindsight_client_api/models/entity_state_response.py +99 -0
- hindsight_client_api/models/graph_data_response.py +93 -0
- hindsight_client_api/models/http_validation_error.py +95 -0
- hindsight_client_api/models/include_options.py +107 -0
- hindsight_client_api/models/list_documents_response.py +93 -0
- hindsight_client_api/models/list_memory_units_response.py +93 -0
- hindsight_client_api/models/memory_item.py +116 -0
- hindsight_client_api/models/metadata_filter.py +96 -0
- hindsight_client_api/models/personality_traits.py +98 -0
- hindsight_client_api/models/recall_request.py +129 -0
- hindsight_client_api/models/recall_response.py +142 -0
- hindsight_client_api/models/recall_result.py +152 -0
- hindsight_client_api/models/reflect_fact.py +122 -0
- hindsight_client_api/models/reflect_include_options.py +87 -0
- hindsight_client_api/models/reflect_request.py +118 -0
- hindsight_client_api/models/reflect_response.py +97 -0
- hindsight_client_api/models/retain_request.py +97 -0
- hindsight_client_api/models/retain_response.py +93 -0
- hindsight_client_api/models/update_personality_request.py +91 -0
- hindsight_client_api/models/validation_error.py +99 -0
- hindsight_client_api/models/validation_error_loc_inner.py +138 -0
- hindsight_client_api/rest.py +213 -0
- hindsight_client_api/test/__init__.py +0 -0
- hindsight_client_api/test/test_add_background_request.py +53 -0
- hindsight_client_api/test/test_background_response.py +53 -0
- hindsight_client_api/test/test_bank_list_item.py +60 -0
- hindsight_client_api/test/test_bank_list_response.py +68 -0
- hindsight_client_api/test/test_bank_profile_response.py +58 -0
- hindsight_client_api/test/test_budget.py +33 -0
- hindsight_client_api/test/test_chunk_data.py +57 -0
- hindsight_client_api/test/test_chunk_include_options.py +51 -0
- hindsight_client_api/test/test_chunk_response.py +62 -0
- hindsight_client_api/test/test_create_bank_request.py +53 -0
- hindsight_client_api/test/test_default_api.py +178 -0
- hindsight_client_api/test/test_delete_response.py +52 -0
- hindsight_client_api/test/test_document_response.py +64 -0
- hindsight_client_api/test/test_entity_detail_response.py +71 -0
- hindsight_client_api/test/test_entity_include_options.py +51 -0
- hindsight_client_api/test/test_entity_list_item.py +61 -0
- hindsight_client_api/test/test_entity_list_response.py +56 -0
- hindsight_client_api/test/test_entity_observation_response.py +53 -0
- hindsight_client_api/test/test_entity_state_response.py +64 -0
- hindsight_client_api/test/test_graph_data_response.py +82 -0
- hindsight_client_api/test/test_http_validation_error.py +58 -0
- hindsight_client_api/test/test_include_options.py +54 -0
- hindsight_client_api/test/test_list_documents_response.py +66 -0
- hindsight_client_api/test/test_list_memory_units_response.py +66 -0
- hindsight_client_api/test/test_memory_item.py +58 -0
- hindsight_client_api/test/test_metadata_filter.py +54 -0
- hindsight_client_api/test/test_monitoring_api.py +38 -0
- hindsight_client_api/test/test_personality_traits.py +62 -0
- hindsight_client_api/test/test_recall_request.py +67 -0
- hindsight_client_api/test/test_recall_response.py +76 -0
- hindsight_client_api/test/test_recall_result.py +67 -0
- hindsight_client_api/test/test_reflect_fact.py +57 -0
- hindsight_client_api/test/test_reflect_include_options.py +51 -0
- hindsight_client_api/test/test_reflect_request.py +59 -0
- hindsight_client_api/test/test_reflect_response.py +55 -0
- hindsight_client_api/test/test_retain_request.py +57 -0
- hindsight_client_api/test/test_retain_response.py +58 -0
- hindsight_client_api/test/test_update_personality_request.py +52 -0
- hindsight_client_api/test/test_validation_error.py +60 -0
- hindsight_client_api/test/test_validation_error_loc_inner.py +50 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Hindsight HTTP API
|
|
7
|
+
|
|
8
|
+
HTTP API for Hindsight
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1.0.0
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "0.0.7"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"MonitoringApi",
|
|
22
|
+
"DefaultApi",
|
|
23
|
+
"ApiResponse",
|
|
24
|
+
"ApiClient",
|
|
25
|
+
"Configuration",
|
|
26
|
+
"OpenApiException",
|
|
27
|
+
"ApiTypeError",
|
|
28
|
+
"ApiValueError",
|
|
29
|
+
"ApiKeyError",
|
|
30
|
+
"ApiAttributeError",
|
|
31
|
+
"ApiException",
|
|
32
|
+
"AddBackgroundRequest",
|
|
33
|
+
"BackgroundResponse",
|
|
34
|
+
"BankListItem",
|
|
35
|
+
"BankListResponse",
|
|
36
|
+
"BankProfileResponse",
|
|
37
|
+
"Budget",
|
|
38
|
+
"ChunkData",
|
|
39
|
+
"ChunkIncludeOptions",
|
|
40
|
+
"ChunkResponse",
|
|
41
|
+
"CreateBankRequest",
|
|
42
|
+
"DeleteResponse",
|
|
43
|
+
"DocumentResponse",
|
|
44
|
+
"EntityDetailResponse",
|
|
45
|
+
"EntityIncludeOptions",
|
|
46
|
+
"EntityListItem",
|
|
47
|
+
"EntityListResponse",
|
|
48
|
+
"EntityObservationResponse",
|
|
49
|
+
"EntityStateResponse",
|
|
50
|
+
"GraphDataResponse",
|
|
51
|
+
"HTTPValidationError",
|
|
52
|
+
"IncludeOptions",
|
|
53
|
+
"ListDocumentsResponse",
|
|
54
|
+
"ListMemoryUnitsResponse",
|
|
55
|
+
"MemoryItem",
|
|
56
|
+
"MetadataFilter",
|
|
57
|
+
"PersonalityTraits",
|
|
58
|
+
"RecallRequest",
|
|
59
|
+
"RecallResponse",
|
|
60
|
+
"RecallResult",
|
|
61
|
+
"ReflectFact",
|
|
62
|
+
"ReflectIncludeOptions",
|
|
63
|
+
"ReflectRequest",
|
|
64
|
+
"ReflectResponse",
|
|
65
|
+
"RetainRequest",
|
|
66
|
+
"RetainResponse",
|
|
67
|
+
"UpdatePersonalityRequest",
|
|
68
|
+
"ValidationError",
|
|
69
|
+
"ValidationErrorLocInner",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
# import apis into sdk package
|
|
73
|
+
from hindsight_client_api.api.monitoring_api import MonitoringApi as MonitoringApi
|
|
74
|
+
from hindsight_client_api.api.default_api import DefaultApi as DefaultApi
|
|
75
|
+
|
|
76
|
+
# import ApiClient
|
|
77
|
+
from hindsight_client_api.api_response import ApiResponse as ApiResponse
|
|
78
|
+
from hindsight_client_api.api_client import ApiClient as ApiClient
|
|
79
|
+
from hindsight_client_api.configuration import Configuration as Configuration
|
|
80
|
+
from hindsight_client_api.exceptions import OpenApiException as OpenApiException
|
|
81
|
+
from hindsight_client_api.exceptions import ApiTypeError as ApiTypeError
|
|
82
|
+
from hindsight_client_api.exceptions import ApiValueError as ApiValueError
|
|
83
|
+
from hindsight_client_api.exceptions import ApiKeyError as ApiKeyError
|
|
84
|
+
from hindsight_client_api.exceptions import ApiAttributeError as ApiAttributeError
|
|
85
|
+
from hindsight_client_api.exceptions import ApiException as ApiException
|
|
86
|
+
|
|
87
|
+
# import models into sdk package
|
|
88
|
+
from hindsight_client_api.models.add_background_request import AddBackgroundRequest as AddBackgroundRequest
|
|
89
|
+
from hindsight_client_api.models.background_response import BackgroundResponse as BackgroundResponse
|
|
90
|
+
from hindsight_client_api.models.bank_list_item import BankListItem as BankListItem
|
|
91
|
+
from hindsight_client_api.models.bank_list_response import BankListResponse as BankListResponse
|
|
92
|
+
from hindsight_client_api.models.bank_profile_response import BankProfileResponse as BankProfileResponse
|
|
93
|
+
from hindsight_client_api.models.budget import Budget as Budget
|
|
94
|
+
from hindsight_client_api.models.chunk_data import ChunkData as ChunkData
|
|
95
|
+
from hindsight_client_api.models.chunk_include_options import ChunkIncludeOptions as ChunkIncludeOptions
|
|
96
|
+
from hindsight_client_api.models.chunk_response import ChunkResponse as ChunkResponse
|
|
97
|
+
from hindsight_client_api.models.create_bank_request import CreateBankRequest as CreateBankRequest
|
|
98
|
+
from hindsight_client_api.models.delete_response import DeleteResponse as DeleteResponse
|
|
99
|
+
from hindsight_client_api.models.document_response import DocumentResponse as DocumentResponse
|
|
100
|
+
from hindsight_client_api.models.entity_detail_response import EntityDetailResponse as EntityDetailResponse
|
|
101
|
+
from hindsight_client_api.models.entity_include_options import EntityIncludeOptions as EntityIncludeOptions
|
|
102
|
+
from hindsight_client_api.models.entity_list_item import EntityListItem as EntityListItem
|
|
103
|
+
from hindsight_client_api.models.entity_list_response import EntityListResponse as EntityListResponse
|
|
104
|
+
from hindsight_client_api.models.entity_observation_response import EntityObservationResponse as EntityObservationResponse
|
|
105
|
+
from hindsight_client_api.models.entity_state_response import EntityStateResponse as EntityStateResponse
|
|
106
|
+
from hindsight_client_api.models.graph_data_response import GraphDataResponse as GraphDataResponse
|
|
107
|
+
from hindsight_client_api.models.http_validation_error import HTTPValidationError as HTTPValidationError
|
|
108
|
+
from hindsight_client_api.models.include_options import IncludeOptions as IncludeOptions
|
|
109
|
+
from hindsight_client_api.models.list_documents_response import ListDocumentsResponse as ListDocumentsResponse
|
|
110
|
+
from hindsight_client_api.models.list_memory_units_response import ListMemoryUnitsResponse as ListMemoryUnitsResponse
|
|
111
|
+
from hindsight_client_api.models.memory_item import MemoryItem as MemoryItem
|
|
112
|
+
from hindsight_client_api.models.metadata_filter import MetadataFilter as MetadataFilter
|
|
113
|
+
from hindsight_client_api.models.personality_traits import PersonalityTraits as PersonalityTraits
|
|
114
|
+
from hindsight_client_api.models.recall_request import RecallRequest as RecallRequest
|
|
115
|
+
from hindsight_client_api.models.recall_response import RecallResponse as RecallResponse
|
|
116
|
+
from hindsight_client_api.models.recall_result import RecallResult as RecallResult
|
|
117
|
+
from hindsight_client_api.models.reflect_fact import ReflectFact as ReflectFact
|
|
118
|
+
from hindsight_client_api.models.reflect_include_options import ReflectIncludeOptions as ReflectIncludeOptions
|
|
119
|
+
from hindsight_client_api.models.reflect_request import ReflectRequest as ReflectRequest
|
|
120
|
+
from hindsight_client_api.models.reflect_response import ReflectResponse as ReflectResponse
|
|
121
|
+
from hindsight_client_api.models.retain_request import RetainRequest as RetainRequest
|
|
122
|
+
from hindsight_client_api.models.retain_response import RetainResponse as RetainResponse
|
|
123
|
+
from hindsight_client_api.models.update_personality_request import UpdatePersonalityRequest as UpdatePersonalityRequest
|
|
124
|
+
from hindsight_client_api.models.validation_error import ValidationError as ValidationError
|
|
125
|
+
from hindsight_client_api.models.validation_error_loc_inner import ValidationErrorLocInner as ValidationErrorLocInner
|
|
126
|
+
|