mixpeek 0.21.7__py3-none-any.whl → 0.22.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.
- mixpeek/_hooks/types.py +7 -0
- mixpeek/_version.py +3 -3
- mixpeek/basesdk.py +12 -20
- mixpeek/bucketobjects.py +19 -37
- mixpeek/buckets.py +19 -31
- mixpeek/clusters.py +2 -0
- mixpeek/collectioncache.py +6 -0
- mixpeek/collections.py +13 -19
- mixpeek/features.py +4 -0
- mixpeek/health.py +2 -0
- mixpeek/httpclient.py +6 -16
- mixpeek/models/__init__.py +752 -583
- mixpeek/models/blobmodel.py +3 -11
- mixpeek/models/bucketcreaterequest.py +3 -11
- mixpeek/models/bucketresponse.py +3 -11
- mixpeek/models/bucketschemafield_input.py +6 -22
- mixpeek/models/bucketschemafield_output.py +6 -22
- mixpeek/models/bucketschemafieldbase.py +81 -0
- mixpeek/models/bucketschemafieldtype.py +1 -0
- mixpeek/models/bucketupdaterequest.py +3 -10
- mixpeek/models/collectionmodel.py +3 -11
- mixpeek/models/createblobrequest.py +3 -11
- mixpeek/models/createcollectionrequest.py +3 -11
- mixpeek/models/createnamespacerequest.py +9 -9
- mixpeek/models/createobjectrequest.py +3 -11
- mixpeek/models/createretrieverrequest.py +8 -16
- mixpeek/models/errordetail.py +3 -10
- mixpeek/models/featureextractorconfig.py +3 -11
- mixpeek/models/featureextractordefinition.py +26 -46
- mixpeek/models/interactionresponse.py +3 -11
- mixpeek/models/internal/__init__.py +35 -1
- mixpeek/models/logicaloperator_input.py +30 -36
- mixpeek/models/logicaloperator_output.py +39 -45
- mixpeek/models/logicaloperatorbase_input.py +74 -0
- mixpeek/models/logicaloperatorbase_output.py +74 -0
- mixpeek/models/namespaceresponse.py +17 -6
- mixpeek/models/namespacestatus.py +10 -0
- mixpeek/models/objectresponse.py +3 -11
- mixpeek/models/organizationmodel.py +3 -11
- mixpeek/models/retrieverbinding.py +3 -10
- mixpeek/models/retrievermodel.py +11 -16
- mixpeek/models/retrieverqueryrequest.py +3 -11
- mixpeek/models/retrieverschema_input.py +37 -0
- mixpeek/models/retrieverschema_output.py +37 -0
- mixpeek/models/retrieverschemafield_input.py +91 -0
- mixpeek/models/retrieverschemafield_output.py +91 -0
- mixpeek/models/searchinteraction.py +3 -11
- mixpeek/models/stageconfig_input.py +8 -16
- mixpeek/models/stageconfig_output.py +8 -16
- mixpeek/models/stagedefinition.py +28 -17
- mixpeek/models/stageresponse.py +3 -11
- mixpeek/models/updateobjectrequest.py +3 -11
- mixpeek/models/usermodel_input.py +3 -11
- mixpeek/models/usermodel_output.py +3 -11
- mixpeek/namespaces.py +28 -22
- mixpeek/organizationnotifications.py +2 -0
- mixpeek/organizations.py +13 -13
- mixpeek/organizationsusage.py +2 -0
- mixpeek/research.py +2 -0
- mixpeek/retrieverinteractions.py +13 -19
- mixpeek/retrievers.py +21 -39
- mixpeek/retrieverstages.py +2 -0
- mixpeek/sdk.py +94 -65
- mixpeek/sdkconfiguration.py +0 -7
- mixpeek/tasks.py +6 -0
- mixpeek/taxonomies.py +2 -0
- mixpeek/users.py +6 -0
- mixpeek/utils/__init__.py +131 -45
- mixpeek/utils/datetimes.py +23 -0
- mixpeek/utils/serializers.py +32 -3
- {mixpeek-0.21.7.dist-info → mixpeek-0.22.0.dist-info}/METADATA +3 -15
- {mixpeek-0.21.7.dist-info → mixpeek-0.22.0.dist-info}/RECORD +73 -75
- {mixpeek-0.21.7.dist-info → mixpeek-0.22.0.dist-info}/WHEEL +1 -1
- mixpeek/collectiondocuments.py +0 -1564
- mixpeek/models/batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py +0 -75
- mixpeek/models/batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py +0 -84
- mixpeek/models/delete_document_v1_collections_collection_identifier_documents_document_id_deleteop.py +0 -70
- mixpeek/models/documentlistresponse.py +0 -56
- mixpeek/models/documentresponse.py +0 -87
- mixpeek/models/documentupdate.py +0 -60
- mixpeek/models/genericsuccessresponse.py +0 -17
- mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py +0 -70
- mixpeek/models/list_documents_v1_collections_collection_identifier_documents_getop.py +0 -114
- mixpeek/models/update_document_v1_collections_collection_identifier_documents_document_id_putop.py +0 -83
mixpeek/utils/__init__.py
CHANGED
@@ -1,51 +1,56 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
|
-
from
|
4
|
-
from
|
5
|
-
from .headers import get_headers, get_response_headers
|
6
|
-
from .metadata import (
|
7
|
-
FieldMetadata,
|
8
|
-
find_metadata,
|
9
|
-
FormMetadata,
|
10
|
-
HeaderMetadata,
|
11
|
-
MultipartFormMetadata,
|
12
|
-
PathParamMetadata,
|
13
|
-
QueryParamMetadata,
|
14
|
-
RequestMetadata,
|
15
|
-
SecurityMetadata,
|
16
|
-
)
|
17
|
-
from .queryparams import get_query_params
|
18
|
-
from .retries import BackoffStrategy, Retries, retry, retry_async, RetryConfig
|
19
|
-
from .requestbodies import serialize_request_body, SerializedRequestBody
|
20
|
-
from .security import get_security, get_security_from_env
|
3
|
+
from typing import TYPE_CHECKING
|
4
|
+
from importlib import import_module
|
21
5
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
from .
|
41
|
-
from .
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
6
|
+
if TYPE_CHECKING:
|
7
|
+
from .annotations import get_discriminator
|
8
|
+
from .datetimes import parse_datetime
|
9
|
+
from .enums import OpenEnumMeta
|
10
|
+
from .headers import get_headers, get_response_headers
|
11
|
+
from .metadata import (
|
12
|
+
FieldMetadata,
|
13
|
+
find_metadata,
|
14
|
+
FormMetadata,
|
15
|
+
HeaderMetadata,
|
16
|
+
MultipartFormMetadata,
|
17
|
+
PathParamMetadata,
|
18
|
+
QueryParamMetadata,
|
19
|
+
RequestMetadata,
|
20
|
+
SecurityMetadata,
|
21
|
+
)
|
22
|
+
from .queryparams import get_query_params
|
23
|
+
from .retries import BackoffStrategy, Retries, retry, retry_async, RetryConfig
|
24
|
+
from .requestbodies import serialize_request_body, SerializedRequestBody
|
25
|
+
from .security import get_security, get_security_from_env
|
26
|
+
|
27
|
+
from .serializers import (
|
28
|
+
get_pydantic_model,
|
29
|
+
marshal_json,
|
30
|
+
unmarshal,
|
31
|
+
unmarshal_json,
|
32
|
+
serialize_decimal,
|
33
|
+
serialize_float,
|
34
|
+
serialize_int,
|
35
|
+
stream_to_text,
|
36
|
+
stream_to_text_async,
|
37
|
+
stream_to_bytes,
|
38
|
+
stream_to_bytes_async,
|
39
|
+
validate_const,
|
40
|
+
validate_decimal,
|
41
|
+
validate_float,
|
42
|
+
validate_int,
|
43
|
+
validate_open_enum,
|
44
|
+
)
|
45
|
+
from .url import generate_url, template_url, remove_suffix
|
46
|
+
from .values import (
|
47
|
+
get_global_from_env,
|
48
|
+
match_content_type,
|
49
|
+
match_status_codes,
|
50
|
+
match_response,
|
51
|
+
cast_partial,
|
52
|
+
)
|
53
|
+
from .logger import Logger, get_body_content, get_default_logger
|
49
54
|
|
50
55
|
__all__ = [
|
51
56
|
"BackoffStrategy",
|
@@ -56,6 +61,7 @@ __all__ = [
|
|
56
61
|
"get_body_content",
|
57
62
|
"get_default_logger",
|
58
63
|
"get_discriminator",
|
64
|
+
"parse_datetime",
|
59
65
|
"get_global_from_env",
|
60
66
|
"get_headers",
|
61
67
|
"get_pydantic_model",
|
@@ -99,3 +105,83 @@ __all__ = [
|
|
99
105
|
"validate_open_enum",
|
100
106
|
"cast_partial",
|
101
107
|
]
|
108
|
+
|
109
|
+
_dynamic_imports: dict[str, str] = {
|
110
|
+
"BackoffStrategy": ".retries",
|
111
|
+
"FieldMetadata": ".metadata",
|
112
|
+
"find_metadata": ".metadata",
|
113
|
+
"FormMetadata": ".metadata",
|
114
|
+
"generate_url": ".url",
|
115
|
+
"get_body_content": ".logger",
|
116
|
+
"get_default_logger": ".logger",
|
117
|
+
"get_discriminator": ".annotations",
|
118
|
+
"parse_datetime": ".datetimes",
|
119
|
+
"get_global_from_env": ".values",
|
120
|
+
"get_headers": ".headers",
|
121
|
+
"get_pydantic_model": ".serializers",
|
122
|
+
"get_query_params": ".queryparams",
|
123
|
+
"get_response_headers": ".headers",
|
124
|
+
"get_security": ".security",
|
125
|
+
"get_security_from_env": ".security",
|
126
|
+
"HeaderMetadata": ".metadata",
|
127
|
+
"Logger": ".logger",
|
128
|
+
"marshal_json": ".serializers",
|
129
|
+
"match_content_type": ".values",
|
130
|
+
"match_status_codes": ".values",
|
131
|
+
"match_response": ".values",
|
132
|
+
"MultipartFormMetadata": ".metadata",
|
133
|
+
"OpenEnumMeta": ".enums",
|
134
|
+
"PathParamMetadata": ".metadata",
|
135
|
+
"QueryParamMetadata": ".metadata",
|
136
|
+
"remove_suffix": ".url",
|
137
|
+
"Retries": ".retries",
|
138
|
+
"retry": ".retries",
|
139
|
+
"retry_async": ".retries",
|
140
|
+
"RetryConfig": ".retries",
|
141
|
+
"RequestMetadata": ".metadata",
|
142
|
+
"SecurityMetadata": ".metadata",
|
143
|
+
"serialize_decimal": ".serializers",
|
144
|
+
"serialize_float": ".serializers",
|
145
|
+
"serialize_int": ".serializers",
|
146
|
+
"serialize_request_body": ".requestbodies",
|
147
|
+
"SerializedRequestBody": ".requestbodies",
|
148
|
+
"stream_to_text": ".serializers",
|
149
|
+
"stream_to_text_async": ".serializers",
|
150
|
+
"stream_to_bytes": ".serializers",
|
151
|
+
"stream_to_bytes_async": ".serializers",
|
152
|
+
"template_url": ".url",
|
153
|
+
"unmarshal": ".serializers",
|
154
|
+
"unmarshal_json": ".serializers",
|
155
|
+
"validate_decimal": ".serializers",
|
156
|
+
"validate_const": ".serializers",
|
157
|
+
"validate_float": ".serializers",
|
158
|
+
"validate_int": ".serializers",
|
159
|
+
"validate_open_enum": ".serializers",
|
160
|
+
"cast_partial": ".values",
|
161
|
+
}
|
162
|
+
|
163
|
+
|
164
|
+
def __getattr__(attr_name: str) -> object:
|
165
|
+
module_name = _dynamic_imports.get(attr_name)
|
166
|
+
if module_name is None:
|
167
|
+
raise AttributeError(
|
168
|
+
f"no {attr_name} found in _dynamic_imports, module name -> {__name__} "
|
169
|
+
)
|
170
|
+
|
171
|
+
try:
|
172
|
+
module = import_module(module_name, __package__)
|
173
|
+
result = getattr(module, attr_name)
|
174
|
+
return result
|
175
|
+
except ImportError as e:
|
176
|
+
raise ImportError(
|
177
|
+
f"Failed to import {attr_name} from {module_name}: {e}"
|
178
|
+
) from e
|
179
|
+
except AttributeError as e:
|
180
|
+
raise AttributeError(
|
181
|
+
f"Failed to get {attr_name} from {module_name}: {e}"
|
182
|
+
) from e
|
183
|
+
|
184
|
+
|
185
|
+
def __dir__():
|
186
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
187
|
+
return sorted(lazy_attrs)
|
@@ -0,0 +1,23 @@
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
|
+
|
3
|
+
from datetime import datetime
|
4
|
+
import sys
|
5
|
+
|
6
|
+
|
7
|
+
def parse_datetime(datetime_string: str) -> datetime:
|
8
|
+
"""
|
9
|
+
Convert a RFC 3339 / ISO 8601 formatted string into a datetime object.
|
10
|
+
Python versions 3.11 and later support parsing RFC 3339 directly with
|
11
|
+
datetime.fromisoformat(), but for earlier versions, this function
|
12
|
+
encapsulates the necessary extra logic.
|
13
|
+
"""
|
14
|
+
# Python 3.11 and later can parse RFC 3339 directly
|
15
|
+
if sys.version_info >= (3, 11):
|
16
|
+
return datetime.fromisoformat(datetime_string)
|
17
|
+
|
18
|
+
# For Python 3.10 and earlier, a common ValueError is trailing 'Z' suffix,
|
19
|
+
# so fix that upfront.
|
20
|
+
if datetime_string.endswith("Z"):
|
21
|
+
datetime_string = datetime_string[:-1] + "+00:00"
|
22
|
+
|
23
|
+
return datetime.fromisoformat(datetime_string)
|
mixpeek/utils/serializers.py
CHANGED
@@ -1,13 +1,16 @@
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
2
2
|
|
3
3
|
from decimal import Decimal
|
4
|
+
import functools
|
4
5
|
import json
|
5
|
-
|
6
|
-
import
|
6
|
+
import typing
|
7
|
+
from typing import Any, Dict, List, Tuple, Union, get_args
|
8
|
+
import typing_extensions
|
7
9
|
from typing_extensions import get_origin
|
10
|
+
|
11
|
+
import httpx
|
8
12
|
from pydantic import ConfigDict, create_model
|
9
13
|
from pydantic_core import from_json
|
10
|
-
from typing_inspection.typing_objects import is_union
|
11
14
|
|
12
15
|
from ..types.basemodel import BaseModel, Nullable, OptionalNullable, Unset
|
13
16
|
|
@@ -185,6 +188,13 @@ def is_nullable(field):
|
|
185
188
|
return False
|
186
189
|
|
187
190
|
|
191
|
+
def is_union(obj: object) -> bool:
|
192
|
+
"""
|
193
|
+
Returns True if the given object is a typing.Union or typing_extensions.Union.
|
194
|
+
"""
|
195
|
+
return any(obj is typing_obj for typing_obj in _get_typing_objects_by_name_of("Union"))
|
196
|
+
|
197
|
+
|
188
198
|
def stream_to_text(stream: httpx.Response) -> str:
|
189
199
|
return "".join(stream.iter_text())
|
190
200
|
|
@@ -217,3 +227,22 @@ def _contains_pydantic_model(data: Any) -> bool:
|
|
217
227
|
return any(_contains_pydantic_model(value) for value in data.values())
|
218
228
|
|
219
229
|
return False
|
230
|
+
|
231
|
+
|
232
|
+
@functools.cache
|
233
|
+
def _get_typing_objects_by_name_of(name: str) -> Tuple[Any, ...]:
|
234
|
+
"""
|
235
|
+
Get typing objects by name from typing and typing_extensions.
|
236
|
+
Reference: https://typing-extensions.readthedocs.io/en/latest/#runtime-use-of-types
|
237
|
+
"""
|
238
|
+
result = tuple(
|
239
|
+
getattr(module, name)
|
240
|
+
for module in (typing, typing_extensions)
|
241
|
+
if hasattr(module, name)
|
242
|
+
)
|
243
|
+
if not result:
|
244
|
+
raise ValueError(
|
245
|
+
f"Neither typing nor typing_extensions has an object called {name!r}"
|
246
|
+
)
|
247
|
+
return result
|
248
|
+
|
@@ -1,20 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.22.0
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
5
5
|
Author: Speakeasy
|
6
|
-
Requires-Python: >=3.9
|
6
|
+
Requires-Python: >=3.9.2
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
8
|
-
Classifier: Programming Language :: Python :: 3.9
|
9
8
|
Classifier: Programming Language :: Python :: 3.10
|
10
9
|
Classifier: Programming Language :: Python :: 3.11
|
11
10
|
Classifier: Programming Language :: Python :: 3.12
|
12
11
|
Classifier: Programming Language :: Python :: 3.13
|
13
|
-
Requires-Dist:
|
12
|
+
Requires-Dist: httpcore (>=1.0.9)
|
14
13
|
Requires-Dist: httpx (>=0.28.1)
|
15
14
|
Requires-Dist: pydantic (>=2.11.2)
|
16
|
-
Requires-Dist: python-dateutil (>=2.8.2)
|
17
|
-
Requires-Dist: typing-inspection (>=0.4.0)
|
18
15
|
Project-URL: Repository, https://github.com/mixpeek/python-sdk.git
|
19
16
|
Description-Content-Type: text/markdown
|
20
17
|
|
@@ -223,15 +220,6 @@ with Mixpeek(
|
|
223
220
|
* [get_stats](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#get_stats) - Get Cache Stats
|
224
221
|
* [cleanup](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectioncache/README.md#cleanup) - Cleanup Cache
|
225
222
|
|
226
|
-
### [collection_documents](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md)
|
227
|
-
|
228
|
-
* [get](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#get) - Get Document
|
229
|
-
* [update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#update) - Update Document
|
230
|
-
* [delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#delete) - Delete Document
|
231
|
-
* [list](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#list) - List Documents
|
232
|
-
* [batch_update](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_update) - Batch Update Documents
|
233
|
-
* [batch_delete](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collectiondocuments/README.md#batch_delete) - Batch Delete Documents
|
234
|
-
|
235
223
|
### [collections](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md)
|
236
224
|
|
237
225
|
* [create](https://github.com/mixpeek/python-sdk/blob/master/docs/sdks/collections/README.md#create) - Create Collection
|
@@ -2,19 +2,18 @@ mixpeek/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
|
|
2
2
|
mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
|
3
3
|
mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
4
4
|
mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
|
5
|
-
mixpeek/_hooks/types.py,sha256=
|
6
|
-
mixpeek/_version.py,sha256=
|
7
|
-
mixpeek/basesdk.py,sha256=
|
8
|
-
mixpeek/bucketobjects.py,sha256=
|
9
|
-
mixpeek/buckets.py,sha256=
|
10
|
-
mixpeek/clusters.py,sha256=
|
11
|
-
mixpeek/collectioncache.py,sha256=
|
12
|
-
mixpeek/
|
13
|
-
mixpeek/
|
14
|
-
mixpeek/
|
15
|
-
mixpeek/
|
16
|
-
mixpeek/
|
17
|
-
mixpeek/models/__init__.py,sha256=zXu_Ia3b29bGNXNksO8O0asLE4RMwGYSNI2n_sZ6MCg,34880
|
5
|
+
mixpeek/_hooks/types.py,sha256=mBiMbk_yAzEX3XLY72RdYzNmtymCLNTfHxHBWZY3uSU,3043
|
6
|
+
mixpeek/_version.py,sha256=uJXudll0ROkdodqnuOk0gTinwISntiJzPNpWnN1R5mc,456
|
7
|
+
mixpeek/basesdk.py,sha256=VpBkrz-b9IrdbsbO3klrMtaMBSDqeD5HAfnZ49KjJI0,11842
|
8
|
+
mixpeek/bucketobjects.py,sha256=Kpii_LYxMjyGtbs_s7w3B9O1W5NW5IovMtMfE1BjV-Y,59129
|
9
|
+
mixpeek/buckets.py,sha256=B1GJMYObnIWQQo-ScPuRLtbTwGLf2rF1cfu34hI6YXY,53913
|
10
|
+
mixpeek/clusters.py,sha256=K6EGoThn86WveZOcOLC-D7A8e4FjkVXfChtIPPfiiwA,13064
|
11
|
+
mixpeek/collectioncache.py,sha256=qqPd5G0-ebEolfHBC1_onv-LkzL6QkfttYpOEG7KvG0,33622
|
12
|
+
mixpeek/collections.py,sha256=Lok1QRqZ3X0BFXznqopubMZrDUD56ZROm8dStlmHrmA,25659
|
13
|
+
mixpeek/features.py,sha256=64Aw2FdejX6ZFMRPOFCfJLJcLFvbpWr4jCrax-eMBgA,18463
|
14
|
+
mixpeek/health.py,sha256=EbQbMyTj_5mucq_GNjrU5Cgv5Ki_GQ0c7335bvafdW0,7070
|
15
|
+
mixpeek/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
16
|
+
mixpeek/models/__init__.py,sha256=vcBZqCs3URVVl8UE-oM_Bn63N8UBkkkPJfC4esh3aXA,52564
|
18
17
|
mixpeek/models/aggregationtype.py,sha256=n2cLLTXTEaFxkwujhy2kYSFXjSsrHMajCB0NQF2Z4Vk,292
|
19
18
|
mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
20
19
|
mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
|
@@ -22,19 +21,18 @@ mixpeek/models/apikeyupdate.py,sha256=GKzcfnzV1uY8m6utqnyheys3gcxRde0NHUfi4pncWU
|
|
22
21
|
mixpeek/models/attributebasedconfig.py,sha256=vL-qllYDw6xHy4s8AuHIHeC7_9AYy9L7haAZ6VLOJ20,760
|
23
22
|
mixpeek/models/automaticnaming.py,sha256=6R2dOCCQgWxxOE3YXS6zv8hsD1Oy7ewCGPgq3Enll_I,936
|
24
23
|
mixpeek/models/basicfeatureextractor.py,sha256=fFdd5rFtDSMMuIpSdRcDEgLKLMX7xoAdzo65_RT30hs,996
|
25
|
-
mixpeek/models/batch_delete_documents_v1_collections_collection_identifier_documents_batch_deleteop.py,sha256=JmYqM_CktjzVIrMmYGZUdiY9kDib2H2P8Ic5nD8yRxo,2663
|
26
|
-
mixpeek/models/batch_update_documents_v1_collections_collection_identifier_documents_batch_putop.py,sha256=HdFhXiF_eO87ZEsmRo9GHhLBFZJflaXpqra6jvcxvcU,2963
|
27
24
|
mixpeek/models/blobdetails.py,sha256=3k6A1BUmRBm9AqviDgLy0fZGdJsMI0fmtAsYSRyuYhI,2142
|
28
|
-
mixpeek/models/blobmodel.py,sha256=
|
25
|
+
mixpeek/models/blobmodel.py,sha256=3cUl44_TQO5tvcoc8hhYbGA-YVqTtd5bbk2CWCchUv0,3554
|
29
26
|
mixpeek/models/boolindexparams.py,sha256=bg7Hy6y9acpu7AxMpHTsYjEphDd0HnrqFPSgIDpgdZc,454
|
30
|
-
mixpeek/models/bucketcreaterequest.py,sha256
|
31
|
-
mixpeek/models/bucketresponse.py,sha256=
|
27
|
+
mixpeek/models/bucketcreaterequest.py,sha256=wsgf7kddub5O4Pult6W5eyy5Sju7mDhUuEbsiAOX6hU,2187
|
28
|
+
mixpeek/models/bucketresponse.py,sha256=74UCqsosisQSyVpHQyf_d9Qk4Foyw-2iZEeMT4v8TpM,2650
|
32
29
|
mixpeek/models/bucketschema_input.py,sha256=LgB5vuoo0sZJRC4IozHSgpbAr4tluj9EtKO2qCR6fwQ,1105
|
33
30
|
mixpeek/models/bucketschema_output.py,sha256=1uw_VETT_L_5SwyLouFXB6C3vt29tCnSR9_hwGL1PDM,1112
|
34
|
-
mixpeek/models/bucketschemafield_input.py,sha256=
|
35
|
-
mixpeek/models/bucketschemafield_output.py,sha256=
|
36
|
-
mixpeek/models/
|
37
|
-
mixpeek/models/
|
31
|
+
mixpeek/models/bucketschemafield_input.py,sha256=TJocDtJfx0C9MEJJRs9ve_9wrRSTKlPoj5L3_MdAyxA,2658
|
32
|
+
mixpeek/models/bucketschemafield_output.py,sha256=Ye6pGaIaFKba9o4vQMZtYy2KA3qPCaJCw4bu76Z-xgU,2660
|
33
|
+
mixpeek/models/bucketschemafieldbase.py,sha256=ZlXcCeHKSpNUh4EeKu_6e75nzrSI5HLxcRvkoXCsXI0,2603
|
34
|
+
mixpeek/models/bucketschemafieldtype.py,sha256=OUL9DbORwBgZDZbyPHUaQwHi1uLf_q-SEk1DBnzaSvQ,727
|
35
|
+
mixpeek/models/bucketupdaterequest.py,sha256=b1AjTxAwAANQf2k6wQfqH3tDp9CkPriJbyYMS0nBqjg,2041
|
38
36
|
mixpeek/models/cachestats.py,sha256=1wd94FUtdSELYYZr296pjlSnMvdHa4eCbhqnvpAKO7k,1084
|
39
37
|
mixpeek/models/cleanup_cache_v1_collections_cache_cleanup_postop.py,sha256=ZSYt8son_r7DDw89QLZ_JeqHkNIKyLiri0zbVgK7BEw,2854
|
40
38
|
mixpeek/models/clusteringmethod.py,sha256=DZHTYlDBY7H1PObuVWgQOgO3eUDLXQFVrt_K1hDpbFk,213
|
@@ -42,7 +40,7 @@ mixpeek/models/clustertype.py,sha256=qeGwi1chYyaV4HsZuhBzh3Wj92ABP2VIfR2WQuoExDQ
|
|
42
40
|
mixpeek/models/collectioncacheconfig_input.py,sha256=qzqu7y-n-f6K6xvIZaKNBYMCOujFrM_ZKoDym4qaRgw,3334
|
43
41
|
mixpeek/models/collectioncacheconfig_output.py,sha256=1-IUFZRKnzJ6hJdQgie2kej-31j4VHoNW3MPSyqs8Q0,3336
|
44
42
|
mixpeek/models/collectionconfig.py,sha256=13X91c9BKA_iiXyQ73ILak1eYoIQuVFvCnXnBIGA1HQ,1105
|
45
|
-
mixpeek/models/collectionmodel.py,sha256=
|
43
|
+
mixpeek/models/collectionmodel.py,sha256=t_pNutvad_JNzVepX1L878o7aDOXp86hRVKYVtHe9Yg,5065
|
46
44
|
mixpeek/models/create_api_key_v1_organizations_users_user_email_api_keys_postop.py,sha256=FpJUoFZ0nn3FEvgiVoF-fVdp1K8NJKGkkKX4rJ2cWjw,794
|
47
45
|
mixpeek/models/create_bucket_v1_buckets_create_postop.py,sha256=DdbCt94i7EA6utYKFAYrDdBR4vfdpC8AkndvsWxGYpM,2348
|
48
46
|
mixpeek/models/create_cluster_v1_clusters_postop.py,sha256=Zo99Nw9wqiOIGSMr5aZWpIr1zEWMnUf-X4s4fk-2YE0,2347
|
@@ -51,44 +49,38 @@ mixpeek/models/create_interaction_v1_retrievers_interactions_postop.py,sha256=M3
|
|
51
49
|
mixpeek/models/create_object_v1_buckets_bucket_identifier_objects_create_postop.py,sha256=1IvrXTiWfabCzdY4haMyii-1ZEohPIBpg7FR7T7qcWA,2656
|
52
50
|
mixpeek/models/create_retriever_v1_retrievers_retrievers_postop.py,sha256=72qTF29FO2mqTiO9eAPSEAQJI2nT_Ft2cJY_mtpItaI,2402
|
53
51
|
mixpeek/models/create_taxonomy_v1_taxonomies_postop.py,sha256=MQQ58yb-1Ux9pJr_LVk2DMhZkvLHj7KZ8eaqGbA1E1A,2360
|
54
|
-
mixpeek/models/createblobrequest.py,sha256=
|
52
|
+
mixpeek/models/createblobrequest.py,sha256=cUqL7jdGaHToRiftVmpuuSdAi8aNhnaeZoq7ym_JDvs,2519
|
55
53
|
mixpeek/models/createclusterrequest.py,sha256=MftnsxpSJciI22iqLpBZKqBrr8dv3eVcowLIvdHBBQU,2604
|
56
|
-
mixpeek/models/createcollectionrequest.py,sha256=
|
57
|
-
mixpeek/models/createnamespacerequest.py,sha256=
|
58
|
-
mixpeek/models/createobjectrequest.py,sha256=
|
59
|
-
mixpeek/models/createretrieverrequest.py,sha256=
|
54
|
+
mixpeek/models/createcollectionrequest.py,sha256=uKpNwumBZ7p-BCketDLDNXdEqQnKtbm3ZstonMTso4Q,4491
|
55
|
+
mixpeek/models/createnamespacerequest.py,sha256=SWBuCSHfVIiaeuDo4tcsbtlBEKdeat1RadmQA_v7kBo,2687
|
56
|
+
mixpeek/models/createobjectrequest.py,sha256=nAVkwIilmLFdEjmLoAp8gasm7RxSQyiO_e7i9TAv4bg,2785
|
57
|
+
mixpeek/models/createretrieverrequest.py,sha256=jEscgfbiltsL0-acCFIsWkZq_Y2MEeQGPbog5lcohLo,2861
|
60
58
|
mixpeek/models/createtaxonomyrequest.py,sha256=dhFxZuy2LKX2JoF23gpwcppw7ZzI2dFZ00tnlTGIt8M,1763
|
61
59
|
mixpeek/models/datetimeindexparams.py,sha256=i8SJBTEnWQEMOaOcN7Pt_Zptr6fxYJyO0Mx95-0EC68,468
|
62
60
|
mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py,sha256=EbE2ou5ERB-PKECL3sK3w20SmYEYJbCDNZZb2u9FHkE,714
|
63
61
|
mixpeek/models/delete_bucket_v1_buckets_bucket_identifier_deleteop.py,sha256=SGkEHqpQvTQHqstUI7rrhMeK9NJZk6RA6vHzeHtfVKY,2232
|
64
|
-
mixpeek/models/delete_document_v1_collections_collection_identifier_documents_document_id_deleteop.py,sha256=Vk561X-y5Ewjqg8cCyVXPv8RWCPK6eLLz-XfsU-6fBs,2608
|
65
62
|
mixpeek/models/delete_interaction_v1_retrievers_interactions_interaction_id_deleteop.py,sha256=RGvzYpXEVyO-dZI5Ms1J_7z7garEvVEtIiPkM_4jXzc,2266
|
66
63
|
mixpeek/models/delete_namespace_v1_namespaces_namespace_deleteop.py,sha256=8Rx0MWjeTpxIoeMalauVf-0e-gquwC441VregBqADJ4,642
|
67
64
|
mixpeek/models/delete_object_v1_buckets_bucket_identifier_objects_object_identifier_deleteop.py,sha256=uJg3wx9PDM-spnVxHoz1fzZWL5hSSIUj3Vnuo_3jxn4,2584
|
68
65
|
mixpeek/models/delete_user_v1_organizations_users_user_email_deleteop.py,sha256=ihsOW_KtfWvJTIwZW2zWKxFYnkbX7Qn7ux8XQxu8Z3U,544
|
69
66
|
mixpeek/models/documenthandlingconfig.py,sha256=8Uw_xpWesSedqIoGm1M0xC1sf3FPiIFnjWgQ-ZxdNYE,1783
|
70
67
|
mixpeek/models/documentinputhandling.py,sha256=gsbsWqWC77gj69fzmJN9c8ymPJhgVxlx-eOesZmIqhg,290
|
71
|
-
mixpeek/models/documentlistresponse.py,sha256=QnAF-9SulIAOKPMnl-NAlhfL_ax1rdihm50vNVMY9fE,1715
|
72
68
|
mixpeek/models/documentoutputhandling.py,sha256=KAFlvHPKCHsHjKjFGlAp7pDd1JpHzybnF-tscF3eW8Y,255
|
73
69
|
mixpeek/models/documentoutputtype.py,sha256=fhTpWfAmt1CTHNnEZPkbGg9Zjt7FI751Q5lP12F64Xg,260
|
74
|
-
mixpeek/models/documentresponse.py,sha256=XTpSOHZ1dNM5W3Rqini_kRYELGjWWsswlGyQDLZUY6A,2494
|
75
|
-
mixpeek/models/documentupdate.py,sha256=Ik8FyOT_K0tkeatILaHTixQlj9cbNfJIro2JvMxhm2g,1800
|
76
70
|
mixpeek/models/enrichmentfield.py,sha256=ZQMlhXUU-0kb55uxqapjXhsPWiL29XJi2LP5hMEy1JU,740
|
77
|
-
mixpeek/models/errordetail.py,sha256=
|
71
|
+
mixpeek/models/errordetail.py,sha256=9DTtNd9vfiy8pfUHHmKjUocmdXa3_7Bjvy3WN_E5sfY,1467
|
78
72
|
mixpeek/models/errorresponse.py,sha256=YIbCFc44szh_OIUoQ3BByHWouYwa2Tqedm9NJcrNvyQ,582
|
79
73
|
mixpeek/models/execute_retriever_v1_retrievers_retrievers_retriever_id_execute_postop.py,sha256=JwQLgVQOqgH5mSSjSkA5J633OeRG43sdj2GNgz9QWfA,2606
|
80
|
-
mixpeek/models/featureextractorconfig.py,sha256=
|
81
|
-
mixpeek/models/featureextractordefinition.py,sha256=
|
74
|
+
mixpeek/models/featureextractorconfig.py,sha256=oW9oyM2JZivTEuxAEX-DtXTOVcIEmkhSljroTcgIdT8,4102
|
75
|
+
mixpeek/models/featureextractordefinition.py,sha256=96nxbsYclU7nhPlTVkFNBe7OA551_spDNpoE7Y_ZzSY,6136
|
82
76
|
mixpeek/models/filtercondition.py,sha256=xY3-pqSzy7n9oAhIZTyr8b8CMYunshNpjhcPm5d4nKM,2212
|
83
77
|
mixpeek/models/filteroperator.py,sha256=ifDtbjNKBmpMsV35Trpt3aCYQgIEf7FoS16n7mQK_sY,525
|
84
78
|
mixpeek/models/floatindexparams.py,sha256=Ac0zuicEKeBwF59M4w0W6e6MODI2dRwDT1cntZt1D8E,453
|
85
79
|
mixpeek/models/generativemodels.py,sha256=UaNJ0Ysd5a2pjpwYKa_qnSMxNmS9LkGkwIyqsak0QAA,273
|
86
|
-
mixpeek/models/genericsuccessresponse.py,sha256=0Ce1Rab7ED1vQrVP6nAtjFYz-_o0nV0rPhaJHWKifA4,421
|
87
80
|
mixpeek/models/geoindexparams.py,sha256=wMb-04qAYhBZW1tCMzr8ZLRf5s43aWp_b4u_17bV5AE,443
|
88
81
|
mixpeek/models/get_bucket_v1_buckets_bucket_identifier_getop.py,sha256=l4CKLrV3PuY3BRL7KxtMliV3-Su84E6SgXeIqLr9z9Y,2220
|
89
82
|
mixpeek/models/get_cache_stats_v1_collections_cache_stats_getop.py,sha256=YzOG-2fiZWHhAfK7Ww3eXz6aJ8fxXlPDb1Dbkr4YcIU,2634
|
90
83
|
mixpeek/models/get_collection_v1_collections_collection_id_getop.py,sha256=x2WjW0cdUqssVSwI53EIkN1e16qtYMHhDuPUTW5VKdQ,2316
|
91
|
-
mixpeek/models/get_document_v1_collections_collection_identifier_documents_document_id_getop.py,sha256=90RPcVX_lM_jJlWVl_8SUJIxvYBzVi01U1jMiAHAtLE,2600
|
92
84
|
mixpeek/models/get_feature_extractor_v1_features_extractors_feature_id_getop.py,sha256=oeOUCTxfvb9nSC6a-gPsbhqqMHAqoj-7cRF2C2zZOPA,556
|
93
85
|
mixpeek/models/get_interaction_v1_retrievers_interactions_interaction_id_getop.py,sha256=AMxSgpfGwAq325HwdJryKeaMOIRA6XWQqtQ7_2HlEgo,2248
|
94
86
|
mixpeek/models/get_namespace_v1_namespaces_namespace_getop.py,sha256=21luHlRdFzWL2xm0klDBPSZFLjKBw7hudQN5YzhsSA0,630
|
@@ -103,9 +95,9 @@ mixpeek/models/hdbscanparameters.py,sha256=x6LvqcNxQG0lG-cYpH7BIVg5gG6TKWFfdL9CG
|
|
103
95
|
mixpeek/models/healthcheckresponse.py,sha256=PK3C50wcUdZeLl6qfSYGBli2B3wPzCDTaLtSEtq4ZVY,305
|
104
96
|
mixpeek/models/httpvalidationerror.py,sha256=sjKOM2oJR4c4Z24vHmyhtEfqaQeUdKZUMEclKu23OLc,600
|
105
97
|
mixpeek/models/integerindexparams.py,sha256=r6nNOjihSSptcYwOdfrZTFRX_4bKWHbasGjEjdCLqM8,591
|
106
|
-
mixpeek/models/interactionresponse.py,sha256=
|
98
|
+
mixpeek/models/interactionresponse.py,sha256=hZlQX6STMA8k9CueS0g-O-gKFoch8gF2HCIUotOfPZE,2933
|
107
99
|
mixpeek/models/interactiontype.py,sha256=9gOeXLJKqFBVT-y-rPE9RcUMiqgPT-ECupXSAkgTYEY,624
|
108
|
-
mixpeek/models/internal/__init__.py,sha256=
|
100
|
+
mixpeek/models/internal/__init__.py,sha256=7kjDhcmI428H0YHeZHJRcKSXQE1N2dTPHi3FtLVFaMM,1120
|
109
101
|
mixpeek/models/internal/globals.py,sha256=7PIqZPXMkyWKGGhRqEtmZiESK7Cbo-9dQjCjTi8yL1s,979
|
110
102
|
mixpeek/models/invalidate_cache_v1_collections_cache_invalidate_postop.py,sha256=PLgip9dTEX4trfgRI8NU_BdxYk2KoGEa1EYuO9BgAdk,4007
|
111
103
|
mixpeek/models/invalidationevent.py,sha256=ld8Bsagw_EtspuhtmDlNi50F4PbeHK2HdrfAlUcV-rA,2228
|
@@ -114,7 +106,6 @@ mixpeek/models/keywordindexparams.py,sha256=V_p8KMQ_eftLvDSMTFuifeOEXZVAqKFml9Fx
|
|
114
106
|
mixpeek/models/kill_task_v1_tasks_task_id_deleteop.py,sha256=LqFW5iK8_Dik6wL0op3jroOYZSpFE5RhYZymV2azGBQ,2180
|
115
107
|
mixpeek/models/list_active_tasks_v1_tasks_getop.py,sha256=pQL8QuDgA5FSCVQxh3e7a28sE7mJ5dWzxwIum-qtTkY,2455
|
116
108
|
mixpeek/models/list_buckets_v1_buckets_postop.py,sha256=WAzfTnfKzcuY07tK2NxM96xYwU2pTX1AIkBgX0eEr0M,2854
|
117
|
-
mixpeek/models/list_documents_v1_collections_collection_identifier_documents_getop.py,sha256=gIVJi4a5UplhTzBS_LsYW0iE1HNsIkt68QSZxiGu0DA,3875
|
118
109
|
mixpeek/models/list_interactions_v1_retrievers_interactions_getop.py,sha256=jWBwx15Fpa8XB1kV23s7RGQ9lybq2oW0vjK5Ihd_I4c,3332
|
119
110
|
mixpeek/models/list_objects_v1_buckets_bucket_identifier_objects_postop.py,sha256=gfZRPLAfSzXCIEyor-bWgWUG1WJnTOjNZM4MoeubVBk,3145
|
120
111
|
mixpeek/models/listbucketsrequest.py,sha256=Vi8Q8HGP_LImGBC0lIdLY4PL6pOt6GKtQB_infrApZU,2173
|
@@ -122,14 +113,17 @@ mixpeek/models/listbucketsresponse.py,sha256=igN3kP447WGCrQezE5htRNFT41C8Mlia1Pq
|
|
122
113
|
mixpeek/models/listobjectsrequest.py,sha256=hIF1s67P0g_u6tPZPYe6ydHl_gtI5uZ68nEp8N38_b0,2189
|
123
114
|
mixpeek/models/listobjectsresponse.py,sha256=B0Ac5yCKtAxuF-a562e3g5C_wtflWU8ZtpIoPtI-SEc,812
|
124
115
|
mixpeek/models/listtasksresponse.py,sha256=1jYa0K70vEw7mw5dw73qpGmnzw9hr_kWq6y5R5Ej5DM,588
|
125
|
-
mixpeek/models/logicaloperator_input.py,sha256=
|
126
|
-
mixpeek/models/logicaloperator_output.py,sha256=
|
116
|
+
mixpeek/models/logicaloperator_input.py,sha256=GMBk_IthiDNSthixWzX7vJaOmEQMQvIk33xlCMUoK8A,3502
|
117
|
+
mixpeek/models/logicaloperator_output.py,sha256=ttk9gZNQqsuN5DWukn9JkpTsZejHQFI549qE-VusSwM,3966
|
118
|
+
mixpeek/models/logicaloperatorbase_input.py,sha256=n-jp8wKdGSg58pxiijROQz9sz5jBbd5vTsgwbNVWGaw,2776
|
119
|
+
mixpeek/models/logicaloperatorbase_output.py,sha256=1BC5CE0WBfkRkqLveg-uErI2_iyMSfGjv_BiMNC_o10,2778
|
127
120
|
mixpeek/models/multivectorindex.py,sha256=ZWHINlQg1j05ErmR1Qh4-hNnmDxvbZJKecu6PwlkttI,605
|
128
|
-
mixpeek/models/namespaceresponse.py,sha256
|
121
|
+
mixpeek/models/namespaceresponse.py,sha256=8EKzI6E3DVe7O0Qvol8HHgCJ5Cer1K_d4tuXUIWJIY8,2024
|
122
|
+
mixpeek/models/namespacestatus.py,sha256=rnK4XThMzj-DFT3nkk_67dJ4HKmALiyCAZAOP_wA33Q,232
|
129
123
|
mixpeek/models/namespaceusage.py,sha256=8xV-_ZC48BzNK-EvX_d5lkSeil1H50fpACR8hF6d5QY,1080
|
130
124
|
mixpeek/models/namingmethod.py,sha256=wenG2z-w7pRxmVoBmmW58pmMloaEn87rvnev-2uI8p4,189
|
131
|
-
mixpeek/models/objectresponse.py,sha256
|
132
|
-
mixpeek/models/organizationmodel.py,sha256=
|
125
|
+
mixpeek/models/objectresponse.py,sha256=DMBrwwRjPETXVrK5LlAEWmc9jdvrilVhSf6mkXmn3Xo,3901
|
126
|
+
mixpeek/models/organizationmodel.py,sha256=qF4vNuORN0nNiXL-P-yw-veCpmgQF_4lpDoS9qXKg9o,1065
|
133
127
|
mixpeek/models/paginationresponse.py,sha256=693ECQuG_e_5QKjYsVATuvau7lgGizgmeCdYGTRR-gQ,1522
|
134
128
|
mixpeek/models/payloadindexconfig.py,sha256=E_6YlVomrNzYXv9V3PXJLCZqVcIWHPRP9DzO0EL1f8k,2938
|
135
129
|
mixpeek/models/payloadschematype.py,sha256=DOhqg4XSdyx5ZT-1udYBcZ6PyhG48hiQ-gOtkrdbE40,332
|
@@ -137,12 +131,16 @@ mixpeek/models/permission.py,sha256=Jz-INYVs9RibQhR8fQmf_-FyPoszmycqyR8wUKo96zk,
|
|
137
131
|
mixpeek/models/plan.py,sha256=EW5sbX8-u8VBUV5C2ug_5W-Q76cy5UafYyqEI-9E0pA,2507
|
138
132
|
mixpeek/models/recomputestrategy.py,sha256=48a5fT1yA99H8zVF9lzMw-0on8OqncHNFrrYaFMVS8I,297
|
139
133
|
mixpeek/models/resourcetotals.py,sha256=9sHja7Xu4qPlEO3hhElQSFwLsJ68tfejpufD6hqzLtE,951
|
140
|
-
mixpeek/models/retrieverbinding.py,sha256=
|
134
|
+
mixpeek/models/retrieverbinding.py,sha256=RO4sSOM1WE6pn1t4jHQXy-kO_XhJTQONuDew0hPNgIc,1836
|
141
135
|
mixpeek/models/retrievercacheconfig.py,sha256=lgrSzrBqAFPJk9oa6gHmzkMXdNDIYUVINZUxuFbD9yc,2076
|
142
|
-
mixpeek/models/retrievermodel.py,sha256=
|
143
|
-
mixpeek/models/retrieverqueryrequest.py,sha256=
|
136
|
+
mixpeek/models/retrievermodel.py,sha256=7jhZSJXUSaeM3IErokvH-AKeG_dKH2fv91tbpjcR914,3037
|
137
|
+
mixpeek/models/retrieverqueryrequest.py,sha256=oBMX6HKvBTjLu54cPZV_AND3HLNgdLbRUKTz31rzK2Q,4773
|
144
138
|
mixpeek/models/retrieverresponse.py,sha256=fs2RCLvMLGQiuR1In8VUhnB882CvIXGS0f6TZFMaV2w,737
|
145
|
-
mixpeek/models/
|
139
|
+
mixpeek/models/retrieverschema_input.py,sha256=2nLlktiMDjKp5sw8RRYH42fVh3xII-C3IB-2gVIgoJs,1130
|
140
|
+
mixpeek/models/retrieverschema_output.py,sha256=lYhzGB062oRaKCqXaZCA1hxdlvZ20zqYfsIvcRqNwi8,1137
|
141
|
+
mixpeek/models/retrieverschemafield_input.py,sha256=jlvb6dYGDFG4aKcyz4GoEbq8es2kcKkzfNRvc8O6uQ8,2891
|
142
|
+
mixpeek/models/retrieverschemafield_output.py,sha256=31Cp67n7waR98kflxsBaB2df3VMqpEvPbn4MBp5ruxs,2893
|
143
|
+
mixpeek/models/searchinteraction.py,sha256=Xsds4HzJ5idwJek6z18kZebW9wHGSGzXpXA1dDutcIY,2780
|
146
144
|
mixpeek/models/security.py,sha256=BmBA5yNcaMUKWsJGJtBdZvO1drfqEjAnN4nDs-IOKm4,678
|
147
145
|
mixpeek/models/singlelineageentry.py,sha256=Fy4Ka4v4iVuIVXIuEUoTYyHuVI5XLD3g44amc2WzlVM,3503
|
148
146
|
mixpeek/models/sortdirection.py,sha256=V4eX-M_IDP4nAtfe4lhNVFyh_WVFH9vH8593VZKm2GU,234
|
@@ -150,10 +148,10 @@ mixpeek/models/sortoption.py,sha256=8mW81Mjl2H6biMYzHdwDPT0Khi2eW5jE8-FEPc1-Czk,
|
|
150
148
|
mixpeek/models/sourceconfig_input.py,sha256=d64q9eT-AZGepbc1so2lhDs3UHfNqN5qJpT10WizBVQ,2514
|
151
149
|
mixpeek/models/sourceconfig_output.py,sha256=DESkno9DuzVOOHGSrDZzmDSL3e5c6NTSV50yBaRn-wU,2534
|
152
150
|
mixpeek/models/sourcetype.py,sha256=Kv45pG_ynezOZtZJDN8GhUQpQRPULR3QV_JVbnD_NCg,266
|
153
|
-
mixpeek/models/stageconfig_input.py,sha256=
|
154
|
-
mixpeek/models/stageconfig_output.py,sha256=
|
155
|
-
mixpeek/models/stagedefinition.py,sha256=
|
156
|
-
mixpeek/models/stageresponse.py,sha256=
|
151
|
+
mixpeek/models/stageconfig_input.py,sha256=FZrzIilaZPg6Cw5cBg_dnGlP2ZmlnVJAQfZdzwKaJns,3663
|
152
|
+
mixpeek/models/stageconfig_output.py,sha256=Iip7YRUKNNkfgukt-yoWpSU4PlmGtlWZZ6YICMMnIms,3685
|
153
|
+
mixpeek/models/stagedefinition.py,sha256=Rf8ijuwTIN6uHhtgLHahoUtF2HHjffnDfLlCLhufK0k,5379
|
154
|
+
mixpeek/models/stageresponse.py,sha256=5pQuL0bmbV30jVRbCU7XJitGsZAtc18mCljjZx2MHCI,1745
|
157
155
|
mixpeek/models/taskresponse.py,sha256=qJrOEDabagIpN5jmrcLFxSuCmX4ifrAraR1XQ0kb4-I,1676
|
158
156
|
mixpeek/models/taskstatus.py,sha256=2cuKHVsKF_JAjivUKDe4ynhi6shkSu7PBhoM0KNEwfo,453
|
159
157
|
mixpeek/models/taxonomyapplicationconfig.py,sha256=ECpjpDYNAkTExaip3EiHB5WWh9G_qrur1VJq-aAXlKk,2095
|
@@ -164,40 +162,40 @@ mixpeek/models/timeseriesusage.py,sha256=dSWzpMv0OP-5FEXe2a4ZEq_viMGjMXcbhJKDYbx
|
|
164
162
|
mixpeek/models/tokenizertype.py,sha256=anZ-d0-akzNjteTTGJmUUlhzZOglV_h3mz8rYVfUQzk,268
|
165
163
|
mixpeek/models/update_api_key_v1_organizations_users_user_email_api_keys_key_name_patchop.py,sha256=xYL3lQknHtqm-keJ9N6FlyeuMzGqe1ob7AgLJcnpZE0,972
|
166
164
|
mixpeek/models/update_bucket_v1_buckets_bucket_identifier_putop.py,sha256=niknmcSkYeL6r5IVBk-z2i_Eu0FxD9ceTwWDl_M2yCw,2556
|
167
|
-
mixpeek/models/update_document_v1_collections_collection_identifier_documents_document_id_putop.py,sha256=NRcLIyk4gW-acXtlIHYy61n_efFjwb7N4Nt3rnsECsQ,2971
|
168
165
|
mixpeek/models/update_namespace_v1_namespaces_namespace_putop.py,sha256=MMYlfHPG_iXU7Ev7OI-dKrBnUpusMQbnrHwSuAiDaqE,979
|
169
166
|
mixpeek/models/update_object_v1_buckets_bucket_identifier_objects_object_identifier_putop.py,sha256=9G2K9sT5uL-9cUhadbxbKHo2SEk9VZGuHp16DZtjR1c,2902
|
170
167
|
mixpeek/models/updatenamespacerequest.py,sha256=Cj7-ajmYY1uaRiVWH4FkcYXdhN2SKo4ilxAyRR9hzk4,2033
|
171
|
-
mixpeek/models/updateobjectrequest.py,sha256=
|
168
|
+
mixpeek/models/updateobjectrequest.py,sha256=PaFimdzemiTZkLcsfGFzExHBprOV-muGFdnISMkodgg,2823
|
172
169
|
mixpeek/models/usageresponse.py,sha256=twdflTsRLJ5CNAzKhshuorBCzgi9ZF6tAjFk4BaXhrA,2893
|
173
170
|
mixpeek/models/usagesummary.py,sha256=EKopiYOGZIGs_9sEDP9UtW9UCyms4Bgb_vjs7pDS0z8,989
|
174
171
|
mixpeek/models/usagetimerange.py,sha256=a7pPCQ6i9H7HUroBEIVEG6S-kf-juH2xkJ1NPkxGpzQ,402
|
175
|
-
mixpeek/models/usermodel_input.py,sha256
|
176
|
-
mixpeek/models/usermodel_output.py,sha256=
|
172
|
+
mixpeek/models/usermodel_input.py,sha256=-GNfov_5sZXywv7YA489YCcWrGcR_UtWEpKD3dy8jbs,823
|
173
|
+
mixpeek/models/usermodel_output.py,sha256=ljF2LH4US5g_UzCEhUTP4Mvrjoo7OZGkZUF4esHjROA,825
|
177
174
|
mixpeek/models/uuidindexparams.py,sha256=2vR4nn9tJ5UeCKlpvUraBiLKIWSzgiErcrweV2Dsnpo,520
|
178
175
|
mixpeek/models/validationerror.py,sha256=g2zeZtOeoeEIsftPV67bjp5kqiIqBmM1hu7s3psh-Mc,524
|
179
176
|
mixpeek/models/vectorbasedconfig.py,sha256=6kqWNWsByArOTdO8g-Kctoknz66NKLts3bEKM-ovN4k,2083
|
180
177
|
mixpeek/models/vectorindex.py,sha256=58ceqzuKIxGQwDgNySOmPY19jSjnQ-Jvqq5TzKhfS14,1723
|
181
178
|
mixpeek/models/vectorindexdefinition.py,sha256=8cGTnvbloSpomuLQQZAu2Xb05wJTvzcptAyzOaWYHCE,1043
|
182
179
|
mixpeek/models/vectortype.py,sha256=Cr1SKExLzcxySc_c0WJr2yTAKVW6k5h6HpJ6rmldheg,260
|
183
|
-
mixpeek/namespaces.py,sha256=
|
184
|
-
mixpeek/organizationnotifications.py,sha256=
|
185
|
-
mixpeek/organizations.py,sha256=
|
186
|
-
mixpeek/organizationsusage.py,sha256=
|
180
|
+
mixpeek/namespaces.py,sha256=GyZWCNY02PTzvjf-LhhYhEZFQsbFbcNH4Y2wuY4R1_4,49792
|
181
|
+
mixpeek/organizationnotifications.py,sha256=O1pQyc2S-u72R4qBNBzLdF9wzXkbyjpiD9XmbuzMuUM,8884
|
182
|
+
mixpeek/organizations.py,sha256=9s_KIOND5W-qsTmkcHqwZpUWC-hGmP8v8d43fvAT_E4,39195
|
183
|
+
mixpeek/organizationsusage.py,sha256=biHEm0Cq1mG2E_4OwaqHJcrucljJiKOpqHadOUV2Jzw,9991
|
187
184
|
mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
188
|
-
mixpeek/research.py,sha256=
|
189
|
-
mixpeek/retrieverinteractions.py,sha256=
|
190
|
-
mixpeek/retrievers.py,sha256=
|
191
|
-
mixpeek/retrieverstages.py,sha256=
|
192
|
-
mixpeek/sdk.py,sha256=
|
193
|
-
mixpeek/sdkconfiguration.py,sha256=
|
194
|
-
mixpeek/tasks.py,sha256=
|
195
|
-
mixpeek/taxonomies.py,sha256=
|
185
|
+
mixpeek/research.py,sha256=tPPBvTzBLzs6wt4U_qbE0N1Tpjog28ZbXz45OOuCa-A,9489
|
186
|
+
mixpeek/retrieverinteractions.py,sha256=FNUnPVXVfSbfKt6DmNkwo5EbaNqwrxIodwF3ZLDHEUQ,43166
|
187
|
+
mixpeek/retrievers.py,sha256=C90m9RRICAEqs79AnVt9PoNGNxXfARgfcVspEF9rhRM,37462
|
188
|
+
mixpeek/retrieverstages.py,sha256=r2zg3TGG13enG-h0aGRyGt_dPDvBNas8b-Vfue873gs,9830
|
189
|
+
mixpeek/sdk.py,sha256=g-bpRZVo2nt64Tls1jbJ18etgrMCzIBZWNLlX5Eh3KY,9232
|
190
|
+
mixpeek/sdkconfiguration.py,sha256=w2Vf--Uil4zL7gg9tLNMLPS8dyzPlHyosIzkGOaXlG0,1630
|
191
|
+
mixpeek/tasks.py,sha256=A2nLaL0MzWyMhBMQcORi4yOMdmIVV_oAzAQoExa1H-4,29504
|
192
|
+
mixpeek/taxonomies.py,sha256=9O1j3W-bPxPE6rPHhX3iZPvju1er_42z9HL7vNIiS28,11288
|
196
193
|
mixpeek/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
197
194
|
mixpeek/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
198
|
-
mixpeek/users.py,sha256=
|
199
|
-
mixpeek/utils/__init__.py,sha256=
|
195
|
+
mixpeek/users.py,sha256=MPFHWTiFvF6CuAVwAUZ1zZEzlad3PKa4WvYVrGG2pog,27536
|
196
|
+
mixpeek/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
|
200
197
|
mixpeek/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
198
|
+
mixpeek/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
201
199
|
mixpeek/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
202
200
|
mixpeek/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
|
203
201
|
mixpeek/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
|
@@ -208,9 +206,9 @@ mixpeek/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,
|
|
208
206
|
mixpeek/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
209
207
|
mixpeek/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
210
208
|
mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,6002
|
211
|
-
mixpeek/utils/serializers.py,sha256=
|
209
|
+
mixpeek/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
|
212
210
|
mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
213
211
|
mixpeek/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
214
|
-
mixpeek-0.
|
215
|
-
mixpeek-0.
|
216
|
-
mixpeek-0.
|
212
|
+
mixpeek-0.22.0.dist-info/METADATA,sha256=nbUNGarp5b2IPuHum9seha52PFszKwur4c6tHeMWrU4,22834
|
213
|
+
mixpeek-0.22.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
214
|
+
mixpeek-0.22.0.dist-info/RECORD,,
|