nucliadb 6.3.1.post3593__py3-none-any.whl → 6.3.3.post3608__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.
@@ -31,7 +31,7 @@ from nucliadb.backups.settings import settings
31
31
  from nucliadb.common.context import ApplicationContext
32
32
  from nucliadb.export_import.utils import (
33
33
  import_binary,
34
- import_broker_message,
34
+ restore_broker_message,
35
35
  set_entities_groups,
36
36
  set_labels,
37
37
  )
@@ -81,7 +81,7 @@ async def restore_resources(context: ApplicationContext, kbid: str, backup_id: s
81
81
  start=last_restored,
82
82
  ):
83
83
  key = object_info.name
84
- resource_id = key.split("/")[-1].rstrip(".tar")
84
+ resource_id = key.split("/")[-1].split(".tar")[0]
85
85
  tasks.append(asyncio.create_task(restore_resource(context, kbid, backup_id, resource_id)))
86
86
  if len(tasks) > settings.restore_resources_concurrency:
87
87
  await asyncio.gather(*tasks)
@@ -235,8 +235,8 @@ async def restore_resource(context: ApplicationContext, kbid: str, backup_id: st
235
235
  extra={"item_type": type(item), kbid: kbid, resource_id: resource_id},
236
236
  )
237
237
  continue
238
-
239
- await import_broker_message(context, kbid, bm)
238
+ if bm is not None:
239
+ await restore_broker_message(context, kbid, bm)
240
240
 
241
241
 
242
242
  async def restore_labels(context: ApplicationContext, kbid: str, backup_id: str):
@@ -39,6 +39,7 @@ from nucliadb_protos import knowledgebox_pb2 as kb_pb2
39
39
  from nucliadb_protos import resources_pb2, writer_pb2
40
40
  from nucliadb_utils.const import Streams
41
41
  from nucliadb_utils.transaction import MaxTransactionSizeExceededError
42
+ from nucliadb_utils.utilities import get_ingest
42
43
 
43
44
  BinaryStream = AsyncIterator[bytes]
44
45
  BinaryStreamGenerator = Callable[[int], BinaryStream]
@@ -72,6 +73,24 @@ async def import_broker_message(
72
73
  await transaction_commit(context, pb, partition)
73
74
 
74
75
 
76
+ async def restore_broker_message(
77
+ context: ApplicationContext, kbid: str, bm: writer_pb2.BrokerMessage
78
+ ) -> None:
79
+ bm.kbid = kbid
80
+
81
+ # First, ingest the broker message writer part synchronously
82
+ async def ingest_request_stream() -> AsyncIterator[writer_pb2.BrokerMessage]:
83
+ yield get_writer_bm(bm)
84
+
85
+ response = await get_ingest().ProcessMessage(ingest_request_stream()) # type: ignore
86
+ assert response.status == writer_pb2.OpStatusWriter.Status.OK, "Failed to process broker message"
87
+
88
+ # Then enqueue the processor part asynchronously
89
+ processor_bm = get_processor_bm(bm)
90
+ partition = context.partitioning.generate_partition(kbid, bm.uuid)
91
+ await transaction_commit(context, processor_bm, partition)
92
+
93
+
75
94
  async def transaction_commit(
76
95
  context: ApplicationContext, bm: writer_pb2.BrokerMessage, partition: int
77
96
  ) -> None:
nucliadb/ingest/app.py CHANGED
@@ -33,6 +33,8 @@ from nucliadb.ingest.partitions import assign_partitions
33
33
  from nucliadb.ingest.processing import start_processing_engine, stop_processing_engine
34
34
  from nucliadb.ingest.service import start_grpc
35
35
  from nucliadb.ingest.settings import settings
36
+ from nucliadb.ingest.utils import start_ingest as start_ingest_utility
37
+ from nucliadb.ingest.utils import stop_ingest as stop_ingest_utility
36
38
  from nucliadb_telemetry import errors
37
39
  from nucliadb_telemetry.logs import setup_logging
38
40
  from nucliadb_telemetry.utils import setup_telemetry
@@ -151,6 +153,7 @@ async def main_subscriber_workers(): # pragma: no cover
151
153
  shard_creator_closer = await consumer_service.start_shard_creator()
152
154
  materializer_closer = await consumer_service.start_materializer()
153
155
 
156
+ await start_ingest_utility()
154
157
  exports_consumer = get_exports_consumer()
155
158
  await exports_consumer.initialize(context)
156
159
  imports_consumer = get_imports_consumer()
@@ -158,19 +161,18 @@ async def main_subscriber_workers(): # pragma: no cover
158
161
  backup_consumers_finalizers = await initialize_backup_consumers(context)
159
162
 
160
163
  await run_until_exit(
161
- [
164
+ backup_consumers_finalizers
165
+ + [
162
166
  imports_consumer.finalize,
163
167
  exports_consumer.finalize,
164
- auditor_closer,
165
- shard_creator_closer,
168
+ stop_ingest_utility,
166
169
  materializer_closer,
167
- metrics_server.shutdown,
170
+ shard_creator_closer,
171
+ auditor_closer,
168
172
  grpc_health_finalizer,
173
+ metrics_server.shutdown,
169
174
  context.finalize,
170
- exports_consumer.finalize,
171
- imports_consumer.finalize,
172
175
  ]
173
- + backup_consumers_finalizers
174
176
  + finalizers
175
177
  )
176
178
 
@@ -202,9 +202,9 @@ class WriterServicer(writer_pb2_grpc.WriterServicer):
202
202
  return DeleteKnowledgeBoxResponse(status=KnowledgeBoxResponseStatus.ERROR)
203
203
  return DeleteKnowledgeBoxResponse(status=KnowledgeBoxResponseStatus.OK)
204
204
 
205
- async def ProcessMessage( # type: ignore
205
+ async def ProcessMessage(
206
206
  self, request_stream: AsyncIterator[BrokerMessage], context=None
207
- ):
207
+ ) -> OpStatusWriter:
208
208
  response = OpStatusWriter()
209
209
  async for message in request_stream:
210
210
  try:
@@ -75,9 +75,7 @@ async def catalog_get(
75
75
  response: Response,
76
76
  kbid: str,
77
77
  query: str = fastapi_query(SearchParamDefaults.query),
78
- filter_expression: Optional[str] = fastapi_query(
79
- SearchParamDefaults.catalog_filter_expression, include_in_schema=False
80
- ),
78
+ filter_expression: Optional[str] = fastapi_query(SearchParamDefaults.catalog_filter_expression),
81
79
  filters: list[str] = fastapi_query(SearchParamDefaults.filters),
82
80
  faceted: list[str] = fastapi_query(SearchParamDefaults.faceted),
83
81
  sort_field: SortField = fastapi_query(SearchParamDefaults.sort_field),
@@ -81,9 +81,7 @@ async def find_knowledgebox(
81
81
  response: Response,
82
82
  kbid: str,
83
83
  query: str = fastapi_query(SearchParamDefaults.query),
84
- filter_expression: Optional[str] = fastapi_query(
85
- SearchParamDefaults.filter_expression, include_in_schema=False
86
- ),
84
+ filter_expression: Optional[str] = fastapi_query(SearchParamDefaults.filter_expression),
87
85
  fields: list[str] = fastapi_query(SearchParamDefaults.fields),
88
86
  filters: list[str] = fastapi_query(SearchParamDefaults.filters),
89
87
  top_k: Optional[int] = fastapi_query(SearchParamDefaults.top_k),
@@ -62,9 +62,7 @@ async def resource_search(
62
62
  kbid: str,
63
63
  query: str,
64
64
  rid: str,
65
- filter_expression: Optional[str] = fastapi_query(
66
- SearchParamDefaults.filter_expression, include_in_schema=False
67
- ),
65
+ filter_expression: Optional[str] = fastapi_query(SearchParamDefaults.filter_expression),
68
66
  fields: list[str] = fastapi_query(SearchParamDefaults.fields),
69
67
  filters: list[str] = fastapi_query(SearchParamDefaults.filters),
70
68
  faceted: list[str] = fastapi_query(SearchParamDefaults.faceted),
@@ -103,9 +103,7 @@ async def search_knowledgebox(
103
103
  response: Response,
104
104
  kbid: str,
105
105
  query: str = fastapi_query(SearchParamDefaults.query),
106
- filter_expression: Optional[str] = fastapi_query(
107
- SearchParamDefaults.filter_expression, include_in_schema=False
108
- ),
106
+ filter_expression: Optional[str] = fastapi_query(SearchParamDefaults.filter_expression),
109
107
  fields: list[str] = fastapi_query(SearchParamDefaults.fields),
110
108
  filters: list[str] = fastapi_query(SearchParamDefaults.filters),
111
109
  faceted: list[str] = fastapi_query(SearchParamDefaults.faceted),
@@ -22,6 +22,7 @@ from contextlib import asynccontextmanager
22
22
  from fastapi import FastAPI
23
23
 
24
24
  from nucliadb.common.cluster.utils import setup_cluster, teardown_cluster
25
+ from nucliadb.common.context.fastapi import inject_app_context
25
26
  from nucliadb.common.maindb.utils import setup_driver
26
27
  from nucliadb.common.nidx import start_nidx_utility
27
28
  from nucliadb.ingest.utils import start_ingest, stop_ingest
@@ -51,7 +52,8 @@ async def lifespan(app: FastAPI):
51
52
 
52
53
  await start_audit_utility(SERVICE_NAME)
53
54
 
54
- yield
55
+ async with inject_app_context(app):
56
+ yield
55
57
 
56
58
  await stop_ingest()
57
59
  if get_utility(Utility.PARTITION):
@@ -105,7 +105,7 @@ class NatsTaskConsumer(Generic[MsgType]):
105
105
 
106
106
  async def _subscription_worker_as_task(self, msg: Msg):
107
107
  seqid = int(msg.reply.split(".")[5])
108
- task_name = f"NatsTaskConsumer({self.name}, msg={seqid})"
108
+ task_name = f"NatsTaskConsumer({self.name}, stream={self.stream.name}, subject={self.consumer.subject}, seqid={seqid})"
109
109
  task = asyncio.create_task(self.subscription_worker(msg), name=task_name)
110
110
  task.add_done_callback(self._running_tasks_remove)
111
111
  self.running_tasks.append(task)
@@ -22,6 +22,7 @@ from contextlib import asynccontextmanager
22
22
 
23
23
  from fastapi import FastAPI
24
24
 
25
+ from nucliadb.common.context.fastapi import inject_app_context
25
26
  from nucliadb.common.nidx import start_nidx_utility, stop_nidx_utility
26
27
  from nucliadb.train import SERVICE_NAME
27
28
  from nucliadb.train.utils import (
@@ -42,7 +43,8 @@ async def lifespan(app: FastAPI):
42
43
  await start_train_grpc(SERVICE_NAME)
43
44
  await start_audit_utility(SERVICE_NAME)
44
45
 
45
- yield
46
+ async with inject_app_context(app):
47
+ yield
46
48
 
47
49
  await stop_audit_utility()
48
50
  await stop_train_grpc()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nucliadb
3
- Version: 6.3.1.post3593
3
+ Version: 6.3.3.post3608
4
4
  Summary: NucliaDB
5
5
  Author-email: Nuclia <nucliadb@nuclia.com>
6
6
  License: AGPL
@@ -20,11 +20,11 @@ Classifier: Programming Language :: Python :: 3.12
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
21
  Requires-Python: <4,>=3.9
22
22
  Description-Content-Type: text/markdown
23
- Requires-Dist: nucliadb-telemetry[all]>=6.3.1.post3593
24
- Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.3.1.post3593
25
- Requires-Dist: nucliadb-protos>=6.3.1.post3593
26
- Requires-Dist: nucliadb-models>=6.3.1.post3593
27
- Requires-Dist: nidx-protos>=6.3.1.post3593
23
+ Requires-Dist: nucliadb-telemetry[all]>=6.3.3.post3608
24
+ Requires-Dist: nucliadb-utils[cache,fastapi,storages]>=6.3.3.post3608
25
+ Requires-Dist: nucliadb-protos>=6.3.3.post3608
26
+ Requires-Dist: nucliadb-models>=6.3.3.post3608
27
+ Requires-Dist: nidx-protos>=6.3.3.post3608
28
28
  Requires-Dist: nucliadb-admin-assets>=1.0.0.post1224
29
29
  Requires-Dist: nuclia-models>=0.24.2
30
30
  Requires-Dist: uvicorn
@@ -44,7 +44,7 @@ nucliadb/backups/const.py,sha256=9vPAhLxQO_gNAjSdPxWuv3V66s9WcdpjOQ89CZlfmuk,189
44
44
  nucliadb/backups/create.py,sha256=x5Ezd1p8qqlcn-srbE_iFxTwEEjycKWhTezUIkXL-oo,11230
45
45
  nucliadb/backups/delete.py,sha256=1rnBhVUGYYZJXSZUrrgYMDZ5NyswEWkIA-G-crRCyHk,2404
46
46
  nucliadb/backups/models.py,sha256=-hITU4Mv6AxePu12toBu_fjpEv6vVGcwNVxV22O9jQA,1273
47
- nucliadb/backups/restore.py,sha256=BIsJPXDKIsobO0C2mX6g9WUysKAKpJ9RX-DrxqqZSnY,10123
47
+ nucliadb/backups/restore.py,sha256=YD3Bbo9ry4YLMM6imB-DXbOAMXfGxVzJtTAAUFDvB0I,10153
48
48
  nucliadb/backups/settings.py,sha256=SyzsInj1BRbBI0atg5IXWbMbOZ_eVg4eSQ3IcnUhCxQ,1357
49
49
  nucliadb/backups/tasks.py,sha256=4_kOVJ2yCwMvDEpzJgTuTt75TNlpq5woyw9sTAcaSkw,4194
50
50
  nucliadb/backups/utils.py,sha256=_Vogjqcru5oqNZM-bZ0q7Ju79Bv1PD-LVFEa7Z-Q13I,1261
@@ -109,9 +109,9 @@ nucliadb/export_import/exporter.py,sha256=k2QVx1EjqFlDYiggriWiEJzwtMXzHbldsqWdpG
109
109
  nucliadb/export_import/importer.py,sha256=v5cq9Nn8c2zrY_K_00mydR52f8mdFxR7tLdtNLQ0qvk,4229
110
110
  nucliadb/export_import/models.py,sha256=dbjScNkiMRv4X3Ktudy1JRliD25bfoDTy3JmEZgQSCc,2121
111
111
  nucliadb/export_import/tasks.py,sha256=DWbdqY97ffoyfipelGXz3Jqz1iam6JCjQSh367Fc3NA,2947
112
- nucliadb/export_import/utils.py,sha256=iAQAjYuNx0dhM2b5-1A0NEs8tSRsznuT-izysUrTwS0,19986
112
+ nucliadb/export_import/utils.py,sha256=DlGUHaqT43b3jG9U-vZ48GpC4O2OgD2WSP_0-hrYW9k,20774
113
113
  nucliadb/ingest/__init__.py,sha256=fsw3C38VP50km3R-nHL775LNGPpJ4JxqXJ2Ib1f5SqE,1011
114
- nucliadb/ingest/app.py,sha256=rX1KE5vsAzG9hlArBk8WE2SOlvdYylcb-jNkMQNPJdQ,7407
114
+ nucliadb/ingest/app.py,sha256=TaVgh5B2riFVmcsrbPb7a5YCzmnybjx-NK0BXgTwGAY,7535
115
115
  nucliadb/ingest/partitions.py,sha256=2NIhMYbNT0TNBL6bX1UMSi7vxFGICstCKEqsB0TXHOE,2410
116
116
  nucliadb/ingest/processing.py,sha256=8OggvuxNzktTTKDTUwsIuazhDParEWhn46CBZaMYAy8,20659
117
117
  nucliadb/ingest/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -152,7 +152,7 @@ nucliadb/ingest/orm/processor/processor.py,sha256=wjZmfJumypdGoKVB0BEJ51ha3xNRs1
152
152
  nucliadb/ingest/orm/processor/sequence_manager.py,sha256=uqEphtI1Ir_yk9jRl2gPf7BlzzXWovbARY5MNZSBI_8,1704
153
153
  nucliadb/ingest/service/__init__.py,sha256=MME_G_ERxzJR6JW_hfE2qcfXpmpH1kdG-S0a-M0qRm8,2043
154
154
  nucliadb/ingest/service/exceptions.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
155
- nucliadb/ingest/service/writer.py,sha256=8oHJru1Yc8e05MXKmdQMbcNOzLHFFbWmHlJXIMjJcnY,22315
155
+ nucliadb/ingest/service/writer.py,sha256=duFp2EOA52Mkz8kJcV1apCDgsUmkwpwGuubVra5Aa7o,22317
156
156
  nucliadb/middleware/__init__.py,sha256=A8NBlBuEkunCFMKpR9gnfNELsVn0Plc55BIQMbWDM8Q,2202
157
157
  nucliadb/migrator/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
158
158
  nucliadb/migrator/command.py,sha256=dKbJ1tAmP6X4lMVRSSlz351euaqs2wBPpOczLjATUes,2089
@@ -188,7 +188,7 @@ nucliadb/reader/reader/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXM
188
188
  nucliadb/reader/reader/notifications.py,sha256=HVZNUlfbSuoZ9BsSs8wmzPeYurl0U0O2ooVlR9KSM3U,7792
189
189
  nucliadb/search/__init__.py,sha256=tnypbqcH4nBHbGpkINudhKgdLKpwXQCvDtPchUlsyY4,1511
190
190
  nucliadb/search/app.py,sha256=-WEX1AZRA8R_9aeOo9ovOTwjXW_7VfwWN7N2ccSoqXg,3387
191
- nucliadb/search/lifecycle.py,sha256=DW8v4WUi4rZqc7xTOi3rE67W7877WG7fH9oTZbolHdE,2099
191
+ nucliadb/search/lifecycle.py,sha256=V_Pj5PRP0yyDY8d5LytO4X8p9HhN7UomqRG6Ri0UaFA,2206
192
192
  nucliadb/search/openapi.py,sha256=t3Wo_4baTrfPftg2BHsyLWNZ1MYn7ZRdW7ht-wFOgRs,1016
193
193
  nucliadb/search/predict.py,sha256=z2-RkhMkH-5T6PtFkfESxNof07XiS5FxicLHPRyCUXc,22284
194
194
  nucliadb/search/predict_models.py,sha256=ZAe0dneUsPmV9uBar57cCFADCGOrYDsJHuqKlA5zWag,5937
@@ -199,21 +199,21 @@ nucliadb/search/utilities.py,sha256=9SsRDw0rJVXVoLBfF7rBb6q080h-thZc7u8uRcTiBeY,
199
199
  nucliadb/search/api/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
200
200
  nucliadb/search/api/v1/__init__.py,sha256=DH16OYnw9jQ38OpKlmdXeoq2j40ZPXZRtGvClKOkMhw,1239
201
201
  nucliadb/search/api/v1/ask.py,sha256=F2dR3-swb3Xz8MfZPYL3G65KY2R_mgef4YVBbu8kLi4,4352
202
- nucliadb/search/api/v1/catalog.py,sha256=MRiuawjKoWXdd-tptw8r8HyBhZ1JgdUYpau__69oij0,7709
202
+ nucliadb/search/api/v1/catalog.py,sha256=Nw4wIj4AjGp-p64FFVQFN4v2LFcV3A0UJIxfo3_XGmY,7670
203
203
  nucliadb/search/api/v1/feedback.py,sha256=kNLc4dHz2SXHzV0PwC1WiRAwY88fDptPcP-kO0q-FrQ,2620
204
- nucliadb/search/api/v1/find.py,sha256=l2dRg0eYngq52vyn9_z9iK7bdO7ufHQDnJWBZgMVrqY,9628
204
+ nucliadb/search/api/v1/find.py,sha256=z1mahccu5oZuyuibTD8wPoF8ySPAA58GkRiCZjRHK-s,9589
205
205
  nucliadb/search/api/v1/graph.py,sha256=5APs0-W-jNQfH-mRLrdRkk6B_mnsJxLb68t0NE_KZUk,4238
206
206
  nucliadb/search/api/v1/knowledgebox.py,sha256=rWhx3PYWryingu19qwwFDbVvVYynq5Ky23FSlzmTutQ,8721
207
207
  nucliadb/search/api/v1/predict_proxy.py,sha256=QrGzo0hKjtmyGZ6pjlJHYAh4hxwVUIOTcVcerRCw7eE,3047
208
208
  nucliadb/search/api/v1/router.py,sha256=mtT07rBZcVfpa49doaw9b1tj3sdi3qLH0gn9Io6NYM0,988
209
- nucliadb/search/api/v1/search.py,sha256=tv9WHdoXKcU0HQYjajh2PoG-IjlFxPOl2hyQkug2kco,14024
209
+ nucliadb/search/api/v1/search.py,sha256=4WDuY0LdxycWX960MGUV5Yojnq2V5A5hxDnfaEsTW9Q,13985
210
210
  nucliadb/search/api/v1/suggest.py,sha256=Pwyxyk3Vu7aKU8vl2_rKhuE40ngnjZwAXS1rAilPDtM,6506
211
211
  nucliadb/search/api/v1/summarize.py,sha256=VAHJvE6V3xUgEBfqNKhgoxmDqCvh30RnrEIBVhMcNLU,2499
212
212
  nucliadb/search/api/v1/utils.py,sha256=5Ve-frn7LAE2jqAgB85F8RSeqxDlyA08--gS-AdOLS4,1434
213
213
  nucliadb/search/api/v1/resource/__init__.py,sha256=cp15ZcFnHvpcu_5-aK2A4uUyvuZVV_MJn4bIXMa20ks,835
214
214
  nucliadb/search/api/v1/resource/ask.py,sha256=nsVzBSanSSlf0Ody6LSTjdEy75Vg283_YhbkAtWEjh8,3637
215
215
  nucliadb/search/api/v1/resource/ingestion_agents.py,sha256=fqqRCd8Wc9GciS5P98lcnihvTKStsZYYtOU-T1bc-6E,4771
216
- nucliadb/search/api/v1/resource/search.py,sha256=s_si6iilqhmopEQ5GG5c7C_4QV3X8QneQyS5zP0d22I,5228
216
+ nucliadb/search/api/v1/resource/search.py,sha256=yULbW3SQ9PjISw8ge-Ivgx6gxR3CJdVH8n-pXWJFgig,5189
217
217
  nucliadb/search/api/v1/resource/utils.py,sha256=-NjZqAQtFEXKpIh8ui5S26ItnJ5rzmmG0BHxGSS9QPw,1141
218
218
  nucliadb/search/requesters/__init__.py,sha256=itSI7dtTwFP55YMX4iK7JzdMHS5CQVUiB1XzQu4UBh8,833
219
219
  nucliadb/search/requesters/utils.py,sha256=BIJjfjJt3qClA6XRtqA7E5am5Re29CaY_R6QOuTG-24,7082
@@ -272,7 +272,7 @@ nucliadb/standalone/static/favicon.ico,sha256=96pKGp6Sx457JkTfjy1dtApMhkitixfU6i
272
272
  nucliadb/standalone/static/index.html,sha256=PEZfuEQFYnYACAL1ceN8xC0im8lBrUx838RkE8tbvgA,3833
273
273
  nucliadb/standalone/static/logo.svg,sha256=-wQqSvPGTdlKjUP6pHE6kiq005pgYjDzp9nPl0X71Mk,2639
274
274
  nucliadb/tasks/__init__.py,sha256=oFJ3A8HD7w11mBu-IixYE_KxA7juMGlYQb7YD_y6WPM,975
275
- nucliadb/tasks/consumer.py,sha256=xc0Ql3N1Iq52dJ3t4YYGJFj1NCQAly0J5W_brfLa_F8,6894
275
+ nucliadb/tasks/consumer.py,sha256=4CWfBdXVr2a25n7seldbQ0PaK0FcxJZuWgosU6aODS8,6956
276
276
  nucliadb/tasks/logger.py,sha256=C7keOEO_mjLVp5VbqAZ2QXfqVB2Hot7NgBlUP_SDSMw,924
277
277
  nucliadb/tasks/models.py,sha256=qrZKi5DNDQ07waMsp5L4_Fi7WRs57YiO-kmXlrBzEAA,1168
278
278
  nucliadb/tasks/producer.py,sha256=UnpJAzhj_GElsCoO5G6T4m6MshsgOaqR2tVzJmEta64,2625
@@ -284,7 +284,7 @@ nucliadb/tests/vectors.py,sha256=CcNKx-E8LPpyvRyljbmb-Tn_wST9Juw2CBoogWrKiTk,628
284
284
  nucliadb/train/__init__.py,sha256=NVwe5yULoHXb80itIJT8YJYEz2xbiOPQ7_OMys6XJw8,1301
285
285
  nucliadb/train/app.py,sha256=TiRttTvekLuZdIvi46E4HyuumDTkR4G4Luqq3fEdjes,2824
286
286
  nucliadb/train/generator.py,sha256=0_zqWsLUHmJZl0lXhGorO5CWSkl42-k78dqb1slZ5h0,3904
287
- nucliadb/train/lifecycle.py,sha256=7rW2Be9cMUg7-fY9JhC5krXBB7MDOM4BpfNRRO5IAec,1713
287
+ nucliadb/train/lifecycle.py,sha256=a96KuAVZ0sf9TVVW6v6szVXn2eGBaboszwnv_HdWiZk,1820
288
288
  nucliadb/train/models.py,sha256=BmgmMjDsu_1Ih5JDAqo6whhume90q0ASJcDP9dkMQm8,1198
289
289
  nucliadb/train/nodes.py,sha256=HROQMRw2g5sJTnuBagh3B0id3iWonRJ68tg3skOme9k,5748
290
290
  nucliadb/train/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -351,8 +351,8 @@ nucliadb/writer/tus/local.py,sha256=7jYa_w9b-N90jWgN2sQKkNcomqn6JMVBOVeDOVYJHto,
351
351
  nucliadb/writer/tus/s3.py,sha256=vF0NkFTXiXhXq3bCVXXVV-ED38ECVoUeeYViP8uMqcU,8357
352
352
  nucliadb/writer/tus/storage.py,sha256=ToqwjoYnjI4oIcwzkhha_MPxi-k4Jk3Lt55zRwaC1SM,2903
353
353
  nucliadb/writer/tus/utils.py,sha256=MSdVbRsRSZVdkaum69_0wku7X3p5wlZf4nr6E0GMKbw,2556
354
- nucliadb-6.3.1.post3593.dist-info/METADATA,sha256=jU-nHJGJbWgLgYiZlT1k8GatmOMazY89YO66_nL_N_k,4291
355
- nucliadb-6.3.1.post3593.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
356
- nucliadb-6.3.1.post3593.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
357
- nucliadb-6.3.1.post3593.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
358
- nucliadb-6.3.1.post3593.dist-info/RECORD,,
354
+ nucliadb-6.3.3.post3608.dist-info/METADATA,sha256=D39vPx8WWL01vqSIJ7XLuZ5j4QTwhJWsYECLccPs6lk,4291
355
+ nucliadb-6.3.3.post3608.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
356
+ nucliadb-6.3.3.post3608.dist-info/entry_points.txt,sha256=XqGfgFDuY3zXQc8ewXM2TRVjTModIq851zOsgrmaXx4,1268
357
+ nucliadb-6.3.3.post3608.dist-info/top_level.txt,sha256=hwYhTVnX7jkQ9gJCkVrbqEG1M4lT2F_iPQND1fCzF80,20
358
+ nucliadb-6.3.3.post3608.dist-info/RECORD,,