nucliadb-models 6.9.6.post5453__py3-none-any.whl → 6.11.1.post5822__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.
- nucliadb_models/agents/ingestion.py +4 -4
- nucliadb_models/augment.py +294 -24
- nucliadb_models/common.py +57 -57
- nucliadb_models/configuration.py +8 -8
- nucliadb_models/content_types.py +13 -11
- nucliadb_models/conversation.py +25 -26
- nucliadb_models/entities.py +17 -18
- nucliadb_models/external_index_providers.py +1 -2
- nucliadb_models/extracted.py +82 -83
- nucliadb_models/file.py +10 -11
- nucliadb_models/filters.py +79 -75
- nucliadb_models/graph/requests.py +40 -48
- nucliadb_models/graph/responses.py +13 -1
- nucliadb_models/hydration.py +48 -50
- nucliadb_models/internal/predict.py +7 -9
- nucliadb_models/internal/shards.py +2 -3
- nucliadb_models/labels.py +18 -11
- nucliadb_models/link.py +18 -19
- nucliadb_models/metadata.py +66 -54
- nucliadb_models/notifications.py +3 -3
- nucliadb_models/processing.py +1 -2
- nucliadb_models/resource.py +85 -102
- nucliadb_models/retrieval.py +147 -0
- nucliadb_models/search.py +300 -276
- nucliadb_models/security.py +2 -3
- nucliadb_models/text.py +7 -8
- nucliadb_models/trainset.py +1 -2
- nucliadb_models/utils.py +2 -3
- nucliadb_models/vectors.py +2 -5
- nucliadb_models/writer.py +56 -57
- {nucliadb_models-6.9.6.post5453.dist-info → nucliadb_models-6.11.1.post5822.dist-info}/METADATA +1 -1
- nucliadb_models-6.11.1.post5822.dist-info/RECORD +41 -0
- {nucliadb_models-6.9.6.post5453.dist-info → nucliadb_models-6.11.1.post5822.dist-info}/WHEEL +1 -1
- nucliadb_models-6.9.6.post5453.dist-info/RECORD +0 -40
- {nucliadb_models-6.9.6.post5453.dist-info → nucliadb_models-6.11.1.post5822.dist-info}/top_level.txt +0 -0
nucliadb_models/security.py
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
#
|
|
15
|
-
from typing import List
|
|
16
15
|
|
|
17
16
|
from pydantic import BaseModel, Field
|
|
18
17
|
|
|
@@ -22,7 +21,7 @@ class ResourceSecurity(BaseModel):
|
|
|
22
21
|
Security metadata for the resource
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
|
-
access_groups:
|
|
24
|
+
access_groups: list[str] = Field(
|
|
26
25
|
default=[],
|
|
27
26
|
title="Access groups",
|
|
28
27
|
description="List of group ids that can access the resource.",
|
|
@@ -34,7 +33,7 @@ class RequestSecurity(BaseModel):
|
|
|
34
33
|
Security metadata for the search request
|
|
35
34
|
"""
|
|
36
35
|
|
|
37
|
-
groups:
|
|
36
|
+
groups: list[str] = Field(
|
|
38
37
|
default=[],
|
|
39
38
|
title="Groups",
|
|
40
39
|
description="List of group ids to do the request with. ",
|
nucliadb_models/text.py
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
#
|
|
15
15
|
from enum import Enum
|
|
16
|
-
from typing import Optional
|
|
17
16
|
|
|
18
17
|
from pydantic import BaseModel, Field, model_validator
|
|
19
18
|
from typing_extensions import Self
|
|
@@ -52,14 +51,14 @@ TEXT_FORMAT_TO_MIMETYPE = {
|
|
|
52
51
|
|
|
53
52
|
|
|
54
53
|
class FieldText(BaseModel):
|
|
55
|
-
body:
|
|
56
|
-
format:
|
|
57
|
-
md5:
|
|
58
|
-
extract_strategy:
|
|
54
|
+
body: str | None = None
|
|
55
|
+
format: TextFormat | None = None
|
|
56
|
+
md5: str | None = None
|
|
57
|
+
extract_strategy: str | None = Field(
|
|
59
58
|
default=None,
|
|
60
59
|
description="Id of the Nuclia extract strategy used at processing time. If not set, the default strategy was used. Extract strategies are defined at the learning configuration api.",
|
|
61
60
|
)
|
|
62
|
-
split_strategy:
|
|
61
|
+
split_strategy: str | None = Field(
|
|
63
62
|
default=None,
|
|
64
63
|
description="Id of the Nuclia split strategy used at processing time. If not set, the default strategy was used. Split strategies are defined at the learning configuration api.",
|
|
65
64
|
)
|
|
@@ -80,11 +79,11 @@ If you need to store more text, consider using a file field instead or splitting
|
|
|
80
79
|
default=TextFormat.PLAIN,
|
|
81
80
|
description="The format of the text.",
|
|
82
81
|
)
|
|
83
|
-
extract_strategy:
|
|
82
|
+
extract_strategy: str | None = Field(
|
|
84
83
|
default=None,
|
|
85
84
|
description="Id of the Nuclia extract strategy to use at processing time. If not set, the default strategy will be used. Extract strategies are defined at the learning configuration api.",
|
|
86
85
|
)
|
|
87
|
-
split_strategy:
|
|
86
|
+
split_strategy: str | None = Field(
|
|
88
87
|
default=None,
|
|
89
88
|
description="Id of the Nuclia split strategy used at processing time. If not set, the default strategy was used. Split strategies are defined at the learning configuration api.",
|
|
90
89
|
)
|
nucliadb_models/trainset.py
CHANGED
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
from enum import Enum
|
|
18
|
-
from typing import Optional
|
|
19
18
|
|
|
20
19
|
from pydantic import BaseModel, Field, model_validator
|
|
21
20
|
|
|
@@ -40,7 +39,7 @@ class TrainSetType(int, Enum):
|
|
|
40
39
|
|
|
41
40
|
class TrainSet(BaseModel):
|
|
42
41
|
type: TrainSetType = Field(..., description="Streaming type")
|
|
43
|
-
filter_expression:
|
|
42
|
+
filter_expression: FilterExpression | None = Field(
|
|
44
43
|
default=None,
|
|
45
44
|
title="Filter resource by an expression",
|
|
46
45
|
description=(
|
nucliadb_models/utils.py
CHANGED
|
@@ -14,11 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
import json
|
|
16
16
|
from datetime import datetime
|
|
17
|
-
from typing import
|
|
17
|
+
from typing import Annotated
|
|
18
18
|
|
|
19
19
|
import pydantic
|
|
20
20
|
from pydantic import BeforeValidator
|
|
21
|
-
from typing_extensions import Annotated
|
|
22
21
|
|
|
23
22
|
|
|
24
23
|
def validate_field_id(value, handler, info):
|
|
@@ -75,7 +74,7 @@ def validate_json(value: str):
|
|
|
75
74
|
raise ValueError("Invalid JSON") from exc
|
|
76
75
|
|
|
77
76
|
|
|
78
|
-
def check_valid_datetime(v:
|
|
77
|
+
def check_valid_datetime(v: str | datetime) -> datetime:
|
|
79
78
|
if isinstance(v, datetime):
|
|
80
79
|
return v
|
|
81
80
|
try:
|
nucliadb_models/vectors.py
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
from enum import Enum
|
|
15
|
-
from typing import Optional
|
|
16
15
|
|
|
17
16
|
from pydantic import BaseModel, Field
|
|
18
17
|
|
|
@@ -30,10 +29,8 @@ class SemanticModelMetadata(BaseModel):
|
|
|
30
29
|
similarity_function: VectorSimilarity = Field(
|
|
31
30
|
description="Vector similarity algorithm that is applied on search"
|
|
32
31
|
)
|
|
33
|
-
vector_dimension:
|
|
34
|
-
None, description="Dimension of the indexed vectors/embeddings"
|
|
35
|
-
)
|
|
32
|
+
vector_dimension: int | None = Field(None, description="Dimension of the indexed vectors/embeddings")
|
|
36
33
|
|
|
37
34
|
# We no longer need this field as we're fetching the minimum
|
|
38
35
|
# semantic score from the query endpoint at search time
|
|
39
|
-
default_min_score:
|
|
36
|
+
default_min_score: float | None = Field(description="Deprecated", default=None)
|
nucliadb_models/writer.py
CHANGED
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
#
|
|
15
15
|
import json
|
|
16
|
-
from typing import Dict, List, Optional, Union
|
|
17
16
|
|
|
18
17
|
from pydantic import BaseModel, Field, field_validator
|
|
19
18
|
from pydantic.json_schema import SkipJsonSchema
|
|
@@ -46,77 +45,77 @@ class FieldDefaults:
|
|
|
46
45
|
icon = Field(
|
|
47
46
|
None,
|
|
48
47
|
title="Icon",
|
|
49
|
-
description="The icon should be a media type string: https://www.iana.org/assignments/media-types/media-types.xhtml",
|
|
48
|
+
description="The icon should be a media type string: https://www.iana.org/assignments/media-types/media-types.xhtml",
|
|
50
49
|
)
|
|
51
50
|
|
|
52
|
-
files:
|
|
51
|
+
files: dict[FieldIdString, FileField] = Field(
|
|
53
52
|
{},
|
|
54
53
|
title="Files",
|
|
55
|
-
description=f"Dictionary of file fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
54
|
+
description=f"Dictionary of file fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
56
55
|
)
|
|
57
|
-
links:
|
|
56
|
+
links: dict[FieldIdString, LinkField] = Field(
|
|
58
57
|
{},
|
|
59
58
|
title="Links",
|
|
60
|
-
description=f"Dictionary of link fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
59
|
+
description=f"Dictionary of link fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
61
60
|
)
|
|
62
|
-
texts:
|
|
61
|
+
texts: dict[FieldIdString, TextField] = Field(
|
|
63
62
|
{},
|
|
64
63
|
title="Texts",
|
|
65
|
-
description=f"Dictionary of text fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
64
|
+
description=f"Dictionary of text fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
66
65
|
)
|
|
67
|
-
conversations:
|
|
66
|
+
conversations: dict[FieldIdString, InputConversationField] = Field(
|
|
68
67
|
{},
|
|
69
68
|
title="Conversations",
|
|
70
|
-
description=f"Dictionary of conversation fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
69
|
+
description=f"Dictionary of conversation fields to be added to the resource. The keys correspond to the field id, and must comply with the regex: {FieldIdPattern}",
|
|
71
70
|
)
|
|
72
71
|
|
|
73
72
|
|
|
74
73
|
class CreateResourcePayload(BaseModel):
|
|
75
|
-
title:
|
|
76
|
-
summary:
|
|
77
|
-
slug:
|
|
78
|
-
icon:
|
|
79
|
-
thumbnail:
|
|
80
|
-
metadata:
|
|
74
|
+
title: str | None = FieldDefaults.title
|
|
75
|
+
summary: str | None = FieldDefaults.summary
|
|
76
|
+
slug: SlugString | None = FieldDefaults.slug
|
|
77
|
+
icon: str | None = FieldDefaults.icon
|
|
78
|
+
thumbnail: str | None = None
|
|
79
|
+
metadata: InputMetadata | None = Field(
|
|
81
80
|
default=None,
|
|
82
81
|
title="Metadata",
|
|
83
82
|
description="Generic metadata for the resource. It can be used to store structured information about the resource that later is serialized on retrieval results, however this metadata can not be used for searching or filtering.",
|
|
84
83
|
)
|
|
85
|
-
usermetadata:
|
|
86
|
-
fieldmetadata:
|
|
87
|
-
origin:
|
|
84
|
+
usermetadata: UserMetadata | None = None
|
|
85
|
+
fieldmetadata: list[UserFieldMetadata] | None = None
|
|
86
|
+
origin: InputOrigin | None = Field(
|
|
88
87
|
default=None,
|
|
89
88
|
title="Origin",
|
|
90
|
-
description="Origin metadata for the resource. Used to store information about the resource on the origin system. Most of its fields can later be used to filter at search time.",
|
|
89
|
+
description="Origin metadata for the resource. Used to store information about the resource on the origin system. Most of its fields can later be used to filter at search time.",
|
|
91
90
|
)
|
|
92
|
-
extra:
|
|
91
|
+
extra: Extra | None = Field(
|
|
93
92
|
default=None,
|
|
94
93
|
title="Extra",
|
|
95
94
|
description="Extra metadata for the resource. It can be used to store structured information about the resource that can't be used to query at retrieval time.",
|
|
96
95
|
)
|
|
97
|
-
hidden:
|
|
96
|
+
hidden: bool | None = Field(
|
|
98
97
|
default=None,
|
|
99
98
|
title="Hidden",
|
|
100
99
|
description="Set the hidden status of the resource. If not set, the default value for new resources in the KnowledgeBox will be used.",
|
|
101
100
|
)
|
|
102
101
|
|
|
103
|
-
files:
|
|
104
|
-
links:
|
|
105
|
-
texts:
|
|
106
|
-
conversations:
|
|
107
|
-
processing_options:
|
|
102
|
+
files: dict[FieldIdString, FileField] = FieldDefaults.files
|
|
103
|
+
links: dict[FieldIdString, LinkField] = FieldDefaults.links
|
|
104
|
+
texts: dict[FieldIdString, TextField] = FieldDefaults.texts
|
|
105
|
+
conversations: dict[FieldIdString, InputConversationField] = FieldDefaults.conversations
|
|
106
|
+
processing_options: PushProcessingOptions | None = Field(
|
|
108
107
|
default=PushProcessingOptions(),
|
|
109
108
|
description="Options for processing the resource. If not set, the default options will be used.",
|
|
110
109
|
)
|
|
111
|
-
security:
|
|
110
|
+
security: ResourceSecurity | None = Field(
|
|
112
111
|
default=None,
|
|
113
112
|
title="Security",
|
|
114
|
-
description="Security metadata for the resource. It can be used to have fine-grained control over who can access the resource.",
|
|
113
|
+
description="Security metadata for the resource. It can be used to have fine-grained control over who can access the resource.",
|
|
115
114
|
)
|
|
116
115
|
wait_for_commit: SkipJsonSchema[bool] = Field(
|
|
117
116
|
default=True,
|
|
118
117
|
title="Wait for commit",
|
|
119
|
-
description="Wait until the new resource have been properly commited to the database (not processed). Setting this to false allow lower latency but new resources may not be accessible right away",
|
|
118
|
+
description="Wait until the new resource have been properly commited to the database (not processed). Setting this to false allow lower latency but new resources may not be accessible right away",
|
|
120
119
|
)
|
|
121
120
|
|
|
122
121
|
@field_validator("icon")
|
|
@@ -138,61 +137,61 @@ class CreateResourcePayload(BaseModel):
|
|
|
138
137
|
|
|
139
138
|
|
|
140
139
|
class UpdateResourcePayload(BaseModel):
|
|
141
|
-
title:
|
|
142
|
-
summary:
|
|
143
|
-
slug:
|
|
144
|
-
thumbnail:
|
|
145
|
-
metadata:
|
|
146
|
-
usermetadata:
|
|
147
|
-
fieldmetadata:
|
|
148
|
-
origin:
|
|
149
|
-
extra:
|
|
140
|
+
title: str | None = FieldDefaults.title
|
|
141
|
+
summary: str | None = FieldDefaults.summary
|
|
142
|
+
slug: SlugString | None = FieldDefaults.slug
|
|
143
|
+
thumbnail: str | None = None
|
|
144
|
+
metadata: InputMetadata | None = None
|
|
145
|
+
usermetadata: UserMetadata | None = None
|
|
146
|
+
fieldmetadata: list[UserFieldMetadata] | None = None
|
|
147
|
+
origin: InputOrigin | None = None
|
|
148
|
+
extra: Extra | None = Field(
|
|
150
149
|
default=None,
|
|
151
150
|
title="Extra",
|
|
152
151
|
description="Extra metadata for the resource. It can be used to store structured information about the resource that can't be used to query at retrieval time. If not set, the existing extra metadata will not be modified.",
|
|
153
152
|
)
|
|
154
|
-
files:
|
|
155
|
-
links:
|
|
156
|
-
texts:
|
|
157
|
-
conversations:
|
|
158
|
-
processing_options:
|
|
153
|
+
files: dict[FieldIdString, FileField] = FieldDefaults.files
|
|
154
|
+
links: dict[FieldIdString, LinkField] = FieldDefaults.links
|
|
155
|
+
texts: dict[FieldIdString, TextField] = FieldDefaults.texts
|
|
156
|
+
conversations: dict[FieldIdString, InputConversationField] = FieldDefaults.conversations
|
|
157
|
+
processing_options: PushProcessingOptions | None = Field(
|
|
159
158
|
default=PushProcessingOptions(),
|
|
160
159
|
description="Options for processing the resource. If not set, the default options will be used.",
|
|
161
160
|
)
|
|
162
|
-
security:
|
|
161
|
+
security: ResourceSecurity | None = Field(
|
|
163
162
|
default=None,
|
|
164
163
|
title="Security",
|
|
165
|
-
description="Security metadata for the resource. It can be used to have fine-grained control over who can access the resource.",
|
|
164
|
+
description="Security metadata for the resource. It can be used to have fine-grained control over who can access the resource.",
|
|
166
165
|
)
|
|
167
|
-
hidden:
|
|
166
|
+
hidden: bool | None = Field(
|
|
168
167
|
default=None,
|
|
169
168
|
title="Hidden",
|
|
170
|
-
description="Modify the hidden status of the resource. If not set, the hidden status will not be modified.",
|
|
169
|
+
description="Modify the hidden status of the resource. If not set, the hidden status will not be modified.",
|
|
171
170
|
)
|
|
172
171
|
|
|
173
172
|
|
|
174
173
|
class ResourceCreated(BaseModel):
|
|
175
174
|
uuid: str
|
|
176
|
-
elapsed:
|
|
177
|
-
seqid:
|
|
175
|
+
elapsed: float | None = None
|
|
176
|
+
seqid: int | None = None
|
|
178
177
|
|
|
179
178
|
|
|
180
179
|
class ResourceUpdated(BaseModel):
|
|
181
|
-
seqid:
|
|
180
|
+
seqid: int | None = None
|
|
182
181
|
|
|
183
182
|
|
|
184
183
|
class ResourceFieldAdded(BaseModel):
|
|
185
|
-
seqid:
|
|
184
|
+
seqid: int | None = None
|
|
186
185
|
|
|
187
186
|
|
|
188
187
|
class ResourceDeleted(BaseModel):
|
|
189
|
-
seqid:
|
|
188
|
+
seqid: int | None = None
|
|
190
189
|
|
|
191
190
|
|
|
192
|
-
ComingResourcePayload =
|
|
191
|
+
ComingResourcePayload = CreateResourcePayload | UpdateResourcePayload
|
|
193
192
|
|
|
194
193
|
|
|
195
194
|
class ResourceFileUploaded(BaseModel):
|
|
196
|
-
seqid:
|
|
197
|
-
uuid:
|
|
198
|
-
field_id:
|
|
195
|
+
seqid: int | None = None
|
|
196
|
+
uuid: str | None = None
|
|
197
|
+
field_id: FieldIdString | None = None
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
nucliadb_models/__init__.py,sha256=3y8-htogKuCZcbhaUZdSjTeEjUSeec9aRWyL8AlKCyM,1077
|
|
2
|
+
nucliadb_models/augment.py,sha256=owXyuSk53li3IEQLJ2PZGTU1JwscPDXF0ExTP-XLs9E,11634
|
|
3
|
+
nucliadb_models/common.py,sha256=m9hjRykGO_O--LWH9DeuXX1pn1RA51OTLh7_nPByKcw,8161
|
|
4
|
+
nucliadb_models/configuration.py,sha256=s1OOvv7V7QBB7Xcl1IBeN4MQcH8B6rSBpn4IblPk1GA,2408
|
|
5
|
+
nucliadb_models/content_types.py,sha256=fuIXMU3ioRwwlixajvQ6HTGh8tSBNkZeYQQXQR-hXKw,3512
|
|
6
|
+
nucliadb_models/conversation.py,sha256=pUMFd1wIWdinjmAz_t9uGObgL8p5QtC5qVgpRkpLg5U,4990
|
|
7
|
+
nucliadb_models/entities.py,sha256=C6RABDr6rDA-_QiYCI78naI3kf1Gxgdar7BIs1Nl5us,2278
|
|
8
|
+
nucliadb_models/export_import.py,sha256=mNm9IArOLnC6TLupkwqVFhxD5d08mpIVOVFneECv8UA,1073
|
|
9
|
+
nucliadb_models/external_index_providers.py,sha256=juHa4BFncXEEiaJlYa5EFFeF8mX5rd5ESoydGY03wG8,1093
|
|
10
|
+
nucliadb_models/extracted.py,sha256=QV9nPfNZr23R-7rLxHZTZ3EPJyZrd9r4oql__RTT8qE,5438
|
|
11
|
+
nucliadb_models/file.py,sha256=qkzhm8TYI5vdhhOLHoozwmNCwVLR5SUGNwGl5AhgRow,2205
|
|
12
|
+
nucliadb_models/filters.py,sha256=J3PQ_sxYh4_sEWK4lx7US6bnT3o2502rK4VZRoYIg9k,14877
|
|
13
|
+
nucliadb_models/hydration.py,sha256=3enm-WI3J6W_D1o4oEBzQvzweZ2R9-CXDTAG7CCnw8k,14178
|
|
14
|
+
nucliadb_models/labels.py,sha256=LEnYghoFBs2ujnnzT3YGFAvWbtHbErIdjPM4GM55x2M,4386
|
|
15
|
+
nucliadb_models/link.py,sha256=yiAv8MwvxG6MXrO7xF8Kn5uIWeKh97f5EyYrm9Oi3KA,2438
|
|
16
|
+
nucliadb_models/metadata.py,sha256=kGxD--4zTtRJAY1pSBQuBtTlUUkIf30hDUw3PLQ2ifk,9317
|
|
17
|
+
nucliadb_models/notifications.py,sha256=och20GZ6QfRzYHZ_dKgCv4U7AyjP-b05BxJvNe_JfOM,3994
|
|
18
|
+
nucliadb_models/processing.py,sha256=Obq6Vc6Ee3GasB7lkBCIumFA-0RyF3YemMWSvey44YY,688
|
|
19
|
+
nucliadb_models/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
nucliadb_models/resource.py,sha256=e1jGr0Z8UNASv42d0QWMIfEZbYoe3Q0u2qkAH4zG9hQ,8517
|
|
21
|
+
nucliadb_models/retrieval.py,sha256=t6qCuhDGM9AZrLVMI0kMzOmtB1ADwP6Ho-lwCLKclEY,3931
|
|
22
|
+
nucliadb_models/search.py,sha256=fJGzm7c_uJz60SGZQpftcCVWYtpqjoyyTpt3YfvPWs4,97368
|
|
23
|
+
nucliadb_models/security.py,sha256=QjpKthLUwBtpj6_wGPrfqrrK-hrFrCGerd4USGUGPO0,1126
|
|
24
|
+
nucliadb_models/synonyms.py,sha256=afbaVqSQSxGLwi2PusVaLSRpkOtA5AZmWOKd1f4nl2E,690
|
|
25
|
+
nucliadb_models/text.py,sha256=OdlKdM4sDBZlZfJ970pTc4aIiU7YgL3YnTpHvN0W-iU,3365
|
|
26
|
+
nucliadb_models/trainset.py,sha256=Ga8QBhoCnbpZBOwSXEdUwD6Ny6NSRrC06lrSS9B-6ZY,2375
|
|
27
|
+
nucliadb_models/utils.py,sha256=WzusHXUL4-DDJ72A85SG3Bwib4A5XuVlDRoGwcnWiB0,2418
|
|
28
|
+
nucliadb_models/vectors.py,sha256=rqsYgMOZ6vD2GfaGo4VInAbhDv5xu6ou7WNqoLk6lTc,1281
|
|
29
|
+
nucliadb_models/vectorsets.py,sha256=XAgg9DfdfLYpfLh9OepJ_KPH0_RqRQNpVZJr74UnNh0,788
|
|
30
|
+
nucliadb_models/writer.py,sha256=fcRh1NbeMu_gycaSYtm6ocanB6JDeAOdQ8rCI4K7Fr8,7999
|
|
31
|
+
nucliadb_models/agents/ingestion.py,sha256=Z5TN4rnzAjzxewpde5Axygpbxqv_ZXQfEaadxz68Wpg,3096
|
|
32
|
+
nucliadb_models/graph/__init__.py,sha256=X538kZPZnndmQeEtnzzPv1hYVGUTDe9U1O7UmAqqxXU,645
|
|
33
|
+
nucliadb_models/graph/requests.py,sha256=9eUbjPthH-5NFAYKoAkWJD8BGU_LS9xtvpv-zcz0t7s,7107
|
|
34
|
+
nucliadb_models/graph/responses.py,sha256=cfouNcPHUDlrvYAEwULQdnrRG1i_ldqR9DmTHBOxmfI,1843
|
|
35
|
+
nucliadb_models/internal/__init__.py,sha256=zG33bUz1rHFPtvqQPWn4rDwBJt3FJodGuQYD45quiQg,583
|
|
36
|
+
nucliadb_models/internal/predict.py,sha256=f1KUWn4X5TlRmZWgT2NqLMrBcN2xfn2d9JMNdIsP34Q,1982
|
|
37
|
+
nucliadb_models/internal/shards.py,sha256=cOW4cYs79ZOQWkNEVq8GMZhjLAD0PcW9rlsFwfyAx4g,1654
|
|
38
|
+
nucliadb_models-6.11.1.post5822.dist-info/METADATA,sha256=sGdi84a83L2-T_tDHqv0U1fJLqt0wQAgbOLo8fjwdm0,746
|
|
39
|
+
nucliadb_models-6.11.1.post5822.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
40
|
+
nucliadb_models-6.11.1.post5822.dist-info/top_level.txt,sha256=UrY1I8oeovIRwkXLYplssTrxQdUjhSEFDFbnwaIV3tA,16
|
|
41
|
+
nucliadb_models-6.11.1.post5822.dist-info/RECORD,,
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
nucliadb_models/__init__.py,sha256=3y8-htogKuCZcbhaUZdSjTeEjUSeec9aRWyL8AlKCyM,1077
|
|
2
|
-
nucliadb_models/augment.py,sha256=vAtFh4D4eC4nvfwaRTlfeuAMOL9Z9TFZnUNiRAMasss,2543
|
|
3
|
-
nucliadb_models/common.py,sha256=2dtKG4ZNi9p-yoNY76Uvyu1SlMeNYpH-MnuU3Q6w9Js,8169
|
|
4
|
-
nucliadb_models/configuration.py,sha256=BBrJsNjP324Cw_5J3dBrGwvpkHQYbXEo3TUaI9IqAOg,2449
|
|
5
|
-
nucliadb_models/content_types.py,sha256=36Ga-iGf4ivCqgtXC7imFgegrwHB117s9eqP62JtGv0,3456
|
|
6
|
-
nucliadb_models/conversation.py,sha256=k9bKhkDiqhqmdrDfDPNoUfG7-2H_-KAyuOnETd8zV0E,5081
|
|
7
|
-
nucliadb_models/entities.py,sha256=i-7Y8qmFRRTih5zw0ajv1U_iiXexe66M3TK8hUikQZk,2356
|
|
8
|
-
nucliadb_models/export_import.py,sha256=mNm9IArOLnC6TLupkwqVFhxD5d08mpIVOVFneECv8UA,1073
|
|
9
|
-
nucliadb_models/external_index_providers.py,sha256=pL3leo4MkuJOnKlU1Sg6GT_mnK_VUBxGui-RPmDYVWU,1126
|
|
10
|
-
nucliadb_models/extracted.py,sha256=Owz7LC3le3Dvau3TtRiO8NY84meOf6IxN-RrOqqpMPs,5593
|
|
11
|
-
nucliadb_models/file.py,sha256=tXtgB9c7i2ADsnJ7HdbXyroAmXadGvOeA49htBh7BZo,2263
|
|
12
|
-
nucliadb_models/filters.py,sha256=NQI2-4AFzzJuZy8NeY3jXlTbbU5wxiwMCP-5DrD-7lE,14759
|
|
13
|
-
nucliadb_models/hydration.py,sha256=SlAzraJE6DX0uOpZWxu2k_9-ikYorsj0t8xwsWSBQZY,14363
|
|
14
|
-
nucliadb_models/labels.py,sha256=9zqRgkpZuX3kUPwsTTgCH7JyOWK7dM5pwyuHJR86YdU,3949
|
|
15
|
-
nucliadb_models/link.py,sha256=PF5hHLwdOed5TMBTxtokkgWtMh1bFnORZjybh0NwVCw,2526
|
|
16
|
-
nucliadb_models/metadata.py,sha256=OOKGy_83NtlG1QKQZEwMuwu4wbVEe7P30Y2QvnGSDto,8933
|
|
17
|
-
nucliadb_models/notifications.py,sha256=mna8-AoD_29Wds0Thl0AF0zpERnJmYGLZX1w1fUopMY,4036
|
|
18
|
-
nucliadb_models/processing.py,sha256=nhKuHQjqCdb9zJVkYGPTLub23tK9e_lwL5OCDVymZjY,719
|
|
19
|
-
nucliadb_models/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
nucliadb_models/resource.py,sha256=RzCos0QRgSMkaV-p7EoceSmt7UTzt9G9be5BKF-iGrQ,9021
|
|
21
|
-
nucliadb_models/search.py,sha256=_vn3pDXcK4iwiCfim3BtlD5EaQAeXoxl2IfNDsrKesA,97514
|
|
22
|
-
nucliadb_models/security.py,sha256=opxaDLfvk3aU0sjesK0jGrYLx5h4YCwlKKN0moYs_ig,1150
|
|
23
|
-
nucliadb_models/synonyms.py,sha256=afbaVqSQSxGLwi2PusVaLSRpkOtA5AZmWOKd1f4nl2E,690
|
|
24
|
-
nucliadb_models/text.py,sha256=60bxZnOjRHnDdezR8VfR3AZsXTOwePFPs2BKB8wxBak,3414
|
|
25
|
-
nucliadb_models/trainset.py,sha256=BgUfgdClpwhk6UoOq5x6mbpOopgSmqg8he2bBzEzGqg,2406
|
|
26
|
-
nucliadb_models/utils.py,sha256=OnWaDwZGwja8Spd_gpryuUpAMGIMhh-DNDGpoUYyb-A,2460
|
|
27
|
-
nucliadb_models/vectors.py,sha256=_Z157PojPIwoeF5LStO0gz8IwxKy2styHjhdBkLd_44,1329
|
|
28
|
-
nucliadb_models/vectorsets.py,sha256=XAgg9DfdfLYpfLh9OepJ_KPH0_RqRQNpVZJr74UnNh0,788
|
|
29
|
-
nucliadb_models/writer.py,sha256=6hBH32XLsXUqeNWVQlzZ6X-0dLFVgkbxaMSf_s2Cga4,8237
|
|
30
|
-
nucliadb_models/agents/ingestion.py,sha256=W9cJ0dQT_1vPcjeJ4_Fjb8DylnhQ6qqZrY4v8x1RqUs,3093
|
|
31
|
-
nucliadb_models/graph/__init__.py,sha256=X538kZPZnndmQeEtnzzPv1hYVGUTDe9U1O7UmAqqxXU,645
|
|
32
|
-
nucliadb_models/graph/requests.py,sha256=ppQ7cOnybvrw1wGC7qDps-182PfmicWU6-4vLRfK16w,7169
|
|
33
|
-
nucliadb_models/graph/responses.py,sha256=Sdq8OgFAL1YT-1lJyLLrkqcScvj7YTEqAUwQ-kFAk9M,1399
|
|
34
|
-
nucliadb_models/internal/__init__.py,sha256=zG33bUz1rHFPtvqQPWn4rDwBJt3FJodGuQYD45quiQg,583
|
|
35
|
-
nucliadb_models/internal/predict.py,sha256=Pnx6MmLfK65eExe1XnVxqmSlvMwdowewwks9BOEoqMw,2029
|
|
36
|
-
nucliadb_models/internal/shards.py,sha256=__y1OZtWGiNcPQEWfSFOj8yw458WGi7mM4vZe0K-L1Y,1691
|
|
37
|
-
nucliadb_models-6.9.6.post5453.dist-info/METADATA,sha256=x-3GFIapOwe9kpigwte5HkdfaNqPk-iL7CuE_NM3PAE,745
|
|
38
|
-
nucliadb_models-6.9.6.post5453.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
39
|
-
nucliadb_models-6.9.6.post5453.dist-info/top_level.txt,sha256=UrY1I8oeovIRwkXLYplssTrxQdUjhSEFDFbnwaIV3tA,16
|
|
40
|
-
nucliadb_models-6.9.6.post5453.dist-info/RECORD,,
|
{nucliadb_models-6.9.6.post5453.dist-info → nucliadb_models-6.11.1.post5822.dist-info}/top_level.txt
RENAMED
|
File without changes
|