corvic-engine 0.3.0rc67__cp38-abi3-win_amd64.whl → 0.3.0rc69__cp38-abi3-win_amd64.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.
- corvic/context/__init__.py +0 -8
- corvic/engine/_native.pyd +0 -0
- corvic/model/_base_model.py +3 -4
- corvic/model/_completion_model.py +2 -4
- corvic/model/_feature_view.py +5 -6
- corvic/model/_pipeline.py +1 -2
- corvic/model/_resource.py +1 -2
- corvic/model/_source.py +1 -2
- corvic/model/_space.py +26 -2
- corvic/op_graph/row_filters/_jsonlogic.py +32 -1
- corvic/orm/base.py +4 -5
- corvic/orm/ids.py +1 -2
- corvic/orm/mixins.py +6 -8
- corvic/pa_scalar/_temporal.py +1 -1
- corvic/result/__init__.py +1 -2
- corvic/system/_column_encoding.py +215 -0
- corvic/system/_embedder.py +24 -2
- corvic/system/_image_embedder.py +38 -0
- corvic/system/_planner.py +6 -3
- corvic/system/_text_embedder.py +21 -0
- corvic/system/client.py +2 -1
- corvic/system/in_memory_executor.py +503 -507
- corvic/system/op_graph_executor.py +7 -3
- corvic/system/storage.py +1 -3
- corvic/table/table.py +5 -5
- {corvic_engine-0.3.0rc67.dist-info → corvic_engine-0.3.0rc69.dist-info}/METADATA +3 -4
- {corvic_engine-0.3.0rc67.dist-info → corvic_engine-0.3.0rc69.dist-info}/RECORD +35 -34
- corvic_generated/feature/v2/feature_view_pb2.py +21 -21
- corvic_generated/feature/v2/space_pb2.py +59 -51
- corvic_generated/feature/v2/space_pb2.pyi +12 -6
- corvic_generated/ingest/v2/resource_pb2.py +25 -25
- corvic_generated/orm/v1/agent_pb2.py +2 -2
- corvic_generated/orm/v1/agent_pb2.pyi +4 -0
- {corvic_engine-0.3.0rc67.dist-info → corvic_engine-0.3.0rc69.dist-info}/WHEEL +0 -0
- {corvic_engine-0.3.0rc67.dist-info → corvic_engine-0.3.0rc69.dist-info}/licenses/LICENSE +0 -0
@@ -4,6 +4,7 @@ from __future__ import annotations
|
|
4
4
|
|
5
5
|
import dataclasses
|
6
6
|
from collections.abc import Mapping, Sequence
|
7
|
+
from concurrent.futures import ThreadPoolExecutor
|
7
8
|
from typing import Any, Protocol
|
8
9
|
|
9
10
|
import pyarrow as pa
|
@@ -55,7 +56,6 @@ class ExecutionContext:
|
|
55
56
|
"""Description of the computation to be completed."""
|
56
57
|
|
57
58
|
tables_to_compute: list[TableComputeContext]
|
58
|
-
room_id: orm.RoomID
|
59
59
|
"""A list of tables that the caller wants in addition to table_to_compute.
|
60
60
|
|
61
61
|
This has advantages over multiple invocations of OpGraphExecutor when those
|
@@ -63,6 +63,8 @@ class ExecutionContext:
|
|
63
63
|
they are nodes in the tables_to_compute op graph.
|
64
64
|
"""
|
65
65
|
|
66
|
+
room_id: orm.RoomID
|
67
|
+
|
66
68
|
|
67
69
|
class TableComputeResult(Protocol):
|
68
70
|
"""Opaque container for the results of computing an OpGraph."""
|
@@ -107,8 +109,10 @@ class ExecutionResult(Protocol):
|
|
107
109
|
class OpGraphExecutor(Protocol):
|
108
110
|
"""Execute table op graphs."""
|
109
111
|
|
110
|
-
def execute(
|
111
|
-
self,
|
112
|
+
async def execute(
|
113
|
+
self,
|
114
|
+
context: ExecutionContext,
|
115
|
+
worker_threads: ThreadPoolExecutor | None = None,
|
112
116
|
) -> (
|
113
117
|
Ok[ExecutionResult]
|
114
118
|
| InvalidArgumentError
|
corvic/system/storage.py
CHANGED
@@ -5,9 +5,7 @@ from __future__ import annotations
|
|
5
5
|
import contextlib
|
6
6
|
import uuid
|
7
7
|
from collections.abc import Iterator
|
8
|
-
from typing import Any, BinaryIO, Final, Literal
|
9
|
-
|
10
|
-
from typing_extensions import Protocol
|
8
|
+
from typing import Any, BinaryIO, Final, Literal, Protocol
|
11
9
|
|
12
10
|
from corvic import orm
|
13
11
|
from corvic.result import Error
|
corvic/table/table.py
CHANGED
@@ -11,6 +11,7 @@ from typing import (
|
|
11
11
|
Final,
|
12
12
|
Literal,
|
13
13
|
Protocol,
|
14
|
+
Self,
|
14
15
|
TypeAlias,
|
15
16
|
TypeVar,
|
16
17
|
cast,
|
@@ -22,7 +23,6 @@ import pyarrow as pa
|
|
22
23
|
import pyarrow.parquet as pq
|
23
24
|
import structlog
|
24
25
|
from google.protobuf import struct_pb2
|
25
|
-
from typing_extensions import Self
|
26
26
|
|
27
27
|
from corvic import op_graph, orm
|
28
28
|
from corvic.op_graph import Encoder, Schema
|
@@ -378,7 +378,7 @@ class Table:
|
|
378
378
|
def to_bytes(self):
|
379
379
|
return self.op_graph.to_bytes()
|
380
380
|
|
381
|
-
def to_polars(
|
381
|
+
async def to_polars(
|
382
382
|
self, room_id: orm.RoomID, *, flatten_single_field: bool = False
|
383
383
|
) -> (
|
384
384
|
Ok[Iterable[pl.DataFrame]]
|
@@ -387,7 +387,7 @@ class Table:
|
|
387
387
|
| ResourceExhaustedError
|
388
388
|
):
|
389
389
|
"""Stream over the view as a series of Polars DataFrames."""
|
390
|
-
match self.to_batches(room_id=room_id):
|
390
|
+
match await self.to_batches(room_id=room_id):
|
391
391
|
case Ok(batch_reader):
|
392
392
|
pass
|
393
393
|
case err:
|
@@ -456,7 +456,7 @@ class Table:
|
|
456
456
|
).unwrap_or_raise(),
|
457
457
|
)
|
458
458
|
|
459
|
-
def to_batches(
|
459
|
+
async def to_batches(
|
460
460
|
self, room_id: orm.RoomID
|
461
461
|
) -> (
|
462
462
|
Ok[pa.RecordBatchReader]
|
@@ -477,7 +477,7 @@ class Table:
|
|
477
477
|
)
|
478
478
|
],
|
479
479
|
)
|
480
|
-
return self.client.executor.execute(context).map(
|
480
|
+
return (await self.client.executor.execute(context)).map(
|
481
481
|
lambda result: result.tables[0].to_batch_reader()
|
482
482
|
)
|
483
483
|
|
@@ -1,11 +1,10 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: corvic-engine
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.0rc69
|
4
4
|
Classifier: Environment :: Console
|
5
5
|
Classifier: License :: Other/Proprietary License
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
7
7
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
8
|
-
Classifier: Programming Language :: Python :: 3.10
|
9
8
|
Classifier: Programming Language :: Python :: 3.11
|
10
9
|
Classifier: Programming Language :: Python :: 3.12
|
11
10
|
Classifier: Programming Language :: Python :: 3.13
|
@@ -35,8 +34,8 @@ Provides-Extra: telemetry
|
|
35
34
|
License-File: LICENSE
|
36
35
|
Summary: Seamless embedding generation and retrieval.
|
37
36
|
Author-email: Corvic Team <contact@corvic.ai>
|
38
|
-
Requires-Python: >=3.
|
37
|
+
Requires-Python: >=3.11
|
39
38
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
40
39
|
|
41
|
-
# Corvic Engine [](https://github.com/corvicai/corvic-engine/actions/workflows/ci.yaml) [](https://github.com/corvicai/corvic-engine/actions/workflows/ci.yaml) [](https://www.python.org/downloads/release/python-3110/)
|
42
41
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
corvic_engine-0.3.
|
2
|
-
corvic_engine-0.3.
|
3
|
-
corvic_engine-0.3.
|
1
|
+
corvic_engine-0.3.0rc69.dist-info/METADATA,sha256=ghFEpRbH31TvNLFa7ED6JjCeXkXprdqQJKkF8uLn2OQ,1814
|
2
|
+
corvic_engine-0.3.0rc69.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
|
3
|
+
corvic_engine-0.3.0rc69.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
|
4
4
|
corvic/context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
corvic/context/__init__.py,sha256=
|
5
|
+
corvic/context/__init__.py,sha256=J69SWL27p4euoS3e_Z1K-rqSFRzGdBT3ryuRfM9r9cM,1498
|
6
6
|
corvic/embed/node2vec.py,sha256=Qep1lYMKN4nL4z6Ftylr0pj2aJ2LJmWRmnZV27xYJ-M,11251
|
7
7
|
corvic/embed/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
corvic/embed/__init__.py,sha256=cZZSrRXmezJuTafcQgrB1rbitqXZTVY1B5ryRzAlvgs,144
|
@@ -13,18 +13,18 @@ corvic/engine/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
corvic/engine/_native.pyi,sha256=KYMPtvXqHZ-jMgZohLf4se3rr-rBpCihmjANcr6s8ag,1390
|
14
14
|
corvic/engine/__init__.py,sha256=XL4Vg7rNcBi29ccVelpeFizR9oJtGYXDn84W9zok9d4,975
|
15
15
|
corvic/model/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
corvic/model/_base_model.py,sha256=
|
17
|
-
corvic/model/_completion_model.py,sha256=
|
16
|
+
corvic/model/_base_model.py,sha256=fpgzxwQ6XbIb8Kp-QbTsItOMAKy0HkE5E0xnLNxLjYc,9081
|
17
|
+
corvic/model/_completion_model.py,sha256=G7Li22A8mIs-g5FEF9Y0kGSie9j50hyKWuM3ejBm2VY,7951
|
18
18
|
corvic/model/_defaults.py,sha256=yoKPPSmYJCE5YAD5jLTEmT4XNf_zXoggNK-uyG8MfVs,1524
|
19
19
|
corvic/model/_errors.py,sha256=Ctlq04SDwHzJPvLaL1rzqzwVqf2b50EILfW3cH4vnh8,261
|
20
20
|
corvic/model/_feature_type.py,sha256=Y-_-wa9fv7XaCAkxfjjoCLxxK2Ftfba-PMefD7bNXzs,917
|
21
|
-
corvic/model/_feature_view.py,sha256=
|
22
|
-
corvic/model/_pipeline.py,sha256=
|
21
|
+
corvic/model/_feature_view.py,sha256=vRh9eVDlais8enZVymQtwPz8vd3QtwSRYR1CnlKtCnA,49698
|
22
|
+
corvic/model/_pipeline.py,sha256=rAhs3gawRORJnnOtjtyWMz6HkTBkVJlyWAP1jB45q4c,16249
|
23
23
|
corvic/model/_proto_orm_convert.py,sha256=zsvA6DLQ2RGXhRW0zok-iyGyNkKzngmh8uSBXtQCZeU,23409
|
24
|
-
corvic/model/_resource.py,sha256=
|
24
|
+
corvic/model/_resource.py,sha256=5T0z0Bdy2_q2IgAT4kIHSVHF3e9uuh9no-Uwqc0cM2w,7743
|
25
25
|
corvic/model/_room.py,sha256=36mXngZ38L4mr6_LgUm-QgsUUaoGMiYQRfvXLV_jd-4,2914
|
26
|
-
corvic/model/_source.py,sha256=
|
27
|
-
corvic/model/_space.py,sha256=
|
26
|
+
corvic/model/_source.py,sha256=ss2JE0EMeWVdZUnp9xqeyzuoQn1VnR1HSNMK4agrd-8,9867
|
27
|
+
corvic/model/_space.py,sha256=Yo9c1JZqXZdNEcwyov5je2siei2hk7UymP_z5BU8UHU,36475
|
28
28
|
corvic/model/__init__.py,sha256=9xleS6S21RjQAHJwCGuAcwLIiBFmsmnld8xYAkim2gg,2997
|
29
29
|
corvic/op_graph/aggregation.py,sha256=8X6vqXD7dLHrhYJU0BqmhUsWGbzD1zSP5Db5VHdIru4,6187
|
30
30
|
corvic/op_graph/encoders.py,sha256=93wYoBCn_us5lRCkqvjaP0LTg3LBB3yEfhzICv06bB0,10460
|
@@ -32,28 +32,28 @@ corvic/op_graph/errors.py,sha256=I4NE5053d0deGm5xx5EmyP4f98qx42xnIsW1IA-2hy4,163
|
|
32
32
|
corvic/op_graph/feature_types.py,sha256=ZE6onUGW4Xa7tPL4XgRVQ1Tvj5FVJJ66di3ShDTR0Ak,9623
|
33
33
|
corvic/op_graph/ops.py,sha256=Ckg5MJXLR6Ek67Vp1SelhQXSQUu7ySIgMsznbxW3UPk,111768
|
34
34
|
corvic/op_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
corvic/op_graph/row_filters/_jsonlogic.py,sha256=
|
35
|
+
corvic/op_graph/row_filters/_jsonlogic.py,sha256=0UdwOZmIGp4yuExHM3qqAnJYmcGv7iuc3vLub3GD-9Y,7685
|
36
36
|
corvic/op_graph/row_filters/_row_filters.py,sha256=p3O7tJbLsy65Vs7shAiDjpdM4RzYA4-fyzwskt15pPk,9469
|
37
37
|
corvic/op_graph/row_filters/__init__.py,sha256=1sibH_kLw7t_9bpRccnEGWqdCiN0VaUh9LMMIMCRyL8,575
|
38
38
|
corvic/op_graph/sample_strategy.py,sha256=DrbtJ3ORkIRfyIE_FdlOh_UMnCW_K9jL1LeonVYb3bU,3007
|
39
39
|
corvic/op_graph/_schema.py,sha256=7Uuun9e6PRrtOeJLsFD8VzkwWeUpbnBcD37NpMKOcmQ,5685
|
40
40
|
corvic/op_graph/_transformations.py,sha256=tROo0uR0km06LAsx4CSrR0OWPhFbvToFEowGcuAuRAs,9606
|
41
41
|
corvic/op_graph/__init__.py,sha256=1DMrQfuuS3FkLa9DXYDjSDLurdxxpG5H1jB2ctaa9xo,1444
|
42
|
-
corvic/orm/base.py,sha256=
|
42
|
+
corvic/orm/base.py,sha256=R9t2zGZXID5RdzW7sDjcsIFjYjLxw--G2712rFTlW-o,8771
|
43
43
|
corvic/orm/errors.py,sha256=uFhFXpVG6pby1lndJZHGHxv3Y0Fbt0RiaZ-CqDfuY1o,545
|
44
44
|
corvic/orm/func/utc_func.py,sha256=-FC6w9wBWXejMv1AICT2Gg7tdkSo7gqL2dFT-YKPGQ4,4518
|
45
45
|
corvic/orm/func/uuid_func.py,sha256=oXPjDGAl3mvlNtvcvBrLmRRHPJgtKffShIPbHm-EswA,1152
|
46
46
|
corvic/orm/func/__init__.py,sha256=X47bbG7G-rDGmRkEGMq4Vn7mPKePdx724xQIwd_pUc0,471
|
47
|
-
corvic/orm/ids.py,sha256=
|
47
|
+
corvic/orm/ids.py,sha256=L9v7toMmRh7aM8ZtDGLyKoQaidG5jQDFC3WlwrmSu7g,6758
|
48
48
|
corvic/orm/keys.py,sha256=Ag6Xbpvxev-VByT1KJ8ChUn9vKVEzkkMXxrjvtADCtY,2182
|
49
|
-
corvic/orm/mixins.py,sha256=
|
49
|
+
corvic/orm/mixins.py,sha256=tBsXLdP_7vuNmyVe70yCfIzrPz9oX7dM67IToChzPBs,17995
|
50
50
|
corvic/orm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
51
|
corvic/orm/_proto_columns.py,sha256=tcOu92UjFJFYZLasS6sWJQBDRK26yrnmpTii_LDY4iw,913
|
52
52
|
corvic/orm/__init__.py,sha256=nnppzLqUIdS1NEeoEyVhWjuajhceSiPLBrnVPDbkbO8,12318
|
53
53
|
corvic/pa_scalar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
54
|
corvic/pa_scalar/_const.py,sha256=1nk6w3Y7crd3J5jSCq7DRVa1lcGk4H1RUr1l4NjnlzE,868
|
55
55
|
corvic/pa_scalar/_from_value.py,sha256=fS3TNPcPI3jAKGmcUIhn8rdqdQEAwgTLEneVxFUeK6M,27531
|
56
|
-
corvic/pa_scalar/_temporal.py,sha256=
|
56
|
+
corvic/pa_scalar/_temporal.py,sha256=HfkONq6cAk2oYK-4GRl6q_nFZWmCuybgHzhTxnBitzM,7833
|
57
57
|
corvic/pa_scalar/_to_value.py,sha256=U8DoWDMSl58Yi35yd3JS5Gj773e5IOPa2UDfuZqTkjk,13307
|
58
58
|
corvic/pa_scalar/_types.py,sha256=shbytO0ji-H2rBOX_1fooVOshb22wwkVU1W99VBKz1A,1131
|
59
59
|
corvic/pa_scalar/__init__.py,sha256=1nfc0MFGpw78RQEI13VE5hpHuyw_DoE7sJbmzqx5pws,1063
|
@@ -62,21 +62,22 @@ corvic/proto_wrapper/_errors.py,sha256=0HFmBK9EGYi4lXJ3RFsktHoPZn2m3cMKroI0Eir0J
|
|
62
62
|
corvic/proto_wrapper/_wrappers.py,sha256=tKVVJqVRBPoQl0wFnwGx7ye5AFMztz-ZUj3ar_DBthI,2104
|
63
63
|
corvic/proto_wrapper/__init__.py,sha256=KfwiW9Tec3aCrhhEmdP3bhJ1ZLlKdI7QTM3xEIhpMcg,278
|
64
64
|
corvic/result/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
|
-
corvic/result/__init__.py,sha256=
|
65
|
+
corvic/result/__init__.py,sha256=AkGwfaMHQ_zYOefosqxOn1FluHO6Mi3ZeXdipFQF62s,17149
|
66
66
|
corvic/sql/parse_ops.py,sha256=5jm2CHycTqzdu9apXTgcvwwyBVpjf7n5waqKfIa84JA,29940
|
67
67
|
corvic/sql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
68
|
corvic/sql/__init__.py,sha256=kZ1a39KVZ08P8Bg6XuXDLD_dTQX0k620u4nwxZF4SnY,303
|
69
|
-
corvic/system/client.py,sha256=
|
70
|
-
corvic/system/in_memory_executor.py,sha256=
|
71
|
-
corvic/system/op_graph_executor.py,sha256=
|
69
|
+
corvic/system/client.py,sha256=JcA-fPraqDkl9f8BiClS0qeGY6wzKcEDPymutWrJo54,812
|
70
|
+
corvic/system/in_memory_executor.py,sha256=bR1C0-OVdnPxoh3eZC4AHoLR5M1bWO7G--27ANOvygg,66402
|
71
|
+
corvic/system/op_graph_executor.py,sha256=dFxbM_kk5ybPxs3NwyuW3Xg-xCB031toWCFv8eEW8qE,3639
|
72
72
|
corvic/system/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
73
|
corvic/system/staging.py,sha256=K5P5moiuAMfPx7lxK4mArxeURBwKoyB6x9HGu9JJ16E,1846
|
74
|
-
corvic/system/storage.py,sha256=
|
74
|
+
corvic/system/storage.py,sha256=ypX6e9D3r4hzhrCgtpPi3ftEDxc8kdN-nByZc6_aCRI,5551
|
75
|
+
corvic/system/_column_encoding.py,sha256=feSWIv4vKstVq-aavWPk53YucUiq7rZvuyofqTicXBE,7574
|
75
76
|
corvic/system/_dimension_reduction.py,sha256=vyD8wOs0vE-hlVnCrBTjStTowAPWYREqnQ_bVuGYvis,2907
|
76
|
-
corvic/system/_embedder.py,sha256=
|
77
|
-
corvic/system/_image_embedder.py,sha256
|
78
|
-
corvic/system/_planner.py,sha256=
|
79
|
-
corvic/system/_text_embedder.py,sha256=
|
77
|
+
corvic/system/_embedder.py,sha256=unPqwixqjiSRVbfqaOJ7M2HYoT4M9WHbM4P0Bt7whsY,5328
|
78
|
+
corvic/system/_image_embedder.py,sha256=uUE7h9rqVS-Eh3kWIM9DekLR0DlNQ-bVRV_l2sWUB6A,10401
|
79
|
+
corvic/system/_planner.py,sha256=ecL-HW8PVz5eWJ1Ktf-RAD2IdZkHu3GuBtXdqElo4ts,8210
|
80
|
+
corvic/system/_text_embedder.py,sha256=NDi--3_tzwIWVImjhFWmp8dHmydGGXNu6GYH8qODsIc,4000
|
80
81
|
corvic/system/__init__.py,sha256=U28LyDwpirtG0WDXqE6dzkx8PipvY2rtZSex03C7xlY,2792
|
81
82
|
corvic/system_sqlite/client.py,sha256=NNrcHxCoHPs8piR_-mGEA1KZ2m54OAhHg8DZvI9fWD0,7475
|
82
83
|
corvic/system_sqlite/fs_blob_store.py,sha256=pYTMPiWYC6AUIdcgmRj8lvL7Chg82rf5dac6bKGaqL0,8461
|
@@ -85,7 +86,7 @@ corvic/system_sqlite/rdbms_blob_store.py,sha256=gTP_tQfTVb3wzZkzo8ys1zaz0rSrERzb
|
|
85
86
|
corvic/system_sqlite/staging.py,sha256=8E6gyk3Mqp8JmntwiE6r9K8uvl1V-Rr-DrFrI5fUV4s,17385
|
86
87
|
corvic/system_sqlite/__init__.py,sha256=F4UN9vFsXiDY2AKk1jYZPuWWJpSugKHS7ghXeZYlbZs,390
|
87
88
|
corvic/table/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
|
-
corvic/table/table.py,sha256=
|
89
|
+
corvic/table/table.py,sha256=6LYDaPnLL5QVhQcjK3tP3YDWxMvJQsZYEVHbnzQXRB0,25812
|
89
90
|
corvic/table/__init__.py,sha256=Gj0IR8BQF5PZK92Us7PP0ZigMsVyrfWJupzH8TgzRQk,588
|
90
91
|
corvic/version/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
92
|
corvic/version/__init__.py,sha256=JlkRLvKXsu3zIxhdynO_0Ub5NfQOvGjfwCRkNnaOu9U,1125
|
@@ -112,9 +113,9 @@ corvic_generated/feature/v1/experiment_pb2_grpc.py,sha256=B2t03V3SImzl6cZkJefpWX
|
|
112
113
|
corvic_generated/feature/v1/space_pb2.py,sha256=UaKTQq8gEcmMm6zbODc3OpS_KbbmAuEVa5uRFtwedOk,11969
|
113
114
|
corvic_generated/feature/v1/space_pb2_grpc.py,sha256=4zW43K2lSvrMRuPrr9Qu6bqcALPkppMJvnwBhp5CgFU,10233
|
114
115
|
corvic_generated/feature/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
115
|
-
corvic_generated/feature/v2/feature_view_pb2.py,sha256=
|
116
|
+
corvic_generated/feature/v2/feature_view_pb2.py,sha256=UA9GtA4-xT6tQYwW8OPkT7v2UUbkr9jAC109dvghT0Y,10707
|
116
117
|
corvic_generated/feature/v2/feature_view_pb2_grpc.py,sha256=7cFfkmpQvdsuzPaeMrc0wAv2lyiHzmG6G-nWc8l6VHo,10945
|
117
|
-
corvic_generated/feature/v2/space_pb2.py,sha256=
|
118
|
+
corvic_generated/feature/v2/space_pb2.py,sha256=egtZ4QoklmUKicj2pAmnu9ml1_8fZTEaK2L7P66sUjA,21440
|
118
119
|
corvic_generated/feature/v2/space_pb2_grpc.py,sha256=OJ8bqDou85cxgOBpMYv-KZ85jZWriXCt1UzT3WuBpIk,18779
|
119
120
|
corvic_generated/ingest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
120
121
|
corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -125,7 +126,7 @@ corvic_generated/ingest/v2/pipeline_pb2.py,sha256=2_TOCIOM5nqt3HB1Sb86qqYix-qfF2
|
|
125
126
|
corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
|
126
127
|
corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
|
127
128
|
corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
|
128
|
-
corvic_generated/ingest/v2/resource_pb2.py,sha256=
|
129
|
+
corvic_generated/ingest/v2/resource_pb2.py,sha256=fBeCa-mmyfU2QyYkY2EI8LPYFPynVONCmSKPUUncAhM,16248
|
129
130
|
corvic_generated/ingest/v2/resource_pb2_grpc.py,sha256=Er-l9DfnUJVX3PFRAoKZonyPww1X8bn9PcC4ODHfX-g,17045
|
130
131
|
corvic_generated/ingest/v2/room_pb2.py,sha256=x4FEUSP6qt6-nUxVENidEW0Y4jHqe_vtgIXacuEB7NU,8180
|
131
132
|
corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
|
@@ -139,7 +140,7 @@ corvic_generated/model/v1alpha/models_pb2.py,sha256=3rorA81pyk826oXnCn0nfVo1aRcA
|
|
139
140
|
corvic_generated/model/v1alpha/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
140
141
|
corvic_generated/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
141
142
|
corvic_generated/orm/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
142
|
-
corvic_generated/orm/v1/agent_pb2.py,sha256=
|
143
|
+
corvic_generated/orm/v1/agent_pb2.py,sha256=4fHu4ZNwUX4eRThj23Te-QNR2NDCbbLWKeSQa0zoEbg,4147
|
143
144
|
corvic_generated/orm/v1/agent_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
144
145
|
corvic_generated/orm/v1/common_pb2.py,sha256=pu1Rto4Pm8ntdB12Rgb_qnz3qOalxlOnrLuKE1fCETs,3490
|
145
146
|
corvic_generated/orm/v1/common_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
|
@@ -169,7 +170,7 @@ corvic_generated/feature/v1/space_pb2.pyi,sha256=n8ntvEwKty8DyhLIZXCLZp9fEy97Wuc
|
|
169
170
|
corvic_generated/feature/v1/space_pb2_grpc.pyi,sha256=9Uiq5RktKOhFeNCsO4HnH1DsP_vUuJVL_q89irLfkTI,6478
|
170
171
|
corvic_generated/feature/v2/feature_view_pb2.pyi,sha256=qX2oDpnwrKtAuxQ_S3ow3-rhA8SKGsyhElEu8aWO2vQ,5380
|
171
172
|
corvic_generated/feature/v2/feature_view_pb2_grpc.pyi,sha256=DBzKaij5EvK5ev2FBtkX6ov-H0AtsgeGGbRtjS-T8BE,7109
|
172
|
-
corvic_generated/feature/v2/space_pb2.pyi,sha256=
|
173
|
+
corvic_generated/feature/v2/space_pb2.pyi,sha256=tFc52V9MVxn3x59Bk39XwjJDe82At7VobzdEcRx19ko,14425
|
173
174
|
corvic_generated/feature/v2/space_pb2_grpc.pyi,sha256=9011aCTfJYWjgK5UoiS9NjRKIJSDjuX51DB5tw5xc10,8267
|
174
175
|
corvic_generated/ingest/v1/service_pb2.pyi,sha256=e2KYl6sQ11MyePRGkKU5gi05_uCF7cCM0fInG-BwfHg,8528
|
175
176
|
corvic_generated/ingest/v1/service_pb2_grpc.pyi,sha256=phnkwO0XzxuZZhL-BICXfYv7Z9TcNxLQ_eMZFCEz1g0,14052
|
@@ -187,7 +188,7 @@ corvic_generated/ingest/v2/table_pb2.pyi,sha256=p22F8kv0HfM-9OzGP88bLofxmUtxfLR5
|
|
187
188
|
corvic_generated/ingest/v2/table_pb2_grpc.pyi,sha256=AEXYNtrU4xyENumcCrkD2FmFV7T1UVidxxeZ5pyE4Qc,4554
|
188
189
|
corvic_generated/model/v1alpha/models_pb2.pyi,sha256=ELw1kPiAaYNDtrRk2pTMjU3v9nQtluoS4p5FHOBBc9o,10853
|
189
190
|
corvic_generated/model/v1alpha/models_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
190
|
-
corvic_generated/orm/v1/agent_pb2.pyi,sha256=
|
191
|
+
corvic_generated/orm/v1/agent_pb2.pyi,sha256=WRUrntKx3-eFEs2uYuZ__9H7VL-yY5dZ3HuWDyTsmvA,5069
|
191
192
|
corvic_generated/orm/v1/agent_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
192
193
|
corvic_generated/orm/v1/common_pb2.pyi,sha256=PZi9KfnXWzlQC0bMuDC71IOmgIaYClY2jPghzKV-mAo,3557
|
193
194
|
corvic_generated/orm/v1/common_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
@@ -205,5 +206,5 @@ corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykF
|
|
205
206
|
corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
|
206
207
|
corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
|
207
208
|
corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
|
208
|
-
corvic/engine/_native.pyd,sha256=
|
209
|
-
corvic_engine-0.3.
|
209
|
+
corvic/engine/_native.pyd,sha256=YAXCmHwCe-hyawQOP1W5G29r3_XQUNy-yp6t1whP88w,438272
|
210
|
+
corvic_engine-0.3.0rc69.dist-info/RECORD,,
|
@@ -17,7 +17,7 @@ from corvic_generated.ingest.v2 import source_pb2 as corvic_dot_ingest_dot_v2_do
|
|
17
17
|
from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
|
18
18
|
|
19
19
|
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\
|
20
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x9a\x01\n\x17ListFeatureViewsRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\"q\n\x18ListFeatureViewsResponse\x12U\n\x14\x66\x65\x61ture_view_entries\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x12\x66\x65\x61tureViewEntries\"\xd3\x03\n\x18\x43reateFeatureViewRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12*\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x8a\x01\n\nsource_ids\x18\x04 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x06 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x05\x10\x06R\x0foutput_entities\"n\n\x19\x43reateFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x92\x01\n\x18\x44\x65leteFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1b\n\x19\x44\x65leteFeatureViewResponse\"\x8f\x02\n\"GetFeatureViewRelationshipsRequest\x12\x8a\x01\n\nsource_ids\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x03 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x02\x10\x03R\x0eoutput_entites\"U\n\x12SourceRelationship\x12?\n\x1crelationship_path_source_ids\x18\x03 \x03(\tR\x19relationshipPathSourceIds\"\x7f\n#GetFeatureViewRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v2.SourceRelationshipR\x13sourceRelationships2\xea\x04\n\x12\x46\x65\x61tureViewService\x12j\n\x0eGetFeatureView\x12(.corvic.feature.v2.GetFeatureViewRequest\x1a).corvic.feature.v2.GetFeatureViewResponse\"\x03\x90\x02\x01\x12p\n\x11\x43reateFeatureView\x12+.corvic.feature.v2.CreateFeatureViewRequest\x1a,.corvic.feature.v2.CreateFeatureViewResponse\"\x00\x12p\n\x11\x44\x65leteFeatureView\x12+.corvic.feature.v2.DeleteFeatureViewRequest\x1a,.corvic.feature.v2.DeleteFeatureViewResponse\"\x00\x12p\n\x10ListFeatureViews\x12*.corvic.feature.v2.ListFeatureViewsRequest\x1a+.corvic.feature.v2.ListFeatureViewsResponse\"\x03\x90\x02\x01\x12\x91\x01\n\x1bGetFeatureViewRelationships\x12\x35.corvic.feature.v2.GetFeatureViewRelationshipsRequest\x1a\x36.corvic.feature.v2.GetFeatureViewRelationshipsResponse\"\x03\x90\x02\x01\x62\x06proto3')
|
21
21
|
|
22
22
|
_globals = globals()
|
23
23
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
@@ -31,7 +31,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
31
31
|
_globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._options = None
|
32
32
|
_globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
33
33
|
_globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._options = None
|
34
|
-
_globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\
|
34
|
+
_globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
35
35
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._options = None
|
36
36
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
37
37
|
_globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._options = None
|
@@ -59,23 +59,23 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
59
59
|
_globals['_GETFEATUREVIEWRESPONSE']._serialized_start=740
|
60
60
|
_globals['_GETFEATUREVIEWRESPONSE']._serialized_end=847
|
61
61
|
_globals['_LISTFEATUREVIEWSREQUEST']._serialized_start=850
|
62
|
-
_globals['_LISTFEATUREVIEWSREQUEST']._serialized_end=
|
63
|
-
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_start=
|
64
|
-
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_end=
|
65
|
-
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_start=
|
66
|
-
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_end=
|
67
|
-
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_start=
|
68
|
-
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_end=
|
69
|
-
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_start=
|
70
|
-
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_end=
|
71
|
-
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_start=
|
72
|
-
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_end=
|
73
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_start=
|
74
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_end=
|
75
|
-
_globals['_SOURCERELATIONSHIP']._serialized_start=
|
76
|
-
_globals['_SOURCERELATIONSHIP']._serialized_end=
|
77
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=
|
78
|
-
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=
|
79
|
-
_globals['_FEATUREVIEWSERVICE']._serialized_start=
|
80
|
-
_globals['_FEATUREVIEWSERVICE']._serialized_end=
|
62
|
+
_globals['_LISTFEATUREVIEWSREQUEST']._serialized_end=1004
|
63
|
+
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_start=1006
|
64
|
+
_globals['_LISTFEATUREVIEWSRESPONSE']._serialized_end=1119
|
65
|
+
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_start=1122
|
66
|
+
_globals['_CREATEFEATUREVIEWREQUEST']._serialized_end=1589
|
67
|
+
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_start=1591
|
68
|
+
_globals['_CREATEFEATUREVIEWRESPONSE']._serialized_end=1701
|
69
|
+
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_start=1704
|
70
|
+
_globals['_DELETEFEATUREVIEWREQUEST']._serialized_end=1850
|
71
|
+
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_start=1852
|
72
|
+
_globals['_DELETEFEATUREVIEWRESPONSE']._serialized_end=1879
|
73
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_start=1882
|
74
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_end=2153
|
75
|
+
_globals['_SOURCERELATIONSHIP']._serialized_start=2155
|
76
|
+
_globals['_SOURCERELATIONSHIP']._serialized_end=2240
|
77
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=2242
|
78
|
+
_globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=2369
|
79
|
+
_globals['_FEATUREVIEWSERVICE']._serialized_start=2372
|
80
|
+
_globals['_FEATUREVIEWSERVICE']._serialized_end=2990
|
81
81
|
# @@protoc_insertion_point(module_scope)
|
@@ -21,7 +21,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
21
21
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
22
22
|
|
23
23
|
|
24
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x96\x01\n\x11ListSpacesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\x95\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xb4\x01\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12\x1b\n\tauto_sync\x18\x02 \x01(\x08R\x08\x61utoSync\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x94\x01\n\x11ListSpacesRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\xb6\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x1f\n\x04name\x18\x05 \x01(\tB\x0b\xbaH\x08r\x03\x18\x96\x01\xd8\x01\x01R\x04name\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xb0\x02\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12#\n\tauto_sync\x18\x02 \x01(\x08\x42\x06\xbaH\x03\xc8\x01\x01R\x08\x61utoSync\x12\x31\n\x0enew_space_name\x18\x03 \x01(\tB\x0b\xbaH\x08r\x03\x18\x96\x01\xd8\x01\x01R\x0cnewSpaceName\x12?\n\x15new_space_description\x18\x04 \x01(\tB\x0b\xbaH\x08r\x03\x18\xe8\x07\xd8\x01\x01R\x13newSpaceDescription\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
|
25
25
|
|
26
26
|
_globals = globals()
|
27
27
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
@@ -35,11 +35,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
35
35
|
_globals['_GETSPACEREQUEST'].fields_by_name['space_id']._options = None
|
36
36
|
_globals['_GETSPACEREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
37
37
|
_globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._options = None
|
38
|
-
_globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\
|
38
|
+
_globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
39
39
|
_globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._options = None
|
40
40
|
_globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
41
41
|
_globals['_CREATESPACEREQUEST'].fields_by_name['description']._options = None
|
42
42
|
_globals['_CREATESPACEREQUEST'].fields_by_name['description']._serialized_options = b'\272H\005r\003\030\350\007'
|
43
|
+
_globals['_CREATESPACEREQUEST'].fields_by_name['name']._options = None
|
44
|
+
_globals['_CREATESPACEREQUEST'].fields_by_name['name']._serialized_options = b'\272H\010r\003\030\226\001\330\001\001'
|
43
45
|
_globals['_DELETESPACEREQUEST'].fields_by_name['id']._options = None
|
44
46
|
_globals['_DELETESPACEREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
45
47
|
_globals['_GETSPACERESULTREQUEST'].fields_by_name['space_id']._options = None
|
@@ -58,6 +60,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
58
60
|
_globals['_GETSPACERUNREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
59
61
|
_globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._options = None
|
60
62
|
_globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
|
63
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['auto_sync']._options = None
|
64
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['auto_sync']._serialized_options = b'\272H\003\310\001\001'
|
65
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_name']._options = None
|
66
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_name']._serialized_options = b'\272H\010r\003\030\226\001\330\001\001'
|
67
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_description']._options = None
|
68
|
+
_globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_description']._serialized_options = b'\272H\010r\003\030\350\007\330\001\001'
|
61
69
|
_globals['_SPACESERVICE'].methods_by_name['GetSpace']._options = None
|
62
70
|
_globals['_SPACESERVICE'].methods_by_name['GetSpace']._serialized_options = b'\220\002\001'
|
63
71
|
_globals['_SPACESERVICE'].methods_by_name['ListSpaces']._options = None
|
@@ -72,8 +80,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
72
80
|
_globals['_SPACESERVICE'].methods_by_name['ListSpaceRuns']._serialized_options = b'\220\002\001'
|
73
81
|
_globals['_SPACESERVICE'].methods_by_name['GetSpaceRun']._options = None
|
74
82
|
_globals['_SPACESERVICE'].methods_by_name['GetSpaceRun']._serialized_options = b'\220\002\001'
|
75
|
-
_globals['_SPACETYPE']._serialized_start=
|
76
|
-
_globals['_SPACETYPE']._serialized_end=
|
83
|
+
_globals['_SPACETYPE']._serialized_start=5540
|
84
|
+
_globals['_SPACETYPE']._serialized_end=5677
|
77
85
|
_globals['_PARAMETERS']._serialized_start=282
|
78
86
|
_globals['_PARAMETERS']._serialized_end=1114
|
79
87
|
_globals['_EMBEDDINGMETRICS']._serialized_start=1117
|
@@ -87,51 +95,51 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
87
95
|
_globals['_GETSPACERESPONSE']._serialized_start=2127
|
88
96
|
_globals['_GETSPACERESPONSE']._serialized_end=2209
|
89
97
|
_globals['_LISTSPACESREQUEST']._serialized_start=2212
|
90
|
-
_globals['_LISTSPACESREQUEST']._serialized_end=
|
91
|
-
_globals['_LISTSPACESRESPONSE']._serialized_start=
|
92
|
-
_globals['_LISTSPACESRESPONSE']._serialized_end=
|
93
|
-
_globals['_CREATESPACEREQUEST']._serialized_start=
|
94
|
-
_globals['_CREATESPACEREQUEST']._serialized_end=
|
95
|
-
_globals['_CREATESPACERESPONSE']._serialized_start=
|
96
|
-
_globals['_CREATESPACERESPONSE']._serialized_end=
|
97
|
-
_globals['_DELETESPACEREQUEST']._serialized_start=
|
98
|
-
_globals['_DELETESPACEREQUEST']._serialized_end=
|
99
|
-
_globals['_DELETESPACERESPONSE']._serialized_start=
|
100
|
-
_globals['_DELETESPACERESPONSE']._serialized_end=
|
101
|
-
_globals['_GETSPACERESULTREQUEST']._serialized_start=
|
102
|
-
_globals['_GETSPACERESULTREQUEST']._serialized_end=
|
103
|
-
_globals['_GETSPACERESULTRESPONSE']._serialized_start=
|
104
|
-
_globals['_GETSPACERESULTRESPONSE']._serialized_end=
|
105
|
-
_globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_start=
|
106
|
-
_globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_end=
|
107
|
-
_globals['_EMBEDDINGROWDATA']._serialized_start=
|
108
|
-
_globals['_EMBEDDINGROWDATA']._serialized_end=
|
109
|
-
_globals['_EMBEDDINGTABLEDATA']._serialized_start=
|
110
|
-
_globals['_EMBEDDINGTABLEDATA']._serialized_end=
|
111
|
-
_globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_start=
|
112
|
-
_globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_end=
|
113
|
-
_globals['_SOURCEKEY']._serialized_start=
|
114
|
-
_globals['_SOURCEKEY']._serialized_end=
|
115
|
-
_globals['_VISUALIZATIONDATA']._serialized_start=
|
116
|
-
_globals['_VISUALIZATIONDATA']._serialized_end=
|
117
|
-
_globals['_GETVISUALIZATIONREQUEST']._serialized_start=
|
118
|
-
_globals['_GETVISUALIZATIONREQUEST']._serialized_end=
|
119
|
-
_globals['_GETVISUALIZATIONRESPONSE']._serialized_start=
|
120
|
-
_globals['_GETVISUALIZATIONRESPONSE']._serialized_end=
|
121
|
-
_globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_start=
|
122
|
-
_globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_end=
|
123
|
-
_globals['_LISTSPACERUNSREQUEST']._serialized_start=
|
124
|
-
_globals['_LISTSPACERUNSREQUEST']._serialized_end=
|
125
|
-
_globals['_LISTSPACERUNSRESPONSE']._serialized_start=
|
126
|
-
_globals['_LISTSPACERUNSRESPONSE']._serialized_end=
|
127
|
-
_globals['_GETSPACERUNREQUEST']._serialized_start=
|
128
|
-
_globals['_GETSPACERUNREQUEST']._serialized_end=
|
129
|
-
_globals['_GETSPACERUNRESPONSE']._serialized_start=
|
130
|
-
_globals['_GETSPACERUNRESPONSE']._serialized_end=
|
131
|
-
_globals['_PATCHSPACEREQUEST']._serialized_start=
|
132
|
-
_globals['_PATCHSPACEREQUEST']._serialized_end=
|
133
|
-
_globals['_PATCHSPACERESPONSE']._serialized_start=
|
134
|
-
_globals['_PATCHSPACERESPONSE']._serialized_end=
|
135
|
-
_globals['_SPACESERVICE']._serialized_start=
|
136
|
-
_globals['_SPACESERVICE']._serialized_end=
|
98
|
+
_globals['_LISTSPACESREQUEST']._serialized_end=2360
|
99
|
+
_globals['_LISTSPACESRESPONSE']._serialized_start=2362
|
100
|
+
_globals['_LISTSPACESRESPONSE']._serialized_end=2450
|
101
|
+
_globals['_CREATESPACEREQUEST']._serialized_start=2453
|
102
|
+
_globals['_CREATESPACEREQUEST']._serialized_end=2763
|
103
|
+
_globals['_CREATESPACERESPONSE']._serialized_start=2765
|
104
|
+
_globals['_CREATESPACERESPONSE']._serialized_end=2850
|
105
|
+
_globals['_DELETESPACEREQUEST']._serialized_start=2853
|
106
|
+
_globals['_DELETESPACEREQUEST']._serialized_end=2993
|
107
|
+
_globals['_DELETESPACERESPONSE']._serialized_start=2995
|
108
|
+
_globals['_DELETESPACERESPONSE']._serialized_end=3016
|
109
|
+
_globals['_GETSPACERESULTREQUEST']._serialized_start=3019
|
110
|
+
_globals['_GETSPACERESULTREQUEST']._serialized_end=3174
|
111
|
+
_globals['_GETSPACERESULTRESPONSE']._serialized_start=3176
|
112
|
+
_globals['_GETSPACERESULTRESPONSE']._serialized_end=3231
|
113
|
+
_globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_start=3234
|
114
|
+
_globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_end=3396
|
115
|
+
_globals['_EMBEDDINGROWDATA']._serialized_start=3398
|
116
|
+
_globals['_EMBEDDINGROWDATA']._serialized_end=3500
|
117
|
+
_globals['_EMBEDDINGTABLEDATA']._serialized_start=3502
|
118
|
+
_globals['_EMBEDDINGTABLEDATA']._serialized_end=3598
|
119
|
+
_globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_start=3601
|
120
|
+
_globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_end=3765
|
121
|
+
_globals['_SOURCEKEY']._serialized_start=3767
|
122
|
+
_globals['_SOURCEKEY']._serialized_end=3853
|
123
|
+
_globals['_VISUALIZATIONDATA']._serialized_start=3855
|
124
|
+
_globals['_VISUALIZATIONDATA']._serialized_end=3957
|
125
|
+
_globals['_GETVISUALIZATIONREQUEST']._serialized_start=3960
|
126
|
+
_globals['_GETVISUALIZATIONREQUEST']._serialized_end=4322
|
127
|
+
_globals['_GETVISUALIZATIONRESPONSE']._serialized_start=4324
|
128
|
+
_globals['_GETVISUALIZATIONRESPONSE']._serialized_end=4432
|
129
|
+
_globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_start=4435
|
130
|
+
_globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_end=4576
|
131
|
+
_globals['_LISTSPACERUNSREQUEST']._serialized_start=4579
|
132
|
+
_globals['_LISTSPACERUNSREQUEST']._serialized_end=4758
|
133
|
+
_globals['_LISTSPACERUNSRESPONSE']._serialized_start=4760
|
134
|
+
_globals['_LISTSPACERUNSRESPONSE']._serialized_end=4885
|
135
|
+
_globals['_GETSPACERUNREQUEST']._serialized_start=4888
|
136
|
+
_globals['_GETSPACERUNREQUEST']._serialized_end=5047
|
137
|
+
_globals['_GETSPACERUNRESPONSE']._serialized_start=5049
|
138
|
+
_globals['_GETSPACERUNRESPONSE']._serialized_end=5144
|
139
|
+
_globals['_PATCHSPACEREQUEST']._serialized_start=5147
|
140
|
+
_globals['_PATCHSPACEREQUEST']._serialized_end=5451
|
141
|
+
_globals['_PATCHSPACERESPONSE']._serialized_start=5453
|
142
|
+
_globals['_PATCHSPACERESPONSE']._serialized_end=5537
|
143
|
+
_globals['_SPACESERVICE']._serialized_start=5680
|
144
|
+
_globals['_SPACESERVICE']._serialized_end=6720
|
137
145
|
# @@protoc_insertion_point(module_scope)
|