nucliadb-protos 6.3.6.post4063__py3-none-any.whl → 6.10.0.post5705__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.
- .gitignore +1 -0
- build.py +56 -0
- nucliadb_protos/audit_pb2.py +43 -46
- nucliadb_protos/audit_pb2.pyi +64 -13
- nucliadb_protos/backups_pb2.py +13 -3
- nucliadb_protos/backups_pb2_grpc.py +20 -0
- nucliadb_protos/dataset_pb2.py +13 -3
- nucliadb_protos/dataset_pb2.pyi +3 -0
- nucliadb_protos/kb_usage_pb2.py +20 -10
- nucliadb_protos/kb_usage_pb2.pyi +2 -0
- nucliadb_protos/knowledgebox_pb2.py +116 -114
- nucliadb_protos/knowledgebox_pb2.pyi +49 -28
- nucliadb_protos/migrations_pb2.py +13 -3
- nucliadb_protos/resources_pb2.py +239 -219
- nucliadb_protos/resources_pb2.pyi +100 -15
- nucliadb_protos/standalone_pb2.py +13 -3
- nucliadb_protos/standalone_pb2_grpc.py +49 -8
- nucliadb_protos/train_pb2.py +18 -40
- nucliadb_protos/train_pb2.pyi +6 -8
- nucliadb_protos/train_pb2_grpc.py +133 -32
- nucliadb_protos/train_pb2_grpc.pyi +6 -8
- nucliadb_protos/utils_pb2.py +18 -10
- nucliadb_protos/utils_pb2.pyi +0 -15
- nucliadb_protos/writer_pb2.py +140 -176
- nucliadb_protos/writer_pb2.pyi +40 -311
- nucliadb_protos/writer_pb2_grpc.py +204 -185
- nucliadb_protos/writer_pb2_grpc.pyi +11 -99
- {nucliadb_protos-6.3.6.post4063.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/METADATA +10 -10
- nucliadb_protos-6.10.0.post5705.dist-info/RECORD +37 -0
- {nucliadb_protos-6.3.6.post4063.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/WHEEL +1 -2
- nucliadb_protos-6.10.0.post5705.dist-info/entry_points.txt +4 -0
- nucliadb_protos/__init__.py +0 -0
- nucliadb_protos/nodereader_pb2.py +0 -187
- nucliadb_protos/nodereader_pb2.pyi +0 -1715
- nucliadb_protos/nodereader_pb2_grpc.py +0 -438
- nucliadb_protos/nodereader_pb2_grpc.pyi +0 -288
- nucliadb_protos/noderesources_pb2.py +0 -145
- nucliadb_protos/noderesources_pb2.pyi +0 -993
- nucliadb_protos/nodewriter_pb2.py +0 -80
- nucliadb_protos/nodewriter_pb2.pyi +0 -348
- nucliadb_protos/nodewriter_pb2_grpc.py +0 -430
- nucliadb_protos/nodewriter_pb2_grpc.pyi +0 -256
- nucliadb_protos-6.3.6.post4063.dist-info/RECORD +0 -46
- nucliadb_protos-6.3.6.post4063.dist-info/top_level.txt +0 -1
|
@@ -16,6 +16,7 @@ from nucliadb_protos.audit_pb2 import (
|
|
|
16
16
|
AuditField as AuditField,
|
|
17
17
|
AuditKBCounter as AuditKBCounter,
|
|
18
18
|
AuditRequest as AuditRequest,
|
|
19
|
+
AuditSearchRequest as AuditSearchRequest,
|
|
19
20
|
CHAT as CHAT,
|
|
20
21
|
CHROME_EXTENSION as CHROME_EXTENSION,
|
|
21
22
|
ChatAudit as ChatAudit,
|
|
@@ -46,6 +47,7 @@ from nucliadb_protos.knowledgebox_pb2 import (
|
|
|
46
47
|
CONFLICT as CONFLICT,
|
|
47
48
|
CreateExternalIndexProviderMetadata as CreateExternalIndexProviderMetadata,
|
|
48
49
|
CreatePineconeConfig as CreatePineconeConfig,
|
|
50
|
+
DENSE_F32 as DENSE_F32,
|
|
49
51
|
DeleteKnowledgeBoxResponse as DeleteKnowledgeBoxResponse,
|
|
50
52
|
DeletedEntitiesGroups as DeletedEntitiesGroups,
|
|
51
53
|
ERROR as ERROR,
|
|
@@ -79,37 +81,12 @@ from nucliadb_protos.knowledgebox_pb2 import (
|
|
|
79
81
|
TermSynonyms as TermSynonyms,
|
|
80
82
|
UNSET as UNSET,
|
|
81
83
|
UpdateKnowledgeBoxResponse as UpdateKnowledgeBoxResponse,
|
|
84
|
+
VectorIndexConfig as VectorIndexConfig,
|
|
82
85
|
VectorSet as VectorSet,
|
|
83
86
|
VectorSetConfig as VectorSetConfig,
|
|
84
87
|
VectorSetPurge as VectorSetPurge,
|
|
85
88
|
VectorSets as VectorSets,
|
|
86
|
-
|
|
87
|
-
from nucliadb_protos.noderesources_pb2 import (
|
|
88
|
-
EmptyQuery as EmptyQuery,
|
|
89
|
-
EmptyResponse as EmptyResponse,
|
|
90
|
-
IndexMetadata as IndexMetadata,
|
|
91
|
-
IndexParagraph as IndexParagraph,
|
|
92
|
-
IndexParagraphs as IndexParagraphs,
|
|
93
|
-
IndexRelation as IndexRelation,
|
|
94
|
-
IndexRelations as IndexRelations,
|
|
95
|
-
NodeMetadata as NodeMetadata,
|
|
96
|
-
ParagraphMetadata as ParagraphMetadata,
|
|
97
|
-
Position as Position,
|
|
98
|
-
Representation as Representation,
|
|
99
|
-
Resource as Resource,
|
|
100
|
-
ResourceID as ResourceID,
|
|
101
|
-
SentenceMetadata as SentenceMetadata,
|
|
102
|
-
Shard as Shard,
|
|
103
|
-
ShardCreated as ShardCreated,
|
|
104
|
-
ShardId as ShardId,
|
|
105
|
-
ShardIds as ShardIds,
|
|
106
|
-
ShardMetadata as ShardMetadata,
|
|
107
|
-
StringList as StringList,
|
|
108
|
-
TextInformation as TextInformation,
|
|
109
|
-
VectorSentence as VectorSentence,
|
|
110
|
-
VectorSetID as VectorSetID,
|
|
111
|
-
VectorSetList as VectorSetList,
|
|
112
|
-
VectorsetSentences as VectorsetSentences,
|
|
89
|
+
VectorType as VectorType,
|
|
113
90
|
)
|
|
114
91
|
from nucliadb_protos.resources_pb2 import (
|
|
115
92
|
AllFieldIDs as AllFieldIDs,
|
|
@@ -174,6 +151,9 @@ from nucliadb_protos.resources_pb2 import (
|
|
|
174
151
|
Representation as Representation,
|
|
175
152
|
RowsPreview as RowsPreview,
|
|
176
153
|
Sentence as Sentence,
|
|
154
|
+
SplitMetadata as SplitMetadata,
|
|
155
|
+
SplitsMetadata as SplitsMetadata,
|
|
156
|
+
SyncMetadata as SyncMetadata,
|
|
177
157
|
TEXT as TEXT,
|
|
178
158
|
UserFieldMetadata as UserFieldMetadata,
|
|
179
159
|
UserMetadata as UserMetadata,
|
|
@@ -209,16 +189,11 @@ class WriterStub:
|
|
|
209
189
|
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
210
190
|
]
|
|
211
191
|
|
|
212
|
-
NewEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
213
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
214
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
|
|
215
|
-
]
|
|
216
|
-
"""Entities"""
|
|
217
|
-
|
|
218
192
|
GetEntities: grpc.UnaryUnaryMultiCallable[
|
|
219
193
|
nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
220
194
|
nucliadb_protos.writer_pb2.GetEntitiesResponse,
|
|
221
195
|
]
|
|
196
|
+
"""Entities"""
|
|
222
197
|
|
|
223
198
|
GetEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
224
199
|
nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
|
|
@@ -230,21 +205,6 @@ class WriterStub:
|
|
|
230
205
|
nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
|
|
231
206
|
]
|
|
232
207
|
|
|
233
|
-
SetEntities: grpc.UnaryUnaryMultiCallable[
|
|
234
|
-
nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
235
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
236
|
-
]
|
|
237
|
-
|
|
238
|
-
UpdateEntitiesGroup: grpc.UnaryUnaryMultiCallable[
|
|
239
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
240
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
|
|
241
|
-
]
|
|
242
|
-
|
|
243
|
-
DelEntities: grpc.UnaryUnaryMultiCallable[
|
|
244
|
-
nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
245
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
246
|
-
]
|
|
247
|
-
|
|
248
208
|
Status: grpc.UnaryUnaryMultiCallable[
|
|
249
209
|
nucliadb_protos.writer_pb2.WriterStatusRequest,
|
|
250
210
|
nucliadb_protos.writer_pb2.WriterStatusResponse,
|
|
@@ -296,16 +256,11 @@ class WriterAsyncStub:
|
|
|
296
256
|
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
297
257
|
]
|
|
298
258
|
|
|
299
|
-
NewEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
300
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
301
|
-
nucliadb_protos.writer_pb2.NewEntitiesGroupResponse,
|
|
302
|
-
]
|
|
303
|
-
"""Entities"""
|
|
304
|
-
|
|
305
259
|
GetEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
306
260
|
nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
307
261
|
nucliadb_protos.writer_pb2.GetEntitiesResponse,
|
|
308
262
|
]
|
|
263
|
+
"""Entities"""
|
|
309
264
|
|
|
310
265
|
GetEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
311
266
|
nucliadb_protos.writer_pb2.GetEntitiesGroupRequest,
|
|
@@ -317,21 +272,6 @@ class WriterAsyncStub:
|
|
|
317
272
|
nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse,
|
|
318
273
|
]
|
|
319
274
|
|
|
320
|
-
SetEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
321
|
-
nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
322
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
323
|
-
]
|
|
324
|
-
|
|
325
|
-
UpdateEntitiesGroup: grpc.aio.UnaryUnaryMultiCallable[
|
|
326
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
327
|
-
nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse,
|
|
328
|
-
]
|
|
329
|
-
|
|
330
|
-
DelEntities: grpc.aio.UnaryUnaryMultiCallable[
|
|
331
|
-
nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
332
|
-
nucliadb_protos.writer_pb2.OpStatusWriter,
|
|
333
|
-
]
|
|
334
|
-
|
|
335
275
|
Status: grpc.aio.UnaryUnaryMultiCallable[
|
|
336
276
|
nucliadb_protos.writer_pb2.WriterStatusRequest,
|
|
337
277
|
nucliadb_protos.writer_pb2.WriterStatusResponse,
|
|
@@ -391,20 +331,13 @@ class WriterServicer(metaclass=abc.ABCMeta):
|
|
|
391
331
|
context: _ServicerContext,
|
|
392
332
|
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
393
333
|
|
|
394
|
-
@abc.abstractmethod
|
|
395
|
-
def NewEntitiesGroup(
|
|
396
|
-
self,
|
|
397
|
-
request: nucliadb_protos.writer_pb2.NewEntitiesGroupRequest,
|
|
398
|
-
context: _ServicerContext,
|
|
399
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.NewEntitiesGroupResponse]]:
|
|
400
|
-
"""Entities"""
|
|
401
|
-
|
|
402
334
|
@abc.abstractmethod
|
|
403
335
|
def GetEntities(
|
|
404
336
|
self,
|
|
405
337
|
request: nucliadb_protos.writer_pb2.GetEntitiesRequest,
|
|
406
338
|
context: _ServicerContext,
|
|
407
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]:
|
|
339
|
+
) -> typing.Union[nucliadb_protos.writer_pb2.GetEntitiesResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.GetEntitiesResponse]]:
|
|
340
|
+
"""Entities"""
|
|
408
341
|
|
|
409
342
|
@abc.abstractmethod
|
|
410
343
|
def GetEntitiesGroup(
|
|
@@ -420,27 +353,6 @@ class WriterServicer(metaclass=abc.ABCMeta):
|
|
|
420
353
|
context: _ServicerContext,
|
|
421
354
|
) -> typing.Union[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.ListEntitiesGroupsResponse]]: ...
|
|
422
355
|
|
|
423
|
-
@abc.abstractmethod
|
|
424
|
-
def SetEntities(
|
|
425
|
-
self,
|
|
426
|
-
request: nucliadb_protos.writer_pb2.SetEntitiesRequest,
|
|
427
|
-
context: _ServicerContext,
|
|
428
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
429
|
-
|
|
430
|
-
@abc.abstractmethod
|
|
431
|
-
def UpdateEntitiesGroup(
|
|
432
|
-
self,
|
|
433
|
-
request: nucliadb_protos.writer_pb2.UpdateEntitiesGroupRequest,
|
|
434
|
-
context: _ServicerContext,
|
|
435
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse, collections.abc.Awaitable[nucliadb_protos.writer_pb2.UpdateEntitiesGroupResponse]]: ...
|
|
436
|
-
|
|
437
|
-
@abc.abstractmethod
|
|
438
|
-
def DelEntities(
|
|
439
|
-
self,
|
|
440
|
-
request: nucliadb_protos.writer_pb2.DelEntitiesRequest,
|
|
441
|
-
context: _ServicerContext,
|
|
442
|
-
) -> typing.Union[nucliadb_protos.writer_pb2.OpStatusWriter, collections.abc.Awaitable[nucliadb_protos.writer_pb2.OpStatusWriter]]: ...
|
|
443
|
-
|
|
444
356
|
@abc.abstractmethod
|
|
445
357
|
def Status(
|
|
446
358
|
self,
|
{nucliadb_protos-6.3.6.post4063.dist-info → nucliadb_protos-6.10.0.post5705.dist-info}/METADATA
RENAMED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nucliadb_protos
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.10.0.post5705
|
|
4
4
|
Summary: Protobuf definitions for nucliadb
|
|
5
|
-
Author-
|
|
6
|
-
License:
|
|
7
|
-
Project-URL: Homepage, https://nuclia.com
|
|
8
|
-
Project-URL: Repository, https://github.com/nuclia/nucliadb
|
|
5
|
+
Author-Email: Nuclia <nucliadb@nuclia.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
9
7
|
Classifier: Development Status :: 4 - Beta
|
|
10
8
|
Classifier: Programming Language :: Python
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
12
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
13
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
16
13
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Requires-
|
|
20
|
-
Requires-Dist:
|
|
14
|
+
Project-URL: Homepage, https://nuclia.com
|
|
15
|
+
Project-URL: Repository, https://github.com/nuclia/nucliadb
|
|
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"
|
|
20
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.gitignore,sha256=zbyuFRBda3geYggTx5x-hodA1OnMU85vX8u8Ejh630s,2
|
|
2
|
+
build.py,sha256=6HYEavsyZ_2Ox-omEvVOaUPqrFLFR8aG3L_Gvm9Aibk,1980
|
|
3
|
+
nucliadb_protos-6.10.0.post5705.dist-info/METADATA,sha256=8o9G9VtgpQQ-tb-IveP5T1eMcufjBfgc5PBUtoQ9-Z0,791
|
|
4
|
+
nucliadb_protos-6.10.0.post5705.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
|
|
5
|
+
nucliadb_protos-6.10.0.post5705.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=SKYDJSsCqHg9xl0WIaMrqzY-4-0s0i5oOS6cTinVOWE,22218
|
|
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=jBN53rcIoQPIhIfiQ2rdh_ff6iNINj1ra-BZ-CnxRnw,38406
|
|
22
|
+
nucliadb_protos/resources_pb2.pyi,sha256=aYcGC-bz5zjKEY3Sw10zjnerqEDl4i10BVZWmu0Iq2c,100878
|
|
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=XtGWvrZZ2cSUVi5I5om-R_KzqBFDVLf_KxNnJEC5tyk,28104
|
|
29
|
+
nucliadb_protos/train_pb2_grpc.py,sha256=GwrVAoe71jMeV3iGzbQJ2uPqsOhXcNhMF5qBCYoiB14,16142
|
|
30
|
+
nucliadb_protos/train_pb2_grpc.pyi,sha256=kMUHpEER1iEo57VVlGHiey_Qa5LivhUUkdi6x1O8Cng,11774
|
|
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=90gR8hVxQ-fs40eAHqhmOMDXIZP5EJa69cIAJBvzlN4,61977
|
|
35
|
+
nucliadb_protos/writer_pb2_grpc.py,sha256=ca1SxDoGlUJmQdmTrYw83ajun511GtgiJn4R3tiHYyQ,25838
|
|
36
|
+
nucliadb_protos/writer_pb2_grpc.pyi,sha256=gbOUJZ3ftN3dNMEc7Xvxy1k6Ms-PQcKldrVC1WUICC8,15010
|
|
37
|
+
nucliadb_protos-6.10.0.post5705.dist-info/RECORD,,
|
nucliadb_protos/__init__.py
DELETED
|
File without changes
|
|
@@ -1,187 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# source: nucliadb_protos/nodereader.proto
|
|
4
|
-
# Protobuf Python Version: 4.25.1
|
|
5
|
-
"""Generated protocol buffer code."""
|
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
-
from google.protobuf.internal import builder as _builder
|
|
10
|
-
# @@protoc_insertion_point(imports)
|
|
11
|
-
|
|
12
|
-
_sym_db = _symbol_database.Default()
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
from nucliadb_protos import noderesources_pb2 as nucliadb__protos_dot_noderesources__pb2
|
|
16
|
-
try:
|
|
17
|
-
nucliadb__protos_dot_utils__pb2 = nucliadb__protos_dot_noderesources__pb2.nucliadb__protos_dot_utils__pb2
|
|
18
|
-
except AttributeError:
|
|
19
|
-
nucliadb__protos_dot_utils__pb2 = nucliadb__protos_dot_noderesources__pb2.nucliadb_protos.utils_pb2
|
|
20
|
-
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
21
|
-
from nucliadb_protos import utils_pb2 as nucliadb__protos_dot_utils__pb2
|
|
22
|
-
|
|
23
|
-
from nucliadb_protos.noderesources_pb2 import *
|
|
24
|
-
from nucliadb_protos.utils_pb2 import *
|
|
25
|
-
|
|
26
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n nucliadb_protos/nodereader.proto\x12\nnodereader\x1a#nucliadb_protos/noderesources.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bnucliadb_protos/utils.proto\"\x82\x01\n\x0cStreamFilter\x12\x39\n\x0b\x63onjunction\x18\x01 \x01(\x0e\x32$.nodereader.StreamFilter.Conjunction\x12\x0e\n\x06labels\x18\x02 \x03(\t\"\'\n\x0b\x43onjunction\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01\x12\x07\n\x03NOT\x10\x02\"\x19\n\x07\x46\x61\x63\x65ted\x12\x0e\n\x06labels\x18\x01 \x03(\t\"\xc3\x01\n\x07OrderBy\x12\x11\n\x05\x66ield\x18\x01 \x01(\tB\x02\x18\x01\x12+\n\x04type\x18\x02 \x01(\x0e\x32\x1d.nodereader.OrderBy.OrderType\x12/\n\x07sort_by\x18\x03 \x01(\x0e\x32\x1e.nodereader.OrderBy.OrderField\"\x1e\n\tOrderType\x12\x08\n\x04\x44\x45SC\x10\x00\x12\x07\n\x03\x41SC\x10\x01\"\'\n\nOrderField\x12\x0b\n\x07\x43REATED\x10\x00\x12\x0c\n\x08MODIFIED\x10\x01\")\n\x0b\x46\x61\x63\x65tResult\x12\x0b\n\x03tag\x18\x01 \x01(\t\x12\r\n\x05total\x18\x02 \x01(\x05\"=\n\x0c\x46\x61\x63\x65tResults\x12-\n\x0c\x66\x61\x63\x65tresults\x18\x01 \x03(\x0b\x32\x17.nodereader.FacetResult\",\n\x0bResultScore\x12\x0c\n\x04\x62m25\x18\x01 \x01(\x02\x12\x0f\n\x07\x62ooster\x18\x02 \x01(\x02\"e\n\x0e\x44ocumentResult\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12&\n\x05score\x18\x03 \x01(\x0b\x32\x17.nodereader.ResultScore\x12\r\n\x05\x66ield\x18\x04 \x01(\t\x12\x0e\n\x06labels\x18\x05 \x03(\t\"\xbb\x02\n\x16\x44ocumentSearchResponse\x12\r\n\x05total\x18\x01 \x01(\x05\x12+\n\x07results\x18\x02 \x03(\x0b\x32\x1a.nodereader.DocumentResult\x12>\n\x06\x66\x61\x63\x65ts\x18\x03 \x03(\x0b\x32..nodereader.DocumentSearchResponse.FacetsEntry\x12\x13\n\x0bpage_number\x18\x04 \x01(\x05\x12\x17\n\x0fresult_per_page\x18\x05 \x01(\x05\x12\r\n\x05query\x18\x06 \x01(\t\x12\x11\n\tnext_page\x18\x07 \x01(\x08\x12\x0c\n\x04\x62m25\x18\x08 \x01(\x08\x1aG\n\x0b\x46\x61\x63\x65tsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.nodereader.FacetResults:\x02\x38\x01\"\xf8\x01\n\x0fParagraphResult\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\r\n\x05\x66ield\x18\x03 \x01(\t\x12\r\n\x05start\x18\x04 \x01(\x04\x12\x0b\n\x03\x65nd\x18\x05 \x01(\x04\x12\x11\n\tparagraph\x18\x06 \x01(\t\x12\r\n\x05split\x18\x07 \x01(\t\x12\r\n\x05index\x18\x08 \x01(\x04\x12&\n\x05score\x18\t \x01(\x0b\x32\x17.nodereader.ResultScore\x12\x0f\n\x07matches\x18\n \x03(\t\x12\x32\n\x08metadata\x18\x0b \x01(\x0b\x32 .noderesources.ParagraphMetadata\x12\x0e\n\x06labels\x18\x0c \x03(\t\"\xe8\x02\n\x17ParagraphSearchResponse\x12\x16\n\x0e\x66uzzy_distance\x18\n \x01(\x05\x12\r\n\x05total\x18\x01 \x01(\x05\x12,\n\x07results\x18\x02 \x03(\x0b\x32\x1b.nodereader.ParagraphResult\x12?\n\x06\x66\x61\x63\x65ts\x18\x03 \x03(\x0b\x32/.nodereader.ParagraphSearchResponse.FacetsEntry\x12\x13\n\x0bpage_number\x18\x04 \x01(\x05\x12\x17\n\x0fresult_per_page\x18\x05 \x01(\x05\x12\r\n\x05query\x18\x06 \x01(\t\x12\x11\n\tnext_page\x18\x07 \x01(\x08\x12\x0c\n\x04\x62m25\x18\x08 \x01(\x08\x12\x10\n\x08\x65matches\x18\t \x03(\t\x1aG\n\x0b\x46\x61\x63\x65tsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.nodereader.FacetResults:\x02\x38\x01\"&\n\x18\x44ocumentVectorIdentifier\x12\n\n\x02id\x18\x01 \x01(\t\"\x98\x01\n\x0e\x44ocumentScored\x12\x34\n\x06\x64oc_id\x18\x01 \x01(\x0b\x32$.nodereader.DocumentVectorIdentifier\x12\r\n\x05score\x18\x02 \x01(\x02\x12\x31\n\x08metadata\x18\x03 \x01(\x0b\x32\x1f.noderesources.SentenceMetadata\x12\x0e\n\x06labels\x18\x04 \x03(\t\"s\n\x14VectorSearchResponse\x12-\n\tdocuments\x18\x01 \x03(\x0b\x32\x1a.nodereader.DocumentScored\x12\x13\n\x0bpage_number\x18\x04 \x01(\x05\x12\x17\n\x0fresult_per_page\x18\x05 \x01(\x05\"q\n\x12RelationNodeFilter\x12/\n\tnode_type\x18\x01 \x01(\x0e\x32\x1c.utils.RelationNode.NodeType\x12\x19\n\x0cnode_subtype\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0f\n\r_node_subtype\"\x95\x01\n\x12RelationEdgeFilter\x12\x33\n\rrelation_type\x18\x01 \x01(\x0e\x32\x1c.utils.Relation.RelationType\x12\x1d\n\x10relation_subtype\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x16\n\x0erelation_value\x18\x03 \x03(\tB\x13\n\x11_relation_subtype\"\x80\x01\n\x1bRelationPrefixSearchRequest\x12\x10\n\x06prefix\x18\x01 \x01(\tH\x00\x12\x0f\n\x05query\x18\x03 \x01(\tH\x00\x12\x34\n\x0cnode_filters\x18\x02 \x03(\x0b\x32\x1e.nodereader.RelationNodeFilterB\x08\n\x06search\"B\n\x1cRelationPrefixSearchResponse\x12\"\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.utils.RelationNode\"\x87\x02\n\x17\x45ntitiesSubgraphRequest\x12)\n\x0c\x65ntry_points\x18\x01 \x03(\x0b\x32\x13.utils.RelationNode\x12\x12\n\x05\x64\x65pth\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12M\n\x10\x64\x65leted_entities\x18\x04 \x03(\x0b\x32\x33.nodereader.EntitiesSubgraphRequest.DeletedEntities\x12\x16\n\x0e\x64\x65leted_groups\x18\x05 \x03(\t\x1a<\n\x0f\x44\x65letedEntities\x12\x14\n\x0cnode_subtype\x18\x01 \x01(\t\x12\x13\n\x0bnode_values\x18\x02 \x03(\tB\x08\n\x06_depth\"K\n\x18\x45ntitiesSubgraphResponse\x12/\n\trelations\x18\x02 \x03(\x0b\x32\x1c.noderesources.IndexRelation\"\x88\x0b\n\nGraphQuery\x12.\n\x04path\x18\x01 \x01(\x0b\x32 .nodereader.GraphQuery.PathQuery\x1a\xf4\x04\n\x04Node\x12\x12\n\x05value\x18\x01 \x01(\tH\x01\x88\x01\x01\x12\x34\n\tnode_type\x18\x02 \x01(\x0e\x32\x1c.utils.RelationNode.NodeTypeH\x02\x88\x01\x01\x12\x19\n\x0cnode_subtype\x18\x03 \x01(\tH\x03\x88\x01\x01\x12=\n\nmatch_kind\x18\x04 \x01(\x0e\x32%.nodereader.GraphQuery.Node.MatchKindB\x02\x18\x01\x12\x37\n\x05\x65xact\x18\x05 \x01(\x0b\x32&.nodereader.GraphQuery.Node.ExactMatchH\x00\x12\x37\n\x05\x66uzzy\x18\x06 \x01(\x0b\x32&.nodereader.GraphQuery.Node.FuzzyMatchH\x00\x1a\x45\n\nExactMatch\x12\x37\n\x04kind\x18\x01 \x01(\x0e\x32).nodereader.GraphQuery.Node.MatchLocation\x1aW\n\nFuzzyMatch\x12\x37\n\x04kind\x18\x01 \x01(\x0e\x32).nodereader.GraphQuery.Node.MatchLocation\x12\x10\n\x08\x64istance\x18\x02 \x01(\r\"7\n\tMatchKind\x12\x14\n\x10\x44\x45PRECATED_EXACT\x10\x00\x12\x14\n\x10\x44\x45PRECATED_FUZZY\x10\x01\"B\n\rMatchLocation\x12\x08\n\x04\x46ULL\x10\x00\x12\n\n\x06PREFIX\x10\x01\x12\t\n\x05WORDS\x10\x02\x12\x10\n\x0cPREFIX_WORDS\x10\x03\x42\x10\n\x0enew_match_kindB\x08\n\x06_valueB\x0c\n\n_node_typeB\x0f\n\r_node_subtype\x1at\n\x08Relation\x12\x12\n\x05value\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x38\n\rrelation_type\x18\x02 \x01(\x0e\x32\x1c.utils.Relation.RelationTypeH\x01\x88\x01\x01\x42\x08\n\x06_valueB\x10\n\x0e_relation_type\x1a\xe3\x01\n\x04Path\x12\x30\n\x06source\x18\x01 \x01(\x0b\x32\x1b.nodereader.GraphQuery.NodeH\x00\x88\x01\x01\x12\x36\n\x08relation\x18\x02 \x01(\x0b\x32\x1f.nodereader.GraphQuery.RelationH\x01\x88\x01\x01\x12\x35\n\x0b\x64\x65stination\x18\x03 \x01(\x0b\x32\x1b.nodereader.GraphQuery.NodeH\x02\x88\x01\x01\x12\x12\n\nundirected\x18\x04 \x01(\x08\x42\t\n\x07_sourceB\x0b\n\t_relationB\x0e\n\x0c_destination\x1a?\n\tBoolQuery\x12\x32\n\x08operands\x18\x01 \x03(\x0b\x32 .nodereader.GraphQuery.PathQuery\x1a\x1c\n\x0b\x46\x61\x63\x65tFilter\x12\r\n\x05\x66\x61\x63\x65t\x18\x01 \x01(\t\x1a\x97\x02\n\tPathQuery\x12+\n\x04path\x18\x01 \x01(\x0b\x32\x1b.nodereader.GraphQuery.PathH\x00\x12\x34\n\x08\x62ool_not\x18\x02 \x01(\x0b\x32 .nodereader.GraphQuery.PathQueryH\x00\x12\x34\n\x08\x62ool_and\x18\x03 \x01(\x0b\x32 .nodereader.GraphQuery.BoolQueryH\x00\x12\x33\n\x07\x62ool_or\x18\x04 \x01(\x0b\x32 .nodereader.GraphQuery.BoolQueryH\x00\x12\x33\n\x05\x66\x61\x63\x65t\x18\x05 \x01(\x0b\x32\".nodereader.GraphQuery.FacetFilterH\x00\x42\x07\n\x05query\"\xc1\x02\n\x12GraphSearchRequest\x12\r\n\x05shard\x18\x01 \x01(\t\x12%\n\x05query\x18\x02 \x01(\x0b\x32\x16.nodereader.GraphQuery\x12\x36\n\x04kind\x18\x03 \x01(\x0e\x32(.nodereader.GraphSearchRequest.QueryKind\x12\r\n\x05top_k\x18\x04 \x01(\r\x12&\n\x08security\x18\x05 \x01(\x0b\x32\x0f.utils.SecurityH\x00\x88\x01\x01\x12\x37\n\x0c\x66ield_filter\x18\x06 \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x01\x88\x01\x01\"/\n\tQueryKind\x12\x08\n\x04PATH\x10\x00\x12\t\n\x05NODES\x10\x01\x12\r\n\tRELATIONS\x10\x02\x42\x0b\n\t_securityB\x0f\n\r_field_filter\"\xbe\x03\n\x13GraphSearchResponse\x12\"\n\x05nodes\x18\x01 \x03(\x0b\x32\x13.utils.RelationNode\x12;\n\trelations\x18\x02 \x03(\x0b\x32(.nodereader.GraphSearchResponse.Relation\x12\x33\n\x05graph\x18\x03 \x03(\x0b\x32$.nodereader.GraphSearchResponse.Path\x1aN\n\x08Relation\x12\x33\n\rrelation_type\x18\x01 \x01(\x0e\x32\x1c.utils.Relation.RelationType\x12\r\n\x05label\x18\x02 \x01(\t\x1a\xc0\x01\n\x04Path\x12\x0e\n\x06source\x18\x01 \x01(\r\x12\x10\n\x08relation\x18\x02 \x01(\r\x12\x13\n\x0b\x64\x65stination\x18\x03 \x01(\r\x12.\n\x08metadata\x18\x04 \x01(\x0b\x32\x17.utils.RelationMetadataH\x00\x88\x01\x01\x12\x1e\n\x11resource_field_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\x0e\n\x06\x66\x61\x63\x65ts\x18\x06 \x03(\tB\x0b\n\t_metadataB\x14\n\x12_resource_field_id\"f\n\x15RelationSearchRequest\x12\x10\n\x08shard_id\x18\x01 \x01(\t\x12\x35\n\x08subgraph\x18\x0c \x01(\x0b\x32#.nodereader.EntitiesSubgraphRequestJ\x04\x08\x0b\x10\x0c\"\x8a\x01\n\x16RelationSearchResponse\x12\x38\n\x06prefix\x18\x0b \x01(\x0b\x32(.nodereader.RelationPrefixSearchResponse\x12\x36\n\x08subgraph\x18\x0c \x01(\x0b\x32$.nodereader.EntitiesSubgraphResponse\"\xfa\x07\n\x10\x46ilterExpression\x12\x45\n\x08\x62ool_and\x18\x01 \x01(\x0b\x32\x31.nodereader.FilterExpression.FilterExpressionListH\x00\x12\x44\n\x07\x62ool_or\x18\x02 \x01(\x0b\x32\x31.nodereader.FilterExpression.FilterExpressionListH\x00\x12\x30\n\x08\x62ool_not\x18\x03 \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x00\x12?\n\x08resource\x18\x04 \x01(\x0b\x32+.nodereader.FilterExpression.ResourceFilterH\x00\x12\x39\n\x05\x66ield\x18\x05 \x01(\x0b\x32(.nodereader.FilterExpression.FieldFilterH\x00\x12=\n\x07keyword\x18\x06 \x01(\x0b\x32*.nodereader.FilterExpression.KeywordFilterH\x00\x12<\n\x04\x64\x61te\x18\x07 \x01(\x0b\x32,.nodereader.FilterExpression.DateRangeFilterH\x00\x12\x39\n\x05\x66\x61\x63\x65t\x18\x08 \x01(\x0b\x32(.nodereader.FilterExpression.FacetFilterH\x00\x1a\x46\n\x14\x46ilterExpressionList\x12.\n\x08operands\x18\x01 \x03(\x0b\x32\x1c.nodereader.FilterExpression\x1a%\n\x0eResourceFilter\x12\x13\n\x0bresource_id\x18\x01 \x01(\t\x1a\x45\n\x0b\x46ieldFilter\x12\x12\n\nfield_type\x18\x01 \x01(\t\x12\x15\n\x08\x66ield_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x0b\n\t_field_id\x1a\xf4\x01\n\x0f\x44\x61teRangeFilter\x12\x45\n\x05\x66ield\x18\x01 \x01(\x0e\x32\x36.nodereader.FilterExpression.DateRangeFilter.DateField\x12.\n\x05since\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x00\x88\x01\x01\x12.\n\x05until\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\"&\n\tDateField\x12\x0b\n\x07\x43REATED\x10\x00\x12\x0c\n\x08MODIFIED\x10\x01\x42\x08\n\x06_sinceB\x08\n\x06_until\x1a \n\rKeywordFilter\x12\x0f\n\x07keyword\x18\x01 \x01(\t\x1a\x1c\n\x0b\x46\x61\x63\x65tFilter\x12\r\n\x05\x66\x61\x63\x65t\x18\x01 \x01(\tB\x06\n\x04\x65xpr\"\xc2\x06\n\rSearchRequest\x12\r\n\x05shard\x18\x01 \x01(\t\x12\x0c\n\x04\x62ody\x18\x03 \x01(\t\x12\"\n\x05order\x18\x05 \x01(\x0b\x32\x13.nodereader.OrderBy\x12$\n\x07\x66\x61\x63\x65ted\x18\x06 \x01(\x0b\x32\x13.nodereader.Faceted\x12\x13\n\x0bpage_number\x18\x07 \x01(\x05\x12\x17\n\x0fresult_per_page\x18\x08 \x01(\x05\x12\x0e\n\x06vector\x18\n \x03(\x02\x12\x11\n\tvectorset\x18\x0f \x01(\t\x12\x11\n\tparagraph\x18\x0c \x01(\x08\x12\x10\n\x08\x64ocument\x18\r \x01(\x08\x12\x17\n\x0fwith_duplicates\x18\x0e \x01(\x08\x12\x14\n\x0conly_faceted\x18\x10 \x01(\x08\x12\x1b\n\x0e\x61\x64vanced_query\x18\x12 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\x12min_score_semantic\x18\x17 \x01(\x02\x12\x16\n\x0emin_score_bm25\x18\x19 \x01(\x02\x12&\n\x08security\x18\x18 \x01(\x0b\x32\x0f.utils.SecurityH\x01\x88\x01\x01\x12\x37\n\x0c\x66ield_filter\x18\x1a \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x02\x88\x01\x01\x12;\n\x10paragraph_filter\x18\x1b \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x03\x88\x01\x01\x12\x33\n\x0f\x66ilter_operator\x18\x1c \x01(\x0e\x32\x1a.nodereader.FilterOperator\x12\x42\n\x11relation_subgraph\x18\x15 \x01(\x0b\x32#.nodereader.EntitiesSubgraphRequestB\x02\x18\x01\x12;\n\x0cgraph_search\x18\x1d \x01(\x0b\x32%.nodereader.SearchRequest.GraphSearch\x1a\x34\n\x0bGraphSearch\x12%\n\x05query\x18\x01 \x01(\x0b\x32\x16.nodereader.GraphQueryB\x11\n\x0f_advanced_queryB\x0b\n\t_securityB\x0f\n\r_field_filterB\x13\n\x11_paragraph_filterJ\x04\x08\x14\x10\x15\"\xad\x02\n\x0eSuggestRequest\x12\r\n\x05shard\x18\x01 \x01(\t\x12\x0c\n\x04\x62ody\x18\x02 \x01(\t\x12-\n\x08\x66\x65\x61tures\x18\x06 \x03(\x0e\x32\x1b.nodereader.SuggestFeatures\x12\x37\n\x0c\x66ield_filter\x18\x07 \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x00\x88\x01\x01\x12;\n\x10paragraph_filter\x18\x08 \x01(\x0b\x32\x1c.nodereader.FilterExpressionH\x01\x88\x01\x01\x12\x33\n\x0f\x66ilter_operator\x18\t \x01(\x0e\x32\x1a.nodereader.FilterOperatorB\x0f\n\r_field_filterB\x13\n\x11_paragraph_filter\"2\n\x0fRelatedEntities\x12\x10\n\x08\x65ntities\x18\x01 \x03(\t\x12\r\n\x05total\x18\x02 \x01(\r\"\xb1\x01\n\x0fSuggestResponse\x12\r\n\x05total\x18\x01 \x01(\x05\x12,\n\x07results\x18\x02 \x03(\x0b\x32\x1b.nodereader.ParagraphResult\x12\r\n\x05query\x18\x03 \x01(\t\x12\x10\n\x08\x65matches\x18\x04 \x03(\t\x12@\n\x0e\x65ntity_results\x18\x06 \x01(\x0b\x32(.nodereader.RelationPrefixSearchResponse\"\x96\x02\n\x0eSearchResponse\x12\x34\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".nodereader.DocumentSearchResponse\x12\x36\n\tparagraph\x18\x02 \x01(\x0b\x32#.nodereader.ParagraphSearchResponse\x12\x30\n\x06vector\x18\x03 \x01(\x0b\x32 .nodereader.VectorSearchResponse\x12\x34\n\x08relation\x18\x04 \x01(\x0b\x32\".nodereader.RelationSearchResponse\x12.\n\x05graph\x18\x05 \x01(\x0b\x32\x1f.nodereader.GraphSearchResponse\"\x1b\n\x0cIdCollection\x12\x0b\n\x03ids\x18\x01 \x03(\t\"Q\n\x0cRelationEdge\x12/\n\tedge_type\x18\x01 \x01(\x0e\x32\x1c.utils.Relation.RelationType\x12\x10\n\x08property\x18\x02 \x01(\t\"2\n\x08\x45\x64geList\x12&\n\x04list\x18\x01 \x03(\x0b\x32\x18.nodereader.RelationEdge\"N\n\x0fGetShardRequest\x12(\n\x08shard_id\x18\x01 \x01(\x0b\x32\x16.noderesources.ShardId\x12\x11\n\tvectorset\x18\x02 \x01(\t\"+\n\rParagraphItem\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0e\n\x06labels\x18\x02 \x03(\t\";\n\x0c\x44ocumentItem\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\r\n\x05\x66ield\x18\x02 \x01(\t\x12\x0e\n\x06labels\x18\x03 \x03(\t\"c\n\rStreamRequest\x12(\n\x08shard_id\x18\x03 \x01(\x0b\x32\x16.noderesources.ShardId\x12(\n\x06\x66ilter\x18\x04 \x01(\x0b\x32\x18.nodereader.StreamFilter\"(\n\x14GetShardFilesRequest\x12\x10\n\x08shard_id\x18\x01 \x01(\t\"5\n\rShardFileList\x12$\n\x05\x66iles\x18\x02 \x03(\x0b\x32\x15.nodereader.ShardFile\"0\n\tShardFile\x12\x15\n\rrelative_path\x18\x01 \x01(\t\x12\x0c\n\x04size\x18\x02 \x01(\x04\"C\n\x18\x44ownloadShardFileRequest\x12\x10\n\x08shard_id\x18\x01 \x01(\t\x12\x15\n\rrelative_path\x18\x02 \x01(\t\"-\n\x0eShardFileChunk\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\r\n\x05index\x18\x02 \x01(\x05*!\n\x0e\x46ilterOperator\x12\x07\n\x03\x41ND\x10\x00\x12\x06\n\x02OR\x10\x01*/\n\x0fSuggestFeatures\x12\x0c\n\x08\x45NTITIES\x10\x00\x12\x0e\n\nPARAGRAPHS\x10\x01\x32\xdf\x06\n\nNodeReader\x12?\n\x08GetShard\x12\x1b.nodereader.GetShardRequest\x1a\x14.noderesources.Shard\"\x00\x12\x41\n\x0b\x44ocumentIds\x12\x16.noderesources.ShardId\x1a\x18.nodereader.IdCollection\"\x00\x12\x42\n\x0cParagraphIds\x12\x16.noderesources.ShardId\x1a\x18.nodereader.IdCollection\"\x00\x12\x43\n\tVectorIds\x12\x1a.noderesources.VectorSetID\x1a\x18.nodereader.IdCollection\"\x00\x12\x41\n\x0bRelationIds\x12\x16.noderesources.ShardId\x1a\x18.nodereader.IdCollection\"\x00\x12?\n\rRelationEdges\x12\x16.noderesources.ShardId\x1a\x14.nodereader.EdgeList\"\x00\x12\x41\n\x06Search\x12\x19.nodereader.SearchRequest\x1a\x1a.nodereader.SearchResponse\"\x00\x12\x44\n\x07Suggest\x12\x1a.nodereader.SuggestRequest\x1a\x1b.nodereader.SuggestResponse\"\x00\x12\x46\n\nParagraphs\x12\x19.nodereader.StreamRequest\x1a\x19.nodereader.ParagraphItem\"\x00\x30\x01\x12\x44\n\tDocuments\x12\x19.nodereader.StreamRequest\x1a\x18.nodereader.DocumentItem\"\x00\x30\x01\x12N\n\rGetShardFiles\x12 .nodereader.GetShardFilesRequest\x1a\x19.nodereader.ShardFileList\"\x00\x12Y\n\x11\x44ownloadShardFile\x12$.nodereader.DownloadShardFileRequest\x1a\x1a.nodereader.ShardFileChunk\"\x00\x30\x01P\x00P\x02\x62\x06proto3')
|
|
27
|
-
|
|
28
|
-
_globals = globals()
|
|
29
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
30
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'nucliadb_protos.nodereader_pb2', _globals)
|
|
31
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
32
|
-
DESCRIPTOR._options = None
|
|
33
|
-
_globals['_ORDERBY'].fields_by_name['field']._options = None
|
|
34
|
-
_globals['_ORDERBY'].fields_by_name['field']._serialized_options = b'\030\001'
|
|
35
|
-
_globals['_DOCUMENTSEARCHRESPONSE_FACETSENTRY']._options = None
|
|
36
|
-
_globals['_DOCUMENTSEARCHRESPONSE_FACETSENTRY']._serialized_options = b'8\001'
|
|
37
|
-
_globals['_PARAGRAPHSEARCHRESPONSE_FACETSENTRY']._options = None
|
|
38
|
-
_globals['_PARAGRAPHSEARCHRESPONSE_FACETSENTRY']._serialized_options = b'8\001'
|
|
39
|
-
_globals['_GRAPHQUERY_NODE'].fields_by_name['match_kind']._options = None
|
|
40
|
-
_globals['_GRAPHQUERY_NODE'].fields_by_name['match_kind']._serialized_options = b'\030\001'
|
|
41
|
-
_globals['_SEARCHREQUEST'].fields_by_name['relation_subgraph']._options = None
|
|
42
|
-
_globals['_SEARCHREQUEST'].fields_by_name['relation_subgraph']._serialized_options = b'\030\001'
|
|
43
|
-
_globals['_FILTEROPERATOR']._serialized_start=8639
|
|
44
|
-
_globals['_FILTEROPERATOR']._serialized_end=8672
|
|
45
|
-
_globals['_SUGGESTFEATURES']._serialized_start=8674
|
|
46
|
-
_globals['_SUGGESTFEATURES']._serialized_end=8721
|
|
47
|
-
_globals['_STREAMFILTER']._serialized_start=148
|
|
48
|
-
_globals['_STREAMFILTER']._serialized_end=278
|
|
49
|
-
_globals['_STREAMFILTER_CONJUNCTION']._serialized_start=239
|
|
50
|
-
_globals['_STREAMFILTER_CONJUNCTION']._serialized_end=278
|
|
51
|
-
_globals['_FACETED']._serialized_start=280
|
|
52
|
-
_globals['_FACETED']._serialized_end=305
|
|
53
|
-
_globals['_ORDERBY']._serialized_start=308
|
|
54
|
-
_globals['_ORDERBY']._serialized_end=503
|
|
55
|
-
_globals['_ORDERBY_ORDERTYPE']._serialized_start=432
|
|
56
|
-
_globals['_ORDERBY_ORDERTYPE']._serialized_end=462
|
|
57
|
-
_globals['_ORDERBY_ORDERFIELD']._serialized_start=464
|
|
58
|
-
_globals['_ORDERBY_ORDERFIELD']._serialized_end=503
|
|
59
|
-
_globals['_FACETRESULT']._serialized_start=505
|
|
60
|
-
_globals['_FACETRESULT']._serialized_end=546
|
|
61
|
-
_globals['_FACETRESULTS']._serialized_start=548
|
|
62
|
-
_globals['_FACETRESULTS']._serialized_end=609
|
|
63
|
-
_globals['_RESULTSCORE']._serialized_start=611
|
|
64
|
-
_globals['_RESULTSCORE']._serialized_end=655
|
|
65
|
-
_globals['_DOCUMENTRESULT']._serialized_start=657
|
|
66
|
-
_globals['_DOCUMENTRESULT']._serialized_end=758
|
|
67
|
-
_globals['_DOCUMENTSEARCHRESPONSE']._serialized_start=761
|
|
68
|
-
_globals['_DOCUMENTSEARCHRESPONSE']._serialized_end=1076
|
|
69
|
-
_globals['_DOCUMENTSEARCHRESPONSE_FACETSENTRY']._serialized_start=1005
|
|
70
|
-
_globals['_DOCUMENTSEARCHRESPONSE_FACETSENTRY']._serialized_end=1076
|
|
71
|
-
_globals['_PARAGRAPHRESULT']._serialized_start=1079
|
|
72
|
-
_globals['_PARAGRAPHRESULT']._serialized_end=1327
|
|
73
|
-
_globals['_PARAGRAPHSEARCHRESPONSE']._serialized_start=1330
|
|
74
|
-
_globals['_PARAGRAPHSEARCHRESPONSE']._serialized_end=1690
|
|
75
|
-
_globals['_PARAGRAPHSEARCHRESPONSE_FACETSENTRY']._serialized_start=1005
|
|
76
|
-
_globals['_PARAGRAPHSEARCHRESPONSE_FACETSENTRY']._serialized_end=1076
|
|
77
|
-
_globals['_DOCUMENTVECTORIDENTIFIER']._serialized_start=1692
|
|
78
|
-
_globals['_DOCUMENTVECTORIDENTIFIER']._serialized_end=1730
|
|
79
|
-
_globals['_DOCUMENTSCORED']._serialized_start=1733
|
|
80
|
-
_globals['_DOCUMENTSCORED']._serialized_end=1885
|
|
81
|
-
_globals['_VECTORSEARCHRESPONSE']._serialized_start=1887
|
|
82
|
-
_globals['_VECTORSEARCHRESPONSE']._serialized_end=2002
|
|
83
|
-
_globals['_RELATIONNODEFILTER']._serialized_start=2004
|
|
84
|
-
_globals['_RELATIONNODEFILTER']._serialized_end=2117
|
|
85
|
-
_globals['_RELATIONEDGEFILTER']._serialized_start=2120
|
|
86
|
-
_globals['_RELATIONEDGEFILTER']._serialized_end=2269
|
|
87
|
-
_globals['_RELATIONPREFIXSEARCHREQUEST']._serialized_start=2272
|
|
88
|
-
_globals['_RELATIONPREFIXSEARCHREQUEST']._serialized_end=2400
|
|
89
|
-
_globals['_RELATIONPREFIXSEARCHRESPONSE']._serialized_start=2402
|
|
90
|
-
_globals['_RELATIONPREFIXSEARCHRESPONSE']._serialized_end=2468
|
|
91
|
-
_globals['_ENTITIESSUBGRAPHREQUEST']._serialized_start=2471
|
|
92
|
-
_globals['_ENTITIESSUBGRAPHREQUEST']._serialized_end=2734
|
|
93
|
-
_globals['_ENTITIESSUBGRAPHREQUEST_DELETEDENTITIES']._serialized_start=2664
|
|
94
|
-
_globals['_ENTITIESSUBGRAPHREQUEST_DELETEDENTITIES']._serialized_end=2724
|
|
95
|
-
_globals['_ENTITIESSUBGRAPHRESPONSE']._serialized_start=2736
|
|
96
|
-
_globals['_ENTITIESSUBGRAPHRESPONSE']._serialized_end=2811
|
|
97
|
-
_globals['_GRAPHQUERY']._serialized_start=2814
|
|
98
|
-
_globals['_GRAPHQUERY']._serialized_end=4230
|
|
99
|
-
_globals['_GRAPHQUERY_NODE']._serialized_start=2877
|
|
100
|
-
_globals['_GRAPHQUERY_NODE']._serialized_end=3505
|
|
101
|
-
_globals['_GRAPHQUERY_NODE_EXACTMATCH']._serialized_start=3163
|
|
102
|
-
_globals['_GRAPHQUERY_NODE_EXACTMATCH']._serialized_end=3232
|
|
103
|
-
_globals['_GRAPHQUERY_NODE_FUZZYMATCH']._serialized_start=3234
|
|
104
|
-
_globals['_GRAPHQUERY_NODE_FUZZYMATCH']._serialized_end=3321
|
|
105
|
-
_globals['_GRAPHQUERY_NODE_MATCHKIND']._serialized_start=3323
|
|
106
|
-
_globals['_GRAPHQUERY_NODE_MATCHKIND']._serialized_end=3378
|
|
107
|
-
_globals['_GRAPHQUERY_NODE_MATCHLOCATION']._serialized_start=3380
|
|
108
|
-
_globals['_GRAPHQUERY_NODE_MATCHLOCATION']._serialized_end=3446
|
|
109
|
-
_globals['_GRAPHQUERY_RELATION']._serialized_start=3507
|
|
110
|
-
_globals['_GRAPHQUERY_RELATION']._serialized_end=3623
|
|
111
|
-
_globals['_GRAPHQUERY_PATH']._serialized_start=3626
|
|
112
|
-
_globals['_GRAPHQUERY_PATH']._serialized_end=3853
|
|
113
|
-
_globals['_GRAPHQUERY_BOOLQUERY']._serialized_start=3855
|
|
114
|
-
_globals['_GRAPHQUERY_BOOLQUERY']._serialized_end=3918
|
|
115
|
-
_globals['_GRAPHQUERY_FACETFILTER']._serialized_start=3920
|
|
116
|
-
_globals['_GRAPHQUERY_FACETFILTER']._serialized_end=3948
|
|
117
|
-
_globals['_GRAPHQUERY_PATHQUERY']._serialized_start=3951
|
|
118
|
-
_globals['_GRAPHQUERY_PATHQUERY']._serialized_end=4230
|
|
119
|
-
_globals['_GRAPHSEARCHREQUEST']._serialized_start=4233
|
|
120
|
-
_globals['_GRAPHSEARCHREQUEST']._serialized_end=4554
|
|
121
|
-
_globals['_GRAPHSEARCHREQUEST_QUERYKIND']._serialized_start=4477
|
|
122
|
-
_globals['_GRAPHSEARCHREQUEST_QUERYKIND']._serialized_end=4524
|
|
123
|
-
_globals['_GRAPHSEARCHRESPONSE']._serialized_start=4557
|
|
124
|
-
_globals['_GRAPHSEARCHRESPONSE']._serialized_end=5003
|
|
125
|
-
_globals['_GRAPHSEARCHRESPONSE_RELATION']._serialized_start=4730
|
|
126
|
-
_globals['_GRAPHSEARCHRESPONSE_RELATION']._serialized_end=4808
|
|
127
|
-
_globals['_GRAPHSEARCHRESPONSE_PATH']._serialized_start=4811
|
|
128
|
-
_globals['_GRAPHSEARCHRESPONSE_PATH']._serialized_end=5003
|
|
129
|
-
_globals['_RELATIONSEARCHREQUEST']._serialized_start=5005
|
|
130
|
-
_globals['_RELATIONSEARCHREQUEST']._serialized_end=5107
|
|
131
|
-
_globals['_RELATIONSEARCHRESPONSE']._serialized_start=5110
|
|
132
|
-
_globals['_RELATIONSEARCHRESPONSE']._serialized_end=5248
|
|
133
|
-
_globals['_FILTEREXPRESSION']._serialized_start=5251
|
|
134
|
-
_globals['_FILTEREXPRESSION']._serialized_end=6269
|
|
135
|
-
_globals['_FILTEREXPRESSION_FILTEREXPRESSIONLIST']._serialized_start=5770
|
|
136
|
-
_globals['_FILTEREXPRESSION_FILTEREXPRESSIONLIST']._serialized_end=5840
|
|
137
|
-
_globals['_FILTEREXPRESSION_RESOURCEFILTER']._serialized_start=5842
|
|
138
|
-
_globals['_FILTEREXPRESSION_RESOURCEFILTER']._serialized_end=5879
|
|
139
|
-
_globals['_FILTEREXPRESSION_FIELDFILTER']._serialized_start=5881
|
|
140
|
-
_globals['_FILTEREXPRESSION_FIELDFILTER']._serialized_end=5950
|
|
141
|
-
_globals['_FILTEREXPRESSION_DATERANGEFILTER']._serialized_start=5953
|
|
142
|
-
_globals['_FILTEREXPRESSION_DATERANGEFILTER']._serialized_end=6197
|
|
143
|
-
_globals['_FILTEREXPRESSION_DATERANGEFILTER_DATEFIELD']._serialized_start=6139
|
|
144
|
-
_globals['_FILTEREXPRESSION_DATERANGEFILTER_DATEFIELD']._serialized_end=6177
|
|
145
|
-
_globals['_FILTEREXPRESSION_KEYWORDFILTER']._serialized_start=6199
|
|
146
|
-
_globals['_FILTEREXPRESSION_KEYWORDFILTER']._serialized_end=6231
|
|
147
|
-
_globals['_FILTEREXPRESSION_FACETFILTER']._serialized_start=3920
|
|
148
|
-
_globals['_FILTEREXPRESSION_FACETFILTER']._serialized_end=3948
|
|
149
|
-
_globals['_SEARCHREQUEST']._serialized_start=6272
|
|
150
|
-
_globals['_SEARCHREQUEST']._serialized_end=7106
|
|
151
|
-
_globals['_SEARCHREQUEST_GRAPHSEARCH']._serialized_start=6978
|
|
152
|
-
_globals['_SEARCHREQUEST_GRAPHSEARCH']._serialized_end=7030
|
|
153
|
-
_globals['_SUGGESTREQUEST']._serialized_start=7109
|
|
154
|
-
_globals['_SUGGESTREQUEST']._serialized_end=7410
|
|
155
|
-
_globals['_RELATEDENTITIES']._serialized_start=7412
|
|
156
|
-
_globals['_RELATEDENTITIES']._serialized_end=7462
|
|
157
|
-
_globals['_SUGGESTRESPONSE']._serialized_start=7465
|
|
158
|
-
_globals['_SUGGESTRESPONSE']._serialized_end=7642
|
|
159
|
-
_globals['_SEARCHRESPONSE']._serialized_start=7645
|
|
160
|
-
_globals['_SEARCHRESPONSE']._serialized_end=7923
|
|
161
|
-
_globals['_IDCOLLECTION']._serialized_start=7925
|
|
162
|
-
_globals['_IDCOLLECTION']._serialized_end=7952
|
|
163
|
-
_globals['_RELATIONEDGE']._serialized_start=7954
|
|
164
|
-
_globals['_RELATIONEDGE']._serialized_end=8035
|
|
165
|
-
_globals['_EDGELIST']._serialized_start=8037
|
|
166
|
-
_globals['_EDGELIST']._serialized_end=8087
|
|
167
|
-
_globals['_GETSHARDREQUEST']._serialized_start=8089
|
|
168
|
-
_globals['_GETSHARDREQUEST']._serialized_end=8167
|
|
169
|
-
_globals['_PARAGRAPHITEM']._serialized_start=8169
|
|
170
|
-
_globals['_PARAGRAPHITEM']._serialized_end=8212
|
|
171
|
-
_globals['_DOCUMENTITEM']._serialized_start=8214
|
|
172
|
-
_globals['_DOCUMENTITEM']._serialized_end=8273
|
|
173
|
-
_globals['_STREAMREQUEST']._serialized_start=8275
|
|
174
|
-
_globals['_STREAMREQUEST']._serialized_end=8374
|
|
175
|
-
_globals['_GETSHARDFILESREQUEST']._serialized_start=8376
|
|
176
|
-
_globals['_GETSHARDFILESREQUEST']._serialized_end=8416
|
|
177
|
-
_globals['_SHARDFILELIST']._serialized_start=8418
|
|
178
|
-
_globals['_SHARDFILELIST']._serialized_end=8471
|
|
179
|
-
_globals['_SHARDFILE']._serialized_start=8473
|
|
180
|
-
_globals['_SHARDFILE']._serialized_end=8521
|
|
181
|
-
_globals['_DOWNLOADSHARDFILEREQUEST']._serialized_start=8523
|
|
182
|
-
_globals['_DOWNLOADSHARDFILEREQUEST']._serialized_end=8590
|
|
183
|
-
_globals['_SHARDFILECHUNK']._serialized_start=8592
|
|
184
|
-
_globals['_SHARDFILECHUNK']._serialized_end=8637
|
|
185
|
-
_globals['_NODEREADER']._serialized_start=8724
|
|
186
|
-
_globals['_NODEREADER']._serialized_end=9587
|
|
187
|
-
# @@protoc_insertion_point(module_scope)
|