mixpeek 0.21.6__py3-none-any.whl → 0.21.8__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/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mixpeek"
6
- __version__: str = "0.21.6"
6
+ __version__: str = "0.21.8"
7
7
  __openapi_doc_version__: str = "0.81"
8
8
  __gen_version__: str = "2.585.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.21.6 2.585.2 0.81 mixpeek"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.21.8 2.585.2 0.81 mixpeek"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -389,6 +389,19 @@ from .retrieverqueryrequest import (
389
389
  RetrieverQueryRequestTypedDict,
390
390
  )
391
391
  from .retrieverresponse import RetrieverResponse, RetrieverResponseTypedDict
392
+ from .retrieverschema_input import RetrieverSchemaInput, RetrieverSchemaInputTypedDict
393
+ from .retrieverschema_output import (
394
+ RetrieverSchemaOutput,
395
+ RetrieverSchemaOutputTypedDict,
396
+ )
397
+ from .retrieverschemafield_input import (
398
+ RetrieverSchemaFieldInput,
399
+ RetrieverSchemaFieldInputTypedDict,
400
+ )
401
+ from .retrieverschemafield_output import (
402
+ RetrieverSchemaFieldOutput,
403
+ RetrieverSchemaFieldOutputTypedDict,
404
+ )
392
405
  from .searchinteraction import (
393
406
  SearchInteraction,
394
407
  SearchInteractionMetadata,
@@ -804,6 +817,14 @@ __all__ = [
804
817
  "RetrieverQueryRequestTypedDict",
805
818
  "RetrieverResponse",
806
819
  "RetrieverResponseTypedDict",
820
+ "RetrieverSchemaFieldInput",
821
+ "RetrieverSchemaFieldInputTypedDict",
822
+ "RetrieverSchemaFieldOutput",
823
+ "RetrieverSchemaFieldOutputTypedDict",
824
+ "RetrieverSchemaInput",
825
+ "RetrieverSchemaInputTypedDict",
826
+ "RetrieverSchemaOutput",
827
+ "RetrieverSchemaOutputTypedDict",
807
828
  "SearchInteraction",
808
829
  "SearchInteractionMetadata",
809
830
  "SearchInteractionMetadataTypedDict",
@@ -1,8 +1,8 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from .bucketschema_input import BucketSchemaInput, BucketSchemaInputTypedDict
5
4
  from .retrievercacheconfig import RetrieverCacheConfig, RetrieverCacheConfigTypedDict
5
+ from .retrieverschema_input import RetrieverSchemaInput, RetrieverSchemaInputTypedDict
6
6
  from .stageconfig_input import StageConfigInput, StageConfigInputTypedDict
7
7
  from mixpeek.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
8
8
  from pydantic import model_serializer
@@ -23,8 +23,8 @@ class CreateRetrieverRequestTypedDict(TypedDict):
23
23
 
24
24
  retriever_name: str
25
25
  r"""Name of the retriever"""
26
- input_schema: BucketSchemaInputTypedDict
27
- r"""Schema definition for bucket objects"""
26
+ input_schema: RetrieverSchemaInputTypedDict
27
+ r"""Schema definition for retriever inputs"""
28
28
  collection_ids: List[str]
29
29
  r"""List of collection IDs to search in"""
30
30
  stages: List[StageConfigInputTypedDict]
@@ -42,8 +42,8 @@ class CreateRetrieverRequest(BaseModel):
42
42
  retriever_name: str
43
43
  r"""Name of the retriever"""
44
44
 
45
- input_schema: BucketSchemaInput
46
- r"""Schema definition for bucket objects"""
45
+ input_schema: RetrieverSchemaInput
46
+ r"""Schema definition for retriever inputs"""
47
47
 
48
48
  collection_ids: List[str]
49
49
  r"""List of collection IDs to search in"""
@@ -1,8 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from .bucketschema_output import BucketSchemaOutput, BucketSchemaOutputTypedDict
5
4
  from .retrievercacheconfig import RetrieverCacheConfig, RetrieverCacheConfigTypedDict
5
+ from .retrieverschema_output import (
6
+ RetrieverSchemaOutput,
7
+ RetrieverSchemaOutputTypedDict,
8
+ )
6
9
  from .stageconfig_output import StageConfigOutput, StageConfigOutputTypedDict
7
10
  from mixpeek.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
8
11
  from pydantic import model_serializer
@@ -23,8 +26,8 @@ class RetrieverModelTypedDict(TypedDict):
23
26
 
24
27
  retriever_name: str
25
28
  r"""Name of the retriever"""
26
- input_schema: BucketSchemaOutputTypedDict
27
- r"""Schema definition for bucket objects"""
29
+ input_schema: RetrieverSchemaOutputTypedDict
30
+ r"""Schema definition for retriever inputs"""
28
31
  collection_ids: List[str]
29
32
  r"""List of collection IDs to search in"""
30
33
  stages: List[StageConfigOutputTypedDict]
@@ -44,8 +47,8 @@ class RetrieverModel(BaseModel):
44
47
  retriever_name: str
45
48
  r"""Name of the retriever"""
46
49
 
47
- input_schema: BucketSchemaOutput
48
- r"""Schema definition for bucket objects"""
50
+ input_schema: RetrieverSchemaOutput
51
+ r"""Schema definition for retriever inputs"""
49
52
 
50
53
  collection_ids: List[str]
51
54
  r"""List of collection IDs to search in"""
@@ -0,0 +1,37 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .retrieverschemafield_input import (
5
+ RetrieverSchemaFieldInput,
6
+ RetrieverSchemaFieldInputTypedDict,
7
+ )
8
+ from mixpeek.types import BaseModel
9
+ import pydantic
10
+ from pydantic import ConfigDict
11
+ from typing import Any, Dict
12
+ from typing_extensions import TypedDict
13
+
14
+
15
+ class RetrieverSchemaInputTypedDict(TypedDict):
16
+ r"""Schema definition for retriever inputs"""
17
+
18
+ properties: Dict[str, RetrieverSchemaFieldInputTypedDict]
19
+
20
+
21
+ class RetrieverSchemaInput(BaseModel):
22
+ r"""Schema definition for retriever inputs"""
23
+
24
+ model_config = ConfigDict(
25
+ populate_by_name=True, arbitrary_types_allowed=True, extra="allow"
26
+ )
27
+ __pydantic_extra__: Dict[str, Any] = pydantic.Field(init=False)
28
+
29
+ properties: Dict[str, RetrieverSchemaFieldInput]
30
+
31
+ @property
32
+ def additional_properties(self):
33
+ return self.__pydantic_extra__
34
+
35
+ @additional_properties.setter
36
+ def additional_properties(self, value):
37
+ self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]
@@ -0,0 +1,37 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .retrieverschemafield_output import (
5
+ RetrieverSchemaFieldOutput,
6
+ RetrieverSchemaFieldOutputTypedDict,
7
+ )
8
+ from mixpeek.types import BaseModel
9
+ import pydantic
10
+ from pydantic import ConfigDict
11
+ from typing import Any, Dict
12
+ from typing_extensions import TypedDict
13
+
14
+
15
+ class RetrieverSchemaOutputTypedDict(TypedDict):
16
+ r"""Schema definition for retriever inputs"""
17
+
18
+ properties: Dict[str, RetrieverSchemaFieldOutputTypedDict]
19
+
20
+
21
+ class RetrieverSchemaOutput(BaseModel):
22
+ r"""Schema definition for retriever inputs"""
23
+
24
+ model_config = ConfigDict(
25
+ populate_by_name=True, arbitrary_types_allowed=True, extra="allow"
26
+ )
27
+ __pydantic_extra__: Dict[str, Any] = pydantic.Field(init=False)
28
+
29
+ properties: Dict[str, RetrieverSchemaFieldOutput]
30
+
31
+ @property
32
+ def additional_properties(self):
33
+ return self.__pydantic_extra__
34
+
35
+ @additional_properties.setter
36
+ def additional_properties(self, value):
37
+ self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]
@@ -0,0 +1,111 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .bucketschemafield_input import (
5
+ BucketSchemaFieldInput,
6
+ BucketSchemaFieldInputTypedDict,
7
+ )
8
+ from .bucketschemafieldtype import BucketSchemaFieldType
9
+ from mixpeek.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
10
+ import pydantic
11
+ from pydantic import ConfigDict, model_serializer
12
+ from typing import Any, Dict, List, Optional
13
+ from typing_extensions import NotRequired, TypedDict
14
+
15
+
16
+ class RetrieverSchemaFieldInputTypedDict(TypedDict):
17
+ r"""Schema field definition for retriever inputs"""
18
+
19
+ type: BucketSchemaFieldType
20
+ r"""Enum for field types in bucket schemas"""
21
+ default: NotRequired[Nullable[Any]]
22
+ items: NotRequired[Nullable[BucketSchemaFieldInputTypedDict]]
23
+ properties: NotRequired[Nullable[Dict[str, BucketSchemaFieldInputTypedDict]]]
24
+ example: NotRequired[Nullable[Any]]
25
+ description: NotRequired[Nullable[str]]
26
+ enum: NotRequired[Nullable[List[Any]]]
27
+ required: NotRequired[bool]
28
+ r"""Whether this field is required for the retriever"""
29
+
30
+
31
+ class RetrieverSchemaFieldInput(BaseModel):
32
+ r"""Schema field definition for retriever inputs"""
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True, arbitrary_types_allowed=True, extra="allow"
36
+ )
37
+ __pydantic_extra__: Dict[str, Any] = pydantic.Field(init=False)
38
+
39
+ type: BucketSchemaFieldType
40
+ r"""Enum for field types in bucket schemas"""
41
+
42
+ default: OptionalNullable[Any] = UNSET
43
+
44
+ items: OptionalNullable[BucketSchemaFieldInput] = UNSET
45
+
46
+ properties: OptionalNullable[Dict[str, BucketSchemaFieldInput]] = UNSET
47
+
48
+ example: OptionalNullable[Any] = UNSET
49
+
50
+ description: OptionalNullable[str] = UNSET
51
+
52
+ enum: OptionalNullable[List[Any]] = UNSET
53
+
54
+ required: Optional[bool] = True
55
+ r"""Whether this field is required for the retriever"""
56
+
57
+ @property
58
+ def additional_properties(self):
59
+ return self.__pydantic_extra__
60
+
61
+ @additional_properties.setter
62
+ def additional_properties(self, value):
63
+ self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]
64
+
65
+ @model_serializer(mode="wrap")
66
+ def serialize_model(self, handler):
67
+ optional_fields = [
68
+ "default",
69
+ "items",
70
+ "properties",
71
+ "example",
72
+ "description",
73
+ "enum",
74
+ "required",
75
+ ]
76
+ nullable_fields = [
77
+ "default",
78
+ "items",
79
+ "properties",
80
+ "example",
81
+ "description",
82
+ "enum",
83
+ ]
84
+ null_default_fields = []
85
+
86
+ serialized = handler(self)
87
+
88
+ m = {}
89
+
90
+ for n, f in type(self).model_fields.items():
91
+ k = f.alias or n
92
+ val = serialized.get(k)
93
+ serialized.pop(k, None)
94
+
95
+ optional_nullable = k in optional_fields and k in nullable_fields
96
+ is_set = (
97
+ self.__pydantic_fields_set__.intersection({n})
98
+ or k in null_default_fields
99
+ ) # pylint: disable=no-member
100
+
101
+ if val is not None and val != UNSET_SENTINEL:
102
+ m[k] = val
103
+ elif val != UNSET_SENTINEL and (
104
+ not k in optional_fields or (optional_nullable and is_set)
105
+ ):
106
+ m[k] = val
107
+
108
+ for k, v in serialized.items():
109
+ m[k] = v
110
+
111
+ return m
@@ -0,0 +1,111 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .bucketschemafield_output import (
5
+ BucketSchemaFieldOutput,
6
+ BucketSchemaFieldOutputTypedDict,
7
+ )
8
+ from .bucketschemafieldtype import BucketSchemaFieldType
9
+ from mixpeek.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
10
+ import pydantic
11
+ from pydantic import ConfigDict, model_serializer
12
+ from typing import Any, Dict, List, Optional
13
+ from typing_extensions import NotRequired, TypedDict
14
+
15
+
16
+ class RetrieverSchemaFieldOutputTypedDict(TypedDict):
17
+ r"""Schema field definition for retriever inputs"""
18
+
19
+ type: BucketSchemaFieldType
20
+ r"""Enum for field types in bucket schemas"""
21
+ default: NotRequired[Nullable[Any]]
22
+ items: NotRequired[Nullable[BucketSchemaFieldOutputTypedDict]]
23
+ properties: NotRequired[Nullable[Dict[str, BucketSchemaFieldOutputTypedDict]]]
24
+ example: NotRequired[Nullable[Any]]
25
+ description: NotRequired[Nullable[str]]
26
+ enum: NotRequired[Nullable[List[Any]]]
27
+ required: NotRequired[bool]
28
+ r"""Whether this field is required for the retriever"""
29
+
30
+
31
+ class RetrieverSchemaFieldOutput(BaseModel):
32
+ r"""Schema field definition for retriever inputs"""
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True, arbitrary_types_allowed=True, extra="allow"
36
+ )
37
+ __pydantic_extra__: Dict[str, Any] = pydantic.Field(init=False)
38
+
39
+ type: BucketSchemaFieldType
40
+ r"""Enum for field types in bucket schemas"""
41
+
42
+ default: OptionalNullable[Any] = UNSET
43
+
44
+ items: OptionalNullable[BucketSchemaFieldOutput] = UNSET
45
+
46
+ properties: OptionalNullable[Dict[str, BucketSchemaFieldOutput]] = UNSET
47
+
48
+ example: OptionalNullable[Any] = UNSET
49
+
50
+ description: OptionalNullable[str] = UNSET
51
+
52
+ enum: OptionalNullable[List[Any]] = UNSET
53
+
54
+ required: Optional[bool] = True
55
+ r"""Whether this field is required for the retriever"""
56
+
57
+ @property
58
+ def additional_properties(self):
59
+ return self.__pydantic_extra__
60
+
61
+ @additional_properties.setter
62
+ def additional_properties(self, value):
63
+ self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]
64
+
65
+ @model_serializer(mode="wrap")
66
+ def serialize_model(self, handler):
67
+ optional_fields = [
68
+ "default",
69
+ "items",
70
+ "properties",
71
+ "example",
72
+ "description",
73
+ "enum",
74
+ "required",
75
+ ]
76
+ nullable_fields = [
77
+ "default",
78
+ "items",
79
+ "properties",
80
+ "example",
81
+ "description",
82
+ "enum",
83
+ ]
84
+ null_default_fields = []
85
+
86
+ serialized = handler(self)
87
+
88
+ m = {}
89
+
90
+ for n, f in type(self).model_fields.items():
91
+ k = f.alias or n
92
+ val = serialized.get(k)
93
+ serialized.pop(k, None)
94
+
95
+ optional_nullable = k in optional_fields and k in nullable_fields
96
+ is_set = (
97
+ self.__pydantic_fields_set__.intersection({n})
98
+ or k in null_default_fields
99
+ ) # pylint: disable=no-member
100
+
101
+ if val is not None and val != UNSET_SENTINEL:
102
+ m[k] = val
103
+ elif val != UNSET_SENTINEL and (
104
+ not k in optional_fields or (optional_nullable and is_set)
105
+ ):
106
+ m[k] = val
107
+
108
+ for k, v in serialized.items():
109
+ m[k] = v
110
+
111
+ return m
mixpeek/retrievers.py CHANGED
@@ -14,7 +14,7 @@ class Retrievers(BaseSDK):
14
14
  *,
15
15
  retriever_name: str,
16
16
  input_schema: Union[
17
- models.BucketSchemaInput, models.BucketSchemaInputTypedDict
17
+ models.RetrieverSchemaInput, models.RetrieverSchemaInputTypedDict
18
18
  ],
19
19
  collection_ids: List[str],
20
20
  stages: Union[
@@ -39,7 +39,7 @@ class Retrievers(BaseSDK):
39
39
  r"""Create Retriever
40
40
 
41
41
  :param retriever_name: Name of the retriever
42
- :param input_schema: Schema definition for bucket objects
42
+ :param input_schema: Schema definition for retriever inputs
43
43
  :param collection_ids: List of collection IDs to search in
44
44
  :param stages: List of stages to execute in order
45
45
  :param x_namespace: Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
@@ -67,7 +67,7 @@ class Retrievers(BaseSDK):
67
67
  retriever_name=retriever_name,
68
68
  description=description,
69
69
  input_schema=utils.get_pydantic_model(
70
- input_schema, models.BucketSchemaInput
70
+ input_schema, models.RetrieverSchemaInput
71
71
  ),
72
72
  collection_ids=collection_ids,
73
73
  stages=utils.get_pydantic_model(stages, List[models.StageConfigInput]),
@@ -170,7 +170,7 @@ class Retrievers(BaseSDK):
170
170
  *,
171
171
  retriever_name: str,
172
172
  input_schema: Union[
173
- models.BucketSchemaInput, models.BucketSchemaInputTypedDict
173
+ models.RetrieverSchemaInput, models.RetrieverSchemaInputTypedDict
174
174
  ],
175
175
  collection_ids: List[str],
176
176
  stages: Union[
@@ -195,7 +195,7 @@ class Retrievers(BaseSDK):
195
195
  r"""Create Retriever
196
196
 
197
197
  :param retriever_name: Name of the retriever
198
- :param input_schema: Schema definition for bucket objects
198
+ :param input_schema: Schema definition for retriever inputs
199
199
  :param collection_ids: List of collection IDs to search in
200
200
  :param stages: List of stages to execute in order
201
201
  :param x_namespace: Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.
@@ -223,7 +223,7 @@ class Retrievers(BaseSDK):
223
223
  retriever_name=retriever_name,
224
224
  description=description,
225
225
  input_schema=utils.get_pydantic_model(
226
- input_schema, models.BucketSchemaInput
226
+ input_schema, models.RetrieverSchemaInput
227
227
  ),
228
228
  collection_ids=collection_ids,
229
229
  stages=utils.get_pydantic_model(stages, List[models.StageConfigInput]),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mixpeek
3
- Version: 0.21.6
3
+ Version: 0.21.8
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Speakeasy
6
6
  Requires-Python: >=3.9
@@ -3,7 +3,7 @@ mixpeek/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,11
3
3
  mixpeek/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  mixpeek/_hooks/sdkhooks.py,sha256=T0xbVPw8mvvFszHZlrZdtFrJBovAqE-JQfw4dS9Xi7Y,2495
5
5
  mixpeek/_hooks/types.py,sha256=YEJVwBkHXS0VhTpa_xr7IZdJM5DdEi7QKq_LDv-6A2o,2810
6
- mixpeek/_version.py,sha256=MoJyuvYBr8StXkm7wRu3JI1P-FNEJASRYxJir4AjQE4,456
6
+ mixpeek/_version.py,sha256=z_Y2j-BWG6_QzIH8UIqxVrl5nqRrj79ghOkJZBq-PDs,456
7
7
  mixpeek/basesdk.py,sha256=qpFsPjn-FwedQiTfOScgF2VCWHRSPkd4TFH6GSlV4ww,12168
8
8
  mixpeek/bucketobjects.py,sha256=U2lM2WG5NkzTbAN4DjFdy7HaNCrE-DhGVDF6RXgiOU0,59673
9
9
  mixpeek/buckets.py,sha256=PuO332Gf4DSG2Dvk-Jj8nRLSyRrAk0D7uARB1dYMOZA,54249
@@ -14,7 +14,7 @@ mixpeek/collections.py,sha256=d0Z6iEXHBy4ntLM02L0rG_ue5ZqF2Gsrwm3NQWPwgM4,25875
14
14
  mixpeek/features.py,sha256=1m4tGITxqwHyLztwBhbVYDQPvbroYf6x0fR4TTMbJVM,18275
15
15
  mixpeek/health.py,sha256=7QjiR-IESq2mrYrx9x0sa1de3530cUDc7gUdWsc-Q6s,6976
16
16
  mixpeek/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
17
- mixpeek/models/__init__.py,sha256=zXu_Ia3b29bGNXNksO8O0asLE4RMwGYSNI2n_sZ6MCg,34880
17
+ mixpeek/models/__init__.py,sha256=ob7ePFE3OMCq4R1Z5wSCgZXnqYKhEJ6HOXj7YgxkPas,35587
18
18
  mixpeek/models/aggregationtype.py,sha256=n2cLLTXTEaFxkwujhy2kYSFXjSsrHMajCB0NQF2Z4Vk,292
19
19
  mixpeek/models/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
20
20
  mixpeek/models/apikey.py,sha256=P99SWsu6wgc6HStE2MteANIGShUkM2dwQnbQvdg5AOc,654
@@ -56,7 +56,7 @@ mixpeek/models/createclusterrequest.py,sha256=MftnsxpSJciI22iqLpBZKqBrr8dv3eVcow
56
56
  mixpeek/models/createcollectionrequest.py,sha256=3EnykYVY6ZVtRRYeRNT6fmxz_7_bMmVZngCtYUgWfN0,4654
57
57
  mixpeek/models/createnamespacerequest.py,sha256=nL5wNhFNV8w01qEZ3rcIDLZAjWe9s6O5O2sOpNxmFkg,2461
58
58
  mixpeek/models/createobjectrequest.py,sha256=fTRR54rt_wn53tWqE8W9GDKaH88RmS1izUVK6iANsNA,3178
59
- mixpeek/models/createretrieverrequest.py,sha256=69FxEDyMsSv667PaAjc_y3bmvZ3yx3DLrMg1yaHzyJs,3001
59
+ mixpeek/models/createretrieverrequest.py,sha256=QiKWQlJ3dX3lq8_wbJdJzV5ThJ2Xw_3kxOKsBXzpjf0,3020
60
60
  mixpeek/models/createtaxonomyrequest.py,sha256=dhFxZuy2LKX2JoF23gpwcppw7ZzI2dFZ00tnlTGIt8M,1763
61
61
  mixpeek/models/datetimeindexparams.py,sha256=i8SJBTEnWQEMOaOcN7Pt_Zptr6fxYJyO0Mx95-0EC68,468
62
62
  mixpeek/models/delete_api_key_v1_organizations_users_user_email_api_keys_key_name_deleteop.py,sha256=EbE2ou5ERB-PKECL3sK3w20SmYEYJbCDNZZb2u9FHkE,714
@@ -139,9 +139,13 @@ mixpeek/models/recomputestrategy.py,sha256=48a5fT1yA99H8zVF9lzMw-0on8OqncHNFrrYa
139
139
  mixpeek/models/resourcetotals.py,sha256=9sHja7Xu4qPlEO3hhElQSFwLsJ68tfejpufD6hqzLtE,951
140
140
  mixpeek/models/retrieverbinding.py,sha256=BVoWigp1o44gl3FHTMxTeGrnB4jR4XzymSmi3nVyMtU,1881
141
141
  mixpeek/models/retrievercacheconfig.py,sha256=lgrSzrBqAFPJk9oa6gHmzkMXdNDIYUVINZUxuFbD9yc,2076
142
- mixpeek/models/retrievermodel.py,sha256=gNck8zG-KPrV58BO3L6jQ3LNdfCsyJQ0zkLzjuGBYT0,3132
142
+ mixpeek/models/retrievermodel.py,sha256=Y4hv0ZbTEIca8_5rnQaBzGH_I-veVMr0rftjCDTc350,3164
143
143
  mixpeek/models/retrieverqueryrequest.py,sha256=GU8NXTelxhJXceVaCiEYrT8gsOEDHR9PAq8z8OmtR-0,5146
144
144
  mixpeek/models/retrieverresponse.py,sha256=fs2RCLvMLGQiuR1In8VUhnB882CvIXGS0f6TZFMaV2w,737
145
+ mixpeek/models/retrieverschema_input.py,sha256=2nLlktiMDjKp5sw8RRYH42fVh3xII-C3IB-2gVIgoJs,1130
146
+ mixpeek/models/retrieverschema_output.py,sha256=lYhzGB062oRaKCqXaZCA1hxdlvZ20zqYfsIvcRqNwi8,1137
147
+ mixpeek/models/retrieverschemafield_input.py,sha256=TSxntCTb3yQuwzhqIKst7FvqPCE_bY-E8VdICmZhmqg,3448
148
+ mixpeek/models/retrieverschemafield_output.py,sha256=Ti3JaUc7lAepyx7TVDSnjvueh-qjupPNOupHr2SGOFI,3457
145
149
  mixpeek/models/searchinteraction.py,sha256=XyS-GJv-zyuBO1t863f8tlqDE3zcRmLXMQpXttXrcJQ,2919
146
150
  mixpeek/models/security.py,sha256=BmBA5yNcaMUKWsJGJtBdZvO1drfqEjAnN4nDs-IOKm4,678
147
151
  mixpeek/models/singlelineageentry.py,sha256=Fy4Ka4v4iVuIVXIuEUoTYyHuVI5XLD3g44amc2WzlVM,3503
@@ -187,7 +191,7 @@ mixpeek/organizationsusage.py,sha256=oWWmjmIgAg_WWLxGG4HJVw70mVAqHfa5nXxBKAFAkJ0
187
191
  mixpeek/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
188
192
  mixpeek/research.py,sha256=HrwERGPp7dlm9JhOhDUda1VMg_zKVdrm0URFwVhcuTo,9395
189
193
  mixpeek/retrieverinteractions.py,sha256=8LfdqwgqePwgYpqiMEwbsw5e8k7cAH9KdxyZsWu1azY,43297
190
- mixpeek/retrievers.py,sha256=1XbXXfu4dIzWZ_QgBalE1PSl--LfXRmCd_WDQv7aw0w,38102
194
+ mixpeek/retrievers.py,sha256=PN7dwaDD-f1yBQQnwxyJCnV_sPiJ380ljPNwBX9Ce9s,38124
191
195
  mixpeek/retrieverstages.py,sha256=IDqFLxDwlDdDoUTcE54Gn7LRjof2ZjKZc0E1hbg_A-w,9736
192
196
  mixpeek/sdk.py,sha256=LjHvqzctjhQ39-u7bpJJU2lznNFmxyEBnxU7nehsl9Y,8128
193
197
  mixpeek/sdkconfiguration.py,sha256=edo_sMUCQonuwfrmTs-hmOM3oO4-e6f2r_2__q4IMDM,1787
@@ -211,6 +215,6 @@ mixpeek/utils/security.py,sha256=XoK-R2YMyZtVWQte7FoezfGJS-dea9jz4qQ7w5dwNWc,600
211
215
  mixpeek/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
212
216
  mixpeek/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
213
217
  mixpeek/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
214
- mixpeek-0.21.6.dist-info/METADATA,sha256=Ge3Ha2HrJnaaGgls6f3KrO4SqaAmQKR_6Xkpcmyd_4M,23882
215
- mixpeek-0.21.6.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
216
- mixpeek-0.21.6.dist-info/RECORD,,
218
+ mixpeek-0.21.8.dist-info/METADATA,sha256=F2dyvQRsQl68dG9bdpb-w2-HhWQ7-f_h8Pcg5gBx4KM,23882
219
+ mixpeek-0.21.8.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
220
+ mixpeek-0.21.8.dist-info/RECORD,,