nucliadb-protos 6.8.1.post4969__py3-none-any.whl → 6.9.7.post5553__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-protos might be problematic. Click here for more details.

@@ -151,6 +151,8 @@ from nucliadb_protos.resources_pb2 import (
151
151
  Representation as Representation,
152
152
  RowsPreview as RowsPreview,
153
153
  Sentence as Sentence,
154
+ SplitMetadata as SplitMetadata,
155
+ SplitsMetadata as SplitsMetadata,
154
156
  TEXT as TEXT,
155
157
  UserFieldMetadata as UserFieldMetadata,
156
158
  UserMetadata as UserMetadata,
@@ -186,16 +188,11 @@ class WriterStub:
186
188
  nucliadb_protos.writer_pb2.OpStatusWriter,
187
189
  ]
188
190
 
189
- NewEntitiesGroup: grpc.UnaryUnaryMultiCallable[
190
- nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
191
- nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
192
- ]
193
- """Entities"""
194
-
195
191
  GetEntities: grpc.UnaryUnaryMultiCallable[
196
192
  nucliadb_protos.writer_pb2.GetEntitiesRequest,
197
193
  nucliadb_protos.writer_pb2.GetEntitiesResponse,
198
194
  ]
195
+ """Entities"""
199
196
 
200
197
  GetEntitiesGroup: grpc.UnaryUnaryMultiCallable[
201
198
  nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
@@ -207,21 +204,6 @@ class WriterStub:
207
204
  nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
208
205
  ]
209
206
 
210
- SetEntities: grpc.UnaryUnaryMultiCallable[
211
- nucliadb_protos.writer_pb2.SetEntitiesRequest,
212
- nucliadb_protos.writer_pb2.OpStatusWriter,
213
- ]
214
-
215
- UpdateEntitiesGroup: grpc.UnaryUnaryMultiCallable[
216
- nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
217
- nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
218
- ]
219
-
220
- DelEntities: grpc.UnaryUnaryMultiCallable[
221
- nucliadb_protos.writer_pb2.DelEntitiesRequest,
222
- nucliadb_protos.writer_pb2.OpStatusWriter,
223
- ]
224
-
225
207
  Status: grpc.UnaryUnaryMultiCallable[
226
208
  nucliadb_protos.writer_pb2.WriterStatusRequest,
227
209
  nucliadb_protos.writer_pb2.WriterStatusResponse,
@@ -273,16 +255,11 @@ class WriterAsyncStub:
273
255
  nucliadb_protos.writer_pb2.OpStatusWriter,
274
256
  ]
275
257
 
276
- NewEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
277
- nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
278
- nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
279
- ]
280
- """Entities"""
281
-
282
258
  GetEntities: grpc.aio.UnaryUnaryMultiCallable[
283
259
  nucliadb_protos.writer_pb2.GetEntitiesRequest,
284
260
  nucliadb_protos.writer_pb2.GetEntitiesResponse,
285
261
  ]
262
+ """Entities"""
286
263
 
287
264
  GetEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
288
265
  nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
@@ -294,21 +271,6 @@ class WriterAsyncStub:
294
271
  nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
295
272
  ]
296
273
 
297
- SetEntities: grpc.aio.UnaryUnaryMultiCallable[
298
- nucliadb_protos.writer_pb2.SetEntitiesRequest,
299
- nucliadb_protos.writer_pb2.OpStatusWriter,
300
- ]
301
-
302
- UpdateEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
303
- nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
304
- nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
305
- ]
306
-
307
- DelEntities: grpc.aio.UnaryUnaryMultiCallable[
308
- nucliadb_protos.writer_pb2.DelEntitiesRequest,
309
- nucliadb_protos.writer_pb2.OpStatusWriter,
310
- ]
311
-
312
274
  Status: grpc.aio.UnaryUnaryMultiCallable[
313
275
  nucliadb_protos.writer_pb2.WriterStatusRequest,
314
276
  nucliadb_protos.writer_pb2.WriterStatusResponse,
@@ -368,20 +330,13 @@ class WriterServicer(metaclass=abc.ABCMeta):
368
330
  context: _ServicerContext,
369
331
  ) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
370
332
 
371
- @abc.abstractmethod
372
- def NewEntitiesGroup(
373
- self,
374
- request: nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
375
- context: _ServicerContext,
376
- ) -> typing.Union[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse]]:
377
- """Entities"""
378
-
379
333
  @abc.abstractmethod
380
334
  def GetEntities(
381
335
  self,
382
336
  request: nucliadb_protos.writer_pb2.GetEntitiesRequest,
383
337
  context: _ServicerContext,
384
- ) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]: ...
338
+ ) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]:
339
+ """Entities"""
385
340
 
386
341
  @abc.abstractmethod
387
342
  def GetEntitiesGroup(
@@ -397,27 +352,6 @@ class WriterServicer(metaclass=abc.ABCMeta):
397
352
  context: _ServicerContext,
398
353
  ) -> typing.Union[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse]]: ...
399
354
 
400
- @abc.abstractmethod
401
- def SetEntities(
402
- self,
403
- request: nucliadb_protos.writer_pb2.SetEntitiesRequest,
404
- context: _ServicerContext,
405
- ) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
406
-
407
- @abc.abstractmethod
408
- def UpdateEntitiesGroup(
409
- self,
410
- request: nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
411
- context: _ServicerContext,
412
- ) -> typing.Union[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse]]: ...
413
-
414
- @abc.abstractmethod
415
- def DelEntities(
416
- self,
417
- request: nucliadb_protos.writer_pb2.DelEntitiesRequest,
418
- context: _ServicerContext,
419
- ) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
420
-
421
355
  @abc.abstractmethod
422
356
  def Status(
423
357
  self,
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nucliadb_protos
3
- Version: 6.8.1.post4969
3
+ Version: 6.9.7.post5553
4
4
  Summary: Protobuf definitions for nucliadb
5
5
  Author-Email: Nuclia <nucliadb@nuclia.com>
6
6
  License-Expression: Apache-2.0
7
7
  Classifier: Development Status :: 4 - Beta
8
8
  Classifier: Programming Language :: Python
9
- Classifier: Programming Language :: Python :: 3.9
10
9
  Classifier: Programming Language :: Python :: 3.10
11
10
  Classifier: Programming Language :: Python :: 3.11
12
11
  Classifier: Programming Language :: Python :: 3.12
@@ -14,8 +13,8 @@ Classifier: Programming Language :: Python :: 3 :: Only
14
13
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
15
14
  Project-URL: Homepage, https://nuclia.com
16
15
  Project-URL: Repository, https://github.com/nuclia/nucliadb
17
- Requires-Python: <4,>=3.9
18
- Requires-Dist: protobuf>=5
19
- Requires-Dist: mypy-protobuf>=3.4.0
20
- Requires-Dist: types-protobuf>=5
16
+ Requires-Python: <4,>=3.10
17
+ Requires-Dist: protobuf<7.0.0,>=6.31.1
18
+ Provides-Extra: grpc
19
+ Requires-Dist: grpcio>=1.76.0; extra == "grpc"
21
20
 
@@ -0,0 +1,37 @@
1
+ .gitignore,sha256=zbyuFRBda3geYggTx5x-hodA1OnMU85vX8u8Ejh630s,2
2
+ build.py,sha256=h-aaVtinmScEf_OztPYidglweRx8SEu5yrFmu6NGDt4,1988
3
+ nucliadb_protos-6.9.7.post5553.dist-info/METADATA,sha256=fA1t61D6IvB8pr45Uu-qX-_PXhaMMyjVgX_hwNFelWM,790
4
+ nucliadb_protos-6.9.7.post5553.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
5
+ nucliadb_protos-6.9.7.post5553.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
6
+ nucliadb_protos/audit_pb2.py,sha256=8d6gSTgXc1s3GFclf389S0C96OAN2CXykPpOjtxQ5-E,8908
7
+ nucliadb_protos/audit_pb2.pyi,sha256=kIPFiMONnk5dO1YpPXsX4euADG8JR6waHfESSX5qQ7g,22719
8
+ nucliadb_protos/backups_pb2.py,sha256=VvfDZQoMkhLJ376Kxptsei9421ookdpnAxnUz5SV9Rk,3676
9
+ nucliadb_protos/backups_pb2.pyi,sha256=OU3jM6utKOuYS0sEqP6ajEEMkl-dYQv8muJZ21-oX7I,6938
10
+ nucliadb_protos/backups_pb2_grpc.py,sha256=IJF5ER24ztwzjtFTuUX05ExXMDFRcb3a25X9EPOb4xM,903
11
+ nucliadb_protos/backups_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
12
+ nucliadb_protos/dataset_pb2.py,sha256=4qfCreuTv9hKNeBn_g66U0Pb9n9a2rULwS7POMzpCPA,7648
13
+ nucliadb_protos/dataset_pb2.pyi,sha256=rzzXFjtp8FvBsEmo5gOAwbyOEdFZR1JKSmlKhrwvDzQ,22184
14
+ nucliadb_protos/kb_usage_pb2.py,sha256=KNpXTXep_D3nySMbeO-CoOauJjctS8fx5zuLZZnKAfQ,6393
15
+ nucliadb_protos/kb_usage_pb2.pyi,sha256=gsmirQlQYQX0QlMTcouOFPiR8PaBjm8fQU24tritPTA,16412
16
+ nucliadb_protos/knowledgebox_pb2.py,sha256=A7Y4WKUooAw98qsvIDgI5oTUvAKdwEBv03s1nXutN3s,16639
17
+ nucliadb_protos/knowledgebox_pb2.pyi,sha256=ceTOGBdl8lyMVyadYAGFms2VsNloh4qQ9KQxHjZy9d0,40910
18
+ nucliadb_protos/migrations_pb2.py,sha256=FBB2yxjIb_MX1TkI6ICJWNQFK-WIXrFSBbvaYheJaoY,1407
19
+ nucliadb_protos/migrations_pb2.pyi,sha256=K1doWaVBMDlpF1pHBdZd97AZKBKynJz6C7uHDYhaJs4,844
20
+ nucliadb_protos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ nucliadb_protos/resources_pb2.py,sha256=hvuIZxhP41BNIu20ZtVxLWcju-fb_tnbFkqbj3jJNOU,38133
22
+ nucliadb_protos/resources_pb2.pyi,sha256=FtHOwPCxczp6Ys3V3p3T4RaYfg02FFvBbyJkFhmCfKE,100063
23
+ nucliadb_protos/standalone_pb2.py,sha256=PxTfgiM_Zs8QyprY5U3OEn51C36YLQWOaNim6hctlTA,2447
24
+ nucliadb_protos/standalone_pb2.pyi,sha256=t5qzk1ZPg-98lAqDIsp3aE_8fzMOtI0J2Emex1b79xg,2533
25
+ nucliadb_protos/standalone_pb2_grpc.py,sha256=tnfokmouDnQsdGZMquNAUWcl8Q8dM4oBBcBBWMSBFGA,5594
26
+ nucliadb_protos/standalone_pb2_grpc.pyi,sha256=0gHvBKQW5abeoK64pVfBekpK1o_lMg89gPdd3ar8Rco,2145
27
+ nucliadb_protos/train_pb2.py,sha256=SLNg829Jxequ3D--fxLPGHCE2BNmx7Bd37krBm2sL4Q,12484
28
+ nucliadb_protos/train_pb2.pyi,sha256=26k4EI5EQuL2TiPfdDvJs8l7SiAyL4DIJDX8Yo200mU,28070
29
+ nucliadb_protos/train_pb2_grpc.py,sha256=GwrVAoe71jMeV3iGzbQJ2uPqsOhXcNhMF5qBCYoiB14,16142
30
+ nucliadb_protos/train_pb2_grpc.pyi,sha256=rlExMq9yCpdNaK2Axi4WwEvC3kBNH4hAF7d9DrmS90I,11740
31
+ nucliadb_protos/utils_pb2.py,sha256=MdPeSoU6smU-Twldgf2UM_1Rw317Wh6B5-uEP9X1pyU,6887
32
+ nucliadb_protos/utils_pb2.pyi,sha256=gzyEM2t9ttnNyh_nciKfWDytsW8n3PmiQhacGXDyFK4,18339
33
+ nucliadb_protos/writer_pb2.py,sha256=rSgiPqxTix_hgGxXq4L50DIQB38dmb94Dq2eWjpc6FE,24002
34
+ nucliadb_protos/writer_pb2.pyi,sha256=X22AjUvxGjQBR3NSEv9pKBdEx1g58Xls1aPDNBkqTuQ,61943
35
+ nucliadb_protos/writer_pb2_grpc.py,sha256=ca1SxDoGlUJmQdmTrYw83ajun511GtgiJn4R3tiHYyQ,25838
36
+ nucliadb_protos/writer_pb2_grpc.pyi,sha256=A0eJCTGiMrS6lMsk7s5TBAuyx-RZMglNfU5jbW0KOYw,14976
37
+ nucliadb_protos-6.9.7.post5553.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.4.5)
2
+ Generator: pdm-backend (2.4.6)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,37 +0,0 @@
1
- .gitignore,sha256=zbyuFRBda3geYggTx5x-hodA1OnMU85vX8u8Ejh630s,2
2
- build.py,sha256=h-aaVtinmScEf_OztPYidglweRx8SEu5yrFmu6NGDt4,1988
3
- nucliadb_protos-6.8.1.post4969.dist-info/METADATA,sha256=gk0WUpY2vXIPgdCtaWlwHYL2ZDdxaXgZ9bSQJBB2kKE,828
4
- nucliadb_protos-6.8.1.post4969.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
5
- nucliadb_protos-6.8.1.post4969.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
6
- nucliadb_protos/audit_pb2.py,sha256=eh2rN_iVpDTJkHsqgc7jz3TSTBu6dgj5XCQQPj0ZH0E,8908
7
- nucliadb_protos/audit_pb2.pyi,sha256=kIPFiMONnk5dO1YpPXsX4euADG8JR6waHfESSX5qQ7g,22719
8
- nucliadb_protos/backups_pb2.py,sha256=CYNHQ6u2m6LBTuzdCwvc3L3SotD2dbOE1w8D_0CwidU,3676
9
- nucliadb_protos/backups_pb2.pyi,sha256=OU3jM6utKOuYS0sEqP6ajEEMkl-dYQv8muJZ21-oX7I,6938
10
- nucliadb_protos/backups_pb2_grpc.py,sha256=rfQlAMHvnbTkUr-3AG1GdBkW8oN37mdYTUA50rWuOaA,904
11
- nucliadb_protos/backups_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
12
- nucliadb_protos/dataset_pb2.py,sha256=kci_RjD_fQlfS7_lZKypmNruKkrVA_hUGTFkMv2Tg74,7648
13
- nucliadb_protos/dataset_pb2.pyi,sha256=p4foSgu_u2taIL9nf-A2KtsRG8LmQTu0HC5rMXRefhs,22110
14
- nucliadb_protos/kb_usage_pb2.py,sha256=8T2t7lF-iWBFPWc2bs8tspDB9MR8jQEqDuus-_9RYp0,6360
15
- nucliadb_protos/kb_usage_pb2.pyi,sha256=egxQoXOLDUcuOpYnkNIyk698rKGeopRBtKX6brhglH8,16321
16
- nucliadb_protos/knowledgebox_pb2.py,sha256=_8WeoW1NZTHyxryOrvUx7sMaSVWFYWqXEvl2_dpfgds,16855
17
- nucliadb_protos/knowledgebox_pb2.pyi,sha256=gPpknorc6L2B0_-SzVKG8hOpgxKHGFMFINXqHgGiI-c,40963
18
- nucliadb_protos/migrations_pb2.py,sha256=SRLR8yH9stiYQJ6fLFBgsj7h_5quH6OEx8Y1EtyfQBY,1407
19
- nucliadb_protos/migrations_pb2.pyi,sha256=K1doWaVBMDlpF1pHBdZd97AZKBKynJz6C7uHDYhaJs4,844
20
- nucliadb_protos/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- nucliadb_protos/resources_pb2.py,sha256=2BVsv_w-DBoock8CEsBqboOmCTgPnve0W3AXc-tS7Ak,37351
22
- nucliadb_protos/resources_pb2.pyi,sha256=CaCoOdFIMd_5-quJtYYzxgmB-5IkZX0Z-3cKkNXvGIE,98292
23
- nucliadb_protos/standalone_pb2.py,sha256=h0-EuNCarB-RBqmqJMt4GNnXDxd0bbHTdW2q16hsdiQ,2447
24
- nucliadb_protos/standalone_pb2.pyi,sha256=t5qzk1ZPg-98lAqDIsp3aE_8fzMOtI0J2Emex1b79xg,2533
25
- nucliadb_protos/standalone_pb2_grpc.py,sha256=Fm_jw7C1fkpMz9VFIuLHE1y6UxQpFlzSmJBzthtgb-c,5595
26
- nucliadb_protos/standalone_pb2_grpc.pyi,sha256=0gHvBKQW5abeoK64pVfBekpK1o_lMg89gPdd3ar8Rco,2145
27
- nucliadb_protos/train_pb2.py,sha256=H-ORaT2z0W97_eXok1sojjnlueXhc1T6OIfIPeHT634,12484
28
- nucliadb_protos/train_pb2.pyi,sha256=cQ0_jDTdALF-_KvN3VAR1K-77A-uNMuusXu8Z60KBz8,28378
29
- nucliadb_protos/train_pb2_grpc.py,sha256=IZAwhOzKrbrVZSq55_45TIm3BywGmlWmWVM3iadhQl8,16143
30
- nucliadb_protos/train_pb2_grpc.pyi,sha256=liTLwIyE9JuJpJZL4c0g4M2oF89u6mBvSpV8Ik1Upfk,12048
31
- nucliadb_protos/utils_pb2.py,sha256=DjWGFcZquXuJoG-wRSMxKUT0OExc9NaYvoT_w4lqFbc,7076
32
- nucliadb_protos/utils_pb2.pyi,sha256=_ebOQU711CHIpXRQ9nJ4Z1I410wVVSYmcrgU1Cw1B-o,18970
33
- nucliadb_protos/writer_pb2.py,sha256=ZQ7dJ_ESjsFnLmDCL4SDRxZ5E3G7BuzN-XtcfCV6_lg,28485
34
- nucliadb_protos/writer_pb2.pyi,sha256=hUXGtMSkbf-0-Dyj64_JaIp_9Lg8EGN5WCXKHJyT30g,71982
35
- nucliadb_protos/writer_pb2_grpc.py,sha256=08SyrUd6XU-JepqNQYtyf1S0-UWRIrXLTC32CJyP0cE,33238
36
- nucliadb_protos/writer_pb2_grpc.pyi,sha256=U1_V1kRdMMUL2XbYcRQ_N9Pa-V0W9AelXZ9Lo1sUO2E,17564
37
- nucliadb_protos-6.8.1.post4969.dist-info/RECORD,,