nucliadb-models 6.8.1.post4983__py3-none-any.whl → 6.10.0.post5694__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.

Potentially problematic release.


This version of nucliadb-models might be problematic. Click here for more details.

Files changed (34) hide show
  1. nucliadb_models/agents/ingestion.py +4 -4
  2. nucliadb_models/augment.py +359 -0
  3. nucliadb_models/common.py +66 -57
  4. nucliadb_models/configuration.py +9 -9
  5. nucliadb_models/content_types.py +13 -11
  6. nucliadb_models/conversation.py +30 -29
  7. nucliadb_models/entities.py +17 -18
  8. nucliadb_models/external_index_providers.py +5 -20
  9. nucliadb_models/extracted.py +82 -83
  10. nucliadb_models/file.py +10 -11
  11. nucliadb_models/filters.py +78 -74
  12. nucliadb_models/graph/requests.py +38 -47
  13. nucliadb_models/hydration.py +423 -0
  14. nucliadb_models/internal/predict.py +7 -9
  15. nucliadb_models/internal/shards.py +2 -3
  16. nucliadb_models/labels.py +18 -11
  17. nucliadb_models/link.py +18 -19
  18. nucliadb_models/metadata.py +80 -53
  19. nucliadb_models/notifications.py +3 -3
  20. nucliadb_models/processing.py +1 -2
  21. nucliadb_models/resource.py +85 -102
  22. nucliadb_models/retrieval.py +147 -0
  23. nucliadb_models/search.py +360 -306
  24. nucliadb_models/security.py +2 -3
  25. nucliadb_models/text.py +7 -8
  26. nucliadb_models/trainset.py +1 -2
  27. nucliadb_models/utils.py +2 -3
  28. nucliadb_models/vectors.py +2 -5
  29. nucliadb_models/writer.py +56 -57
  30. {nucliadb_models-6.8.1.post4983.dist-info → nucliadb_models-6.10.0.post5694.dist-info}/METADATA +2 -3
  31. nucliadb_models-6.10.0.post5694.dist-info/RECORD +41 -0
  32. nucliadb_models-6.8.1.post4983.dist-info/RECORD +0 -38
  33. {nucliadb_models-6.8.1.post4983.dist-info → nucliadb_models-6.10.0.post5694.dist-info}/WHEEL +0 -0
  34. {nucliadb_models-6.8.1.post4983.dist-info → nucliadb_models-6.10.0.post5694.dist-info}/top_level.txt +0 -0
@@ -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: List[str] = Field(
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: List[str] = Field(
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: Optional[str] = None
56
- format: Optional[TextFormat] = None
57
- md5: Optional[str] = None
58
- extract_strategy: Optional[str] = Field(
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: Optional[str] = Field(
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: Optional[str] = Field(
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: Optional[str] = Field(
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
  )
@@ -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: Optional[FilterExpression] = Field(
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 Union
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: Union[str, datetime]) -> datetime:
77
+ def check_valid_datetime(v: str | datetime) -> datetime:
79
78
  if isinstance(v, datetime):
80
79
  return v
81
80
  try:
@@ -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: Optional[int] = Field(
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: Optional[float] = Field(description="Deprecated", default=None)
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", # noqa
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: Dict[FieldIdString, FileField] = Field(
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}", # noqa
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: Dict[FieldIdString, LinkField] = Field(
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}", # noqa
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: Dict[FieldIdString, TextField] = Field(
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}", # noqa
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: Dict[FieldIdString, InputConversationField] = Field(
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}", # noqa
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: Optional[str] = FieldDefaults.title
76
- summary: Optional[str] = FieldDefaults.summary
77
- slug: Optional[SlugString] = FieldDefaults.slug
78
- icon: Optional[str] = FieldDefaults.icon
79
- thumbnail: Optional[str] = None
80
- metadata: Optional[InputMetadata] = Field(
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: Optional[UserMetadata] = None
86
- fieldmetadata: Optional[List[UserFieldMetadata]] = None
87
- origin: Optional[InputOrigin] = Field(
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.", # noqa
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: Optional[Extra] = Field(
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: Optional[bool] = Field(
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: Dict[FieldIdString, FileField] = FieldDefaults.files
104
- links: Dict[FieldIdString, LinkField] = FieldDefaults.links
105
- texts: Dict[FieldIdString, TextField] = FieldDefaults.texts
106
- conversations: Dict[FieldIdString, InputConversationField] = FieldDefaults.conversations
107
- processing_options: Optional[PushProcessingOptions] = Field(
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: Optional[ResourceSecurity] = Field(
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.", # noqa
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", # noqa: E501
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: Optional[str] = FieldDefaults.title
142
- summary: Optional[str] = FieldDefaults.summary
143
- slug: Optional[SlugString] = FieldDefaults.slug
144
- thumbnail: Optional[str] = None
145
- metadata: Optional[InputMetadata] = None
146
- usermetadata: Optional[UserMetadata] = None
147
- fieldmetadata: Optional[List[UserFieldMetadata]] = None
148
- origin: Optional[InputOrigin] = None
149
- extra: Optional[Extra] = Field(
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: Dict[FieldIdString, FileField] = FieldDefaults.files
155
- links: Dict[FieldIdString, LinkField] = FieldDefaults.links
156
- texts: Dict[FieldIdString, TextField] = FieldDefaults.texts
157
- conversations: Dict[FieldIdString, InputConversationField] = FieldDefaults.conversations
158
- processing_options: Optional[PushProcessingOptions] = Field(
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: Optional[ResourceSecurity] = Field(
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.", # noqa
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: Optional[bool] = Field(
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.", # noqa
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: Optional[float] = None
177
- seqid: Optional[int] = None
175
+ elapsed: float | None = None
176
+ seqid: int | None = None
178
177
 
179
178
 
180
179
  class ResourceUpdated(BaseModel):
181
- seqid: Optional[int] = None
180
+ seqid: int | None = None
182
181
 
183
182
 
184
183
  class ResourceFieldAdded(BaseModel):
185
- seqid: Optional[int] = None
184
+ seqid: int | None = None
186
185
 
187
186
 
188
187
  class ResourceDeleted(BaseModel):
189
- seqid: Optional[int] = None
188
+ seqid: int | None = None
190
189
 
191
190
 
192
- ComingResourcePayload = Union[CreateResourcePayload, UpdateResourcePayload]
191
+ ComingResourcePayload = CreateResourcePayload | UpdateResourcePayload
193
192
 
194
193
 
195
194
  class ResourceFileUploaded(BaseModel):
196
- seqid: Optional[int] = None
197
- uuid: Optional[str] = None
198
- field_id: Optional[FieldIdString] = None
195
+ seqid: int | None = None
196
+ uuid: str | None = None
197
+ field_id: FieldIdString | None = None
@@ -1,19 +1,18 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nucliadb_models
3
- Version: 6.8.1.post4983
3
+ Version: 6.10.0.post5694
4
4
  Author-email: Nuclia <nucliadb@nuclia.com>
5
5
  License-Expression: Apache-2.0
6
6
  Project-URL: Homepage, https://nuclia.com
7
7
  Project-URL: Repository, https://github.com/nuclia/nucliadb
8
8
  Classifier: Development Status :: 4 - Beta
9
9
  Classifier: Programming Language :: Python
10
- Classifier: Programming Language :: Python :: 3.9
11
10
  Classifier: Programming Language :: Python :: 3.10
12
11
  Classifier: Programming Language :: Python :: 3.11
13
12
  Classifier: Programming Language :: Python :: 3.12
14
13
  Classifier: Programming Language :: Python :: 3 :: Only
15
14
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Requires-Python: <4,>=3.9
15
+ Requires-Python: <4,>=3.10
17
16
  Description-Content-Type: text/markdown
18
17
  Requires-Dist: pydantic!=2.11.5,!=2.11.6,>=2.6
19
18
 
@@ -0,0 +1,41 @@
1
+ nucliadb_models/__init__.py,sha256=3y8-htogKuCZcbhaUZdSjTeEjUSeec9aRWyL8AlKCyM,1077
2
+ nucliadb_models/augment.py,sha256=UEVixeA9iXHUNnsGSCYP00u9LYFpt_QpnhpPKHdYW6Y,11588
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=EyfTHhIYP1Ahe9sG_5tcWEXp8qLbFSv7a4qfBbTnzbA,14841
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=yMh_u8x_s31_xK2GbFSZxyRb59mMR61HPn0gwQx9vgw,9312
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=zq61KSR_mn3RWr2-Xzk_jge1EXAbBJ2Z_UpptTQPy5E,96329
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=dx0swTWcwnZYzYpGq8UHmQMUlWpnvFw7zfdXkhtVoP4,7042
34
+ nucliadb_models/graph/responses.py,sha256=Sdq8OgFAL1YT-1lJyLLrkqcScvj7YTEqAUwQ-kFAk9M,1399
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.10.0.post5694.dist-info/METADATA,sha256=PPY3qzvTdELKlFaDyD8MvUvcpOjbqQxItgem7oF5_88,746
39
+ nucliadb_models-6.10.0.post5694.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
+ nucliadb_models-6.10.0.post5694.dist-info/top_level.txt,sha256=UrY1I8oeovIRwkXLYplssTrxQdUjhSEFDFbnwaIV3tA,16
41
+ nucliadb_models-6.10.0.post5694.dist-info/RECORD,,
@@ -1,38 +0,0 @@
1
- nucliadb_models/__init__.py,sha256=3y8-htogKuCZcbhaUZdSjTeEjUSeec9aRWyL8AlKCyM,1077
2
- nucliadb_models/common.py,sha256=YW84w1NAQARObs2nXw6YBgdxQJeVCmTZZr5lSqj-IdQ,7904
3
- nucliadb_models/configuration.py,sha256=aTV5mBwYFlwiV1_nWyVAXaCh7F6lDVTVh28Xfwy8ox8,2448
4
- nucliadb_models/content_types.py,sha256=36Ga-iGf4ivCqgtXC7imFgegrwHB117s9eqP62JtGv0,3456
5
- nucliadb_models/conversation.py,sha256=i8tvQxUj6Hw0Nc2oqCGxxzSA1CCY6h7I0ucop9akops,4859
6
- nucliadb_models/entities.py,sha256=i-7Y8qmFRRTih5zw0ajv1U_iiXexe66M3TK8hUikQZk,2356
7
- nucliadb_models/export_import.py,sha256=mNm9IArOLnC6TLupkwqVFhxD5d08mpIVOVFneECv8UA,1073
8
- nucliadb_models/external_index_providers.py,sha256=IIKjJjLixWQC1zrbzam2FDcAo5UUxShZfueZSxqZu8Y,1535
9
- nucliadb_models/extracted.py,sha256=Owz7LC3le3Dvau3TtRiO8NY84meOf6IxN-RrOqqpMPs,5593
10
- nucliadb_models/file.py,sha256=tXtgB9c7i2ADsnJ7HdbXyroAmXadGvOeA49htBh7BZo,2263
11
- nucliadb_models/filters.py,sha256=NQI2-4AFzzJuZy8NeY3jXlTbbU5wxiwMCP-5DrD-7lE,14759
12
- nucliadb_models/labels.py,sha256=9zqRgkpZuX3kUPwsTTgCH7JyOWK7dM5pwyuHJR86YdU,3949
13
- nucliadb_models/link.py,sha256=PF5hHLwdOed5TMBTxtokkgWtMh1bFnORZjybh0NwVCw,2526
14
- nucliadb_models/metadata.py,sha256=MFVYnpXMBoY4ylMg029o7yDKGxhK7NB0c0FSshzJHm4,8356
15
- nucliadb_models/notifications.py,sha256=mna8-AoD_29Wds0Thl0AF0zpERnJmYGLZX1w1fUopMY,4036
16
- nucliadb_models/processing.py,sha256=nhKuHQjqCdb9zJVkYGPTLub23tK9e_lwL5OCDVymZjY,719
17
- nucliadb_models/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- nucliadb_models/resource.py,sha256=RzCos0QRgSMkaV-p7EoceSmt7UTzt9G9be5BKF-iGrQ,9021
19
- nucliadb_models/search.py,sha256=d1KTOxd2VDKTkrJmwKSqOcZ8lcSXZpULK7a5zbMUS2c,94050
20
- nucliadb_models/security.py,sha256=opxaDLfvk3aU0sjesK0jGrYLx5h4YCwlKKN0moYs_ig,1150
21
- nucliadb_models/synonyms.py,sha256=afbaVqSQSxGLwi2PusVaLSRpkOtA5AZmWOKd1f4nl2E,690
22
- nucliadb_models/text.py,sha256=60bxZnOjRHnDdezR8VfR3AZsXTOwePFPs2BKB8wxBak,3414
23
- nucliadb_models/trainset.py,sha256=BgUfgdClpwhk6UoOq5x6mbpOopgSmqg8he2bBzEzGqg,2406
24
- nucliadb_models/utils.py,sha256=OnWaDwZGwja8Spd_gpryuUpAMGIMhh-DNDGpoUYyb-A,2460
25
- nucliadb_models/vectors.py,sha256=_Z157PojPIwoeF5LStO0gz8IwxKy2styHjhdBkLd_44,1329
26
- nucliadb_models/vectorsets.py,sha256=XAgg9DfdfLYpfLh9OepJ_KPH0_RqRQNpVZJr74UnNh0,788
27
- nucliadb_models/writer.py,sha256=6hBH32XLsXUqeNWVQlzZ6X-0dLFVgkbxaMSf_s2Cga4,8237
28
- nucliadb_models/agents/ingestion.py,sha256=W9cJ0dQT_1vPcjeJ4_Fjb8DylnhQ6qqZrY4v8x1RqUs,3093
29
- nucliadb_models/graph/__init__.py,sha256=X538kZPZnndmQeEtnzzPv1hYVGUTDe9U1O7UmAqqxXU,645
30
- nucliadb_models/graph/requests.py,sha256=ppQ7cOnybvrw1wGC7qDps-182PfmicWU6-4vLRfK16w,7169
31
- nucliadb_models/graph/responses.py,sha256=Sdq8OgFAL1YT-1lJyLLrkqcScvj7YTEqAUwQ-kFAk9M,1399
32
- nucliadb_models/internal/__init__.py,sha256=zG33bUz1rHFPtvqQPWn4rDwBJt3FJodGuQYD45quiQg,583
33
- nucliadb_models/internal/predict.py,sha256=Pnx6MmLfK65eExe1XnVxqmSlvMwdowewwks9BOEoqMw,2029
34
- nucliadb_models/internal/shards.py,sha256=__y1OZtWGiNcPQEWfSFOj8yw458WGi7mM4vZe0K-L1Y,1691
35
- nucliadb_models-6.8.1.post4983.dist-info/METADATA,sha256=1_uAWLGHp8_M1Y91Byb5aHUT9b0izZgsecCB9-d4t6Y,794
36
- nucliadb_models-6.8.1.post4983.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
37
- nucliadb_models-6.8.1.post4983.dist-info/top_level.txt,sha256=UrY1I8oeovIRwkXLYplssTrxQdUjhSEFDFbnwaIV3tA,16
38
- nucliadb_models-6.8.1.post4983.dist-info/RECORD,,