corvic-engine 0.3.0rc62__cp38-abi3-win_amd64.whl → 0.3.0rc64__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.
Files changed (35) hide show
  1. buf/validate/validate_pb2.py +415 -698
  2. buf/validate/validate_pb2.pyi +173 -362
  3. buf/validate/validate_pb2_grpc.py +1 -1
  4. buf/validate/validate_pb2_grpc.pyi +6 -10
  5. corvic/engine/_native.pyd +0 -0
  6. corvic/system/_embedder.py +31 -8
  7. corvic/system/_image_embedder.py +33 -12
  8. corvic/system/in_memory_executor.py +292 -331
  9. corvic/system_sqlite/staging.py +17 -9
  10. {corvic_engine-0.3.0rc62.dist-info → corvic_engine-0.3.0rc64.dist-info}/METADATA +1 -1
  11. {corvic_engine-0.3.0rc62.dist-info → corvic_engine-0.3.0rc64.dist-info}/RECORD +27 -35
  12. corvic_generated/feature/v1/experiment_pb2.py +2 -2
  13. corvic_generated/feature/v1/space_pb2.py +2 -2
  14. corvic_generated/feature/v2/feature_view_pb2.py +2 -2
  15. corvic_generated/feature/v2/space_pb2.py +5 -5
  16. corvic_generated/ingest/v2/pipeline_pb2.py +24 -22
  17. corvic_generated/ingest/v2/pipeline_pb2.pyi +4 -2
  18. corvic_generated/ingest/v2/resource_pb2.py +4 -4
  19. corvic_generated/ingest/v2/room_pb2.py +31 -31
  20. corvic_generated/ingest/v2/room_pb2.pyi +4 -2
  21. corvic_generated/ingest/v2/source_pb2.py +4 -4
  22. corvic_generated/ingest/v2/table_pb2.py +3 -3
  23. corvic_generated/orm/v1/agent_pb2.py +2 -2
  24. corvic_generated/orm/v1/agent_pb2.pyi +6 -0
  25. corvic_generated/orm/v1/table_pb2.py +2 -2
  26. buf/validate/expression_pb2.py +0 -37
  27. buf/validate/expression_pb2.pyi +0 -52
  28. buf/validate/expression_pb2_grpc.py +0 -4
  29. buf/validate/expression_pb2_grpc.pyi +0 -34
  30. buf/validate/priv/private_pb2.py +0 -37
  31. buf/validate/priv/private_pb2.pyi +0 -37
  32. buf/validate/priv/private_pb2_grpc.py +0 -4
  33. buf/validate/priv/private_pb2_grpc.pyi +0 -34
  34. {corvic_engine-0.3.0rc62.dist-info → corvic_engine-0.3.0rc64.dist-info}/WHEEL +0 -0
  35. {corvic_engine-0.3.0rc62.dist-info → corvic_engine-0.3.0rc64.dist-info}/licenses/LICENSE +0 -0
@@ -47,10 +47,6 @@ def _patch_schema_for_storage(
47
47
  or pa.types.is_fixed_size_list(field.type)
48
48
  ):
49
49
  patched_schema.append(_patch_list_field(field, old_field))
50
- elif not pa.types.is_null(field.type):
51
- patched_schema.append(field)
52
- elif old_field and not pa.types.is_null(old_field.type):
53
- patched_schema.append(field.with_type(old_field.type))
54
50
  else:
55
51
  patched_schema.append(field)
56
52
  return pa.schema(patched_schema, new_schema.metadata)
@@ -446,13 +442,25 @@ class DuckDBStaging(StagingDB):
446
442
  new_schema=expected_schema,
447
443
  old_schema=batches[0].select(expected_schema.names).schema,
448
444
  )
449
- cast_batches = [
450
- batch.select(expected_schema.names).cast(storage_schema, safe=True)
451
- for batch in batches
452
- ]
445
+
446
+ def batch_cast(batch: pa.RecordBatch) -> pa.RecordBatch:
447
+ for field in storage_schema:
448
+ if pa.types.is_null(field.type):
449
+ batch = batch.drop_columns(field.name)
450
+ column = pa.nulls(size=len(batch)) # pyright: ignore[reportUnknownMemberType]
451
+ batch = batch.append_column(
452
+ field.with_type(pa.null()),
453
+ column,
454
+ )
455
+
456
+ return batch.select(expected_schema.names).cast(
457
+ storage_schema, safe=True
458
+ )
459
+
453
460
  return Ok(
454
461
  pa.RecordBatchReader.from_batches(
455
- schema=storage_schema, batches=cast_batches
462
+ schema=storage_schema,
463
+ batches=(batch_cast(batch) for batch in batches),
456
464
  )
457
465
  )
458
466
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: corvic-engine
3
- Version: 0.3.0rc62
3
+ Version: 0.3.0rc64
4
4
  Classifier: Environment :: Console
5
5
  Classifier: License :: Other/Proprietary License
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -1,6 +1,6 @@
1
- corvic_engine-0.3.0rc62.dist-info/METADATA,sha256=gRd25FU5qKEnq-7kdL3m-lfXXBR4B8sAueusYd9DAz8,1876
2
- corvic_engine-0.3.0rc62.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
- corvic_engine-0.3.0rc62.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
1
+ corvic_engine-0.3.0rc64.dist-info/METADATA,sha256=-PXYbSfyOKnrcRgQAX-LcvUOADMxFg2y14I_THH-Qac,1876
2
+ corvic_engine-0.3.0rc64.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
+ corvic_engine-0.3.0rc64.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
4
4
  corvic/context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  corvic/context/__init__.py,sha256=zBnPiP-tStGSVMG_0-G_0ay6-yIX2aerW_oYRzAex74,1702
6
6
  corvic/embed/node2vec.py,sha256=Qep1lYMKN4nL4z6Ftylr0pj2aJ2LJmWRmnZV27xYJ-M,11251
@@ -67,14 +67,14 @@ corvic/sql/parse_ops.py,sha256=7XUqR9LGex4BRyYu0lH3Jrz9W20Zbt-SHDFHpnF4lbQ,29848
67
67
  corvic/sql/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
68
  corvic/sql/__init__.py,sha256=kZ1a39KVZ08P8Bg6XuXDLD_dTQX0k620u4nwxZF4SnY,303
69
69
  corvic/system/client.py,sha256=hGhZX8RtHrFEOlOmJNlUHktOZrutOwNYUY_a1htQSrg,821
70
- corvic/system/in_memory_executor.py,sha256=KRaF9WQveCmsUvTgd6mA7RkmGUFxG_OyQ1lj7uv9PyA,69472
70
+ corvic/system/in_memory_executor.py,sha256=rX2xn8ZrpG3NaXxE9RZJ6NGV7h1bm49cVkjD-Xll_s8,67665
71
71
  corvic/system/op_graph_executor.py,sha256=GK9XGBysIYrl6S1qcgiJTVzmaZsbGsx_EeENOOy1XZM,3511
72
72
  corvic/system/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  corvic/system/staging.py,sha256=K5P5moiuAMfPx7lxK4mArxeURBwKoyB6x9HGu9JJ16E,1846
74
74
  corvic/system/storage.py,sha256=PuGWC6hQOJXLShhtHNP4gRZDaT4IGk9QCrNF_ciEPzk,5583
75
75
  corvic/system/_dimension_reduction.py,sha256=vyD8wOs0vE-hlVnCrBTjStTowAPWYREqnQ_bVuGYvis,2907
76
- corvic/system/_embedder.py,sha256=ALaRaUQ7fBQeb4kDKd8OI2BowAuj_35JbrARWcFDnMs,3893
77
- corvic/system/_image_embedder.py,sha256=iQc3KlLcqrhP6K84hncHutThAN8Qd6K7K5dceHyU1TU,8373
76
+ corvic/system/_embedder.py,sha256=V9Hv0vQHaAAJzt1udDlIsdWX2pNjpwCl8xvgnOZnpC4,4540
77
+ corvic/system/_image_embedder.py,sha256=-72L6aVJXzCfKX9iwmBbw_7uuVBYLcO73RCFDkC6Z0U,9002
78
78
  corvic/system/_planner.py,sha256=0p0RNxgqQ3-JFhDjWqieiuCj0SlTD6dhYjT79hFyBXU,8062
79
79
  corvic/system/_text_embedder.py,sha256=LH79_4RxhvssySHpkeEoZFgM4Sa5XAYSjoytdsuwWK4,3269
80
80
  corvic/system/__init__.py,sha256=U28LyDwpirtG0WDXqE6dzkx8PipvY2rtZSex03C7xlY,2792
@@ -82,7 +82,7 @@ corvic/system_sqlite/client.py,sha256=0ClXmnWL9eZ4ygYqrnVAdsG5XTXU-veXsiWFzE3PU0
82
82
  corvic/system_sqlite/fs_blob_store.py,sha256=pYTMPiWYC6AUIdcgmRj8lvL7Chg82rf5dac6bKGaqL0,8461
83
83
  corvic/system_sqlite/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
84
  corvic/system_sqlite/rdbms_blob_store.py,sha256=gTP_tQfTVb3wzZkzo8ys1zaz0rSrERzb57rqMHVpuBA,10563
85
- corvic/system_sqlite/staging.py,sha256=P6XdWhjpgcpOZkYxKEjpsTxaAdBKOeSVfARjqt4_xJA,16948
85
+ corvic/system_sqlite/staging.py,sha256=RL4a-h0C91BmNvZBKiDlcElnf3cJDLK3IQX5FQB9IVQ,17257
86
86
  corvic/system_sqlite/__init__.py,sha256=F4UN9vFsXiDY2AKk1jYZPuWWJpSugKHS7ghXeZYlbZs,390
87
87
  corvic/table/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
88
  corvic/table/table.py,sha256=_wC3-BoUT178w3v-BweZ9vCL622-v475YZnJxWleVIA,25811
@@ -92,18 +92,10 @@ corvic/version/__init__.py,sha256=JlkRLvKXsu3zIxhdynO_0Ub5NfQOvGjfwCRkNnaOu9U,11
92
92
  corvic/well_known_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
93
  corvic/well_known_types/__init__.py,sha256=GmTxBW8fWK9kL10xGminzOZgeRtQ7wortZ1XDA0xf_c,1281
94
94
  corvic_generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- buf/validate/expression_pb2.py,sha256=begLvN8OZMx7QrIQ21r7aAxfpUxOtVUkX7k4Cp4eCOE,2113
96
- buf/validate/expression_pb2.pyi,sha256=HF8ObPAMN8Y8MOUb6_hLlePDfPJKYHuGnZF7AwYc9wU,1742
97
- buf/validate/expression_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
98
- buf/validate/expression_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
99
- buf/validate/priv/private_pb2.py,sha256=SXgNQuhEdznwVcSMYNw-llpJRxIHsyx9elw8lJmH16E,2094
100
- buf/validate/priv/private_pb2.pyi,sha256=JmqbZr4ItMLAMM1fDStnzZxlw-VyLzwhaMooJhZs_0w,1276
101
- buf/validate/priv/private_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
102
- buf/validate/priv/private_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
103
- buf/validate/validate_pb2.py,sha256=mXG8u-ltz-TQoJvwsfUNhRRSXdP5LX-UyWnjP10FGZs,143893
104
- buf/validate/validate_pb2.pyi,sha256=bn0Y2I2lyeeQQq2uQzUgaBIWHoo1t0DV7n1UciirDeM,26631
105
- buf/validate/validate_pb2_grpc.py,sha256=cNJsetyP40JxpDu8E8I8N_PqrFt8qCuitOocSCJKQv8,163
106
- buf/validate/validate_pb2_grpc.pyi,sha256=lPcfLxLIll3mCpDVSSaKNtCwv-cfz5XG8C2lUg9PFRs,1010
95
+ buf/validate/validate_pb2.py,sha256=zfRfVorNoy8kjf62JAhKk12C22aqAph9nICo6zyU844,151104
96
+ buf/validate/validate_pb2.pyi,sha256=hiRqcuflFtbfnkIN2kpJUBslh62j0lMnARc4oBTWTEM,30863
97
+ buf/validate/validate_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
98
+ buf/validate/validate_pb2_grpc.pyi,sha256=MHyhDbXeXWm8dicOs5WiXAoSPjMmHTZcbXPGwutpkT8,999
107
99
  corvic_generated/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
100
  corvic_generated/algorithm/graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
101
  corvic_generated/algorithm/graph/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -115,31 +107,31 @@ corvic_generated/embedding/v1/models_pb2.py,sha256=uQDda8455N2roSi7gkFED5BqPzjw2
115
107
  corvic_generated/embedding/v1/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
116
108
  corvic_generated/feature/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
109
  corvic_generated/feature/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
- corvic_generated/feature/v1/experiment_pb2.py,sha256=-lip76e4EQNoF5PfdAVEAAPOU9AXi0jVL56CMA4Ub4g,13667
110
+ corvic_generated/feature/v1/experiment_pb2.py,sha256=6DnEIJEqD9N-slqfLOPN3t_HYX0NsoDBebW4A3qqd80,13667
119
111
  corvic_generated/feature/v1/experiment_pb2_grpc.py,sha256=B2t03V3SImzl6cZkJefpWXSNJvTVAfuaLNqXqTm62Mo,12346
120
- corvic_generated/feature/v1/space_pb2.py,sha256=s7_QkHupd5MWnfQxrdTrbkKugn3VGZRzOokhCgpzO88,11969
112
+ corvic_generated/feature/v1/space_pb2.py,sha256=UaKTQq8gEcmMm6zbODc3OpS_KbbmAuEVa5uRFtwedOk,11969
121
113
  corvic_generated/feature/v1/space_pb2_grpc.py,sha256=4zW43K2lSvrMRuPrr9Qu6bqcALPkppMJvnwBhp5CgFU,10233
122
114
  corvic_generated/feature/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
- corvic_generated/feature/v2/feature_view_pb2.py,sha256=90LzWjeSta0_VmsMxJys4W8ASRtlDGp03XNpLg4vggs,10719
115
+ corvic_generated/feature/v2/feature_view_pb2.py,sha256=TU1vTLPSWSXVEsmXpZm7KT0ey9BhhqYLB_ykNikW2iA,10719
124
116
  corvic_generated/feature/v2/feature_view_pb2_grpc.py,sha256=7cFfkmpQvdsuzPaeMrc0wAv2lyiHzmG6G-nWc8l6VHo,10945
125
- corvic_generated/feature/v2/space_pb2.py,sha256=cW-6yIlexXBkY6loaHkhSBVu9m5VJvmdapGYk8nGel8,20296
117
+ corvic_generated/feature/v2/space_pb2.py,sha256=b6LMjCGk7fsahw_3VJrcGL2qTdhfVijR8CT-ooJgVy4,20296
126
118
  corvic_generated/feature/v2/space_pb2_grpc.py,sha256=OJ8bqDou85cxgOBpMYv-KZ85jZWriXCt1UzT3WuBpIk,18779
127
119
  corvic_generated/ingest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
120
  corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
121
  corvic_generated/ingest/v1/service_pb2.py,sha256=ISrq0SoGWJ0ZUxwKy_UC7MvD_7quGZ2ptKe0WlJNW2U,11295
130
122
  corvic_generated/ingest/v1/service_pb2_grpc.py,sha256=YwsDW94WME0XLDjBstEOHCVasrj039w50vADbkRH4QI,23864
131
123
  corvic_generated/ingest/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
- corvic_generated/ingest/v2/pipeline_pb2.py,sha256=ckoO8us-yg4w31Zx2WbBXsJ5E3DVvEbK3JcCduYgMU0,8297
124
+ corvic_generated/ingest/v2/pipeline_pb2.py,sha256=2_TOCIOM5nqt3HB1Sb86qqYix-qfF2RhWmivBkljHf0,8603
133
125
  corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
134
126
  corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
135
127
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
136
- corvic_generated/ingest/v2/resource_pb2.py,sha256=ulh09FQHL0NlXSJVkrq2lbLC9JDrWaGpGbYgJskb0fw,16260
128
+ corvic_generated/ingest/v2/resource_pb2.py,sha256=iKLRhCEtj2H0rZWP79n-5AdyYrZmMB1ljE8E_x-ahlo,16260
137
129
  corvic_generated/ingest/v2/resource_pb2_grpc.py,sha256=Er-l9DfnUJVX3PFRAoKZonyPww1X8bn9PcC4ODHfX-g,17045
138
- corvic_generated/ingest/v2/room_pb2.py,sha256=IwNZEp9_O_JXIP9mp4QBXj4p0oorwdeE_KWJESWWds4,8087
130
+ corvic_generated/ingest/v2/room_pb2.py,sha256=x4FEUSP6qt6-nUxVENidEW0Y4jHqe_vtgIXacuEB7NU,8180
139
131
  corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
140
- corvic_generated/ingest/v2/source_pb2.py,sha256=xbyS_qIz3i5Q5Tao08vzjMUnOCfBsQ13AWFBPIBF9I0,12215
132
+ corvic_generated/ingest/v2/source_pb2.py,sha256=sJqx6KWhSGqQMxXiDfIYYeebID3MJk7H06XGu_IvRLY,12215
141
133
  corvic_generated/ingest/v2/source_pb2_grpc.py,sha256=DxOe2g2DNvl2pzbXGOY7jILiHLiLKevx7-e7W0Gg3iY,11874
142
- corvic_generated/ingest/v2/table_pb2.py,sha256=cSElAvX-ahbYEixcAzSoAFj8d_j4NUULjqCQeSVw8kE,8155
134
+ corvic_generated/ingest/v2/table_pb2.py,sha256=b13aZweLIH7e-kZHe_00w6Sndgz3Bg1ODqPnnwlVvn0,8155
143
135
  corvic_generated/ingest/v2/table_pb2_grpc.py,sha256=tVs7wMWyAfvHcCQEiUOHLwaptKxgMFG6E7Ki9vNmmvQ,8151
144
136
  corvic_generated/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
137
  corvic_generated/model/v1alpha/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -147,7 +139,7 @@ corvic_generated/model/v1alpha/models_pb2.py,sha256=3rorA81pyk826oXnCn0nfVo1aRcA
147
139
  corvic_generated/model/v1alpha/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
148
140
  corvic_generated/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
141
  corvic_generated/orm/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- corvic_generated/orm/v1/agent_pb2.py,sha256=Ru41Ms8SRpUcEIHJx24J9VgXRt5khrk83TpPIPfDCxU,3940
142
+ corvic_generated/orm/v1/agent_pb2.py,sha256=4Kabs36WUXob4fkwOVNUKijEqyYhBnKPmPu7xamh5Bs,4070
151
143
  corvic_generated/orm/v1/agent_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
152
144
  corvic_generated/orm/v1/common_pb2.py,sha256=pu1Rto4Pm8ntdB12Rgb_qnz3qOalxlOnrLuKE1fCETs,3490
153
145
  corvic_generated/orm/v1/common_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
@@ -159,7 +151,7 @@ corvic_generated/orm/v1/pipeline_pb2.py,sha256=_J1kHAe2CQT_epXows4eOZKdQFLTLqZgz
159
151
  corvic_generated/orm/v1/pipeline_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
160
152
  corvic_generated/orm/v1/space_pb2.py,sha256=grI4123GBbA-iHnbtbK8xyfIv1lZL1hDl3q43vXGta8,2147
161
153
  corvic_generated/orm/v1/space_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
162
- corvic_generated/orm/v1/table_pb2.py,sha256=YCS052cP5-398nCPT1lRXjww7PJfJg30nHhb0Ah9iTs,40417
154
+ corvic_generated/orm/v1/table_pb2.py,sha256=7LIZlYQLCGyawPglOhbeciI4p02oqfblJT3b8WmEmCA,40417
163
155
  corvic_generated/orm/v1/table_pb2_grpc.py,sha256=ixBOrA7wwNxEQCRT1kO2N_LayeFYEdFJjVRkkhesWbY,4558
164
156
  corvic_generated/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
157
  corvic_generated/status/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -181,13 +173,13 @@ corvic_generated/feature/v2/space_pb2.pyi,sha256=CzvwNq2htgLu_IVu3LgWtlb6Pow2gB0
181
173
  corvic_generated/feature/v2/space_pb2_grpc.pyi,sha256=9011aCTfJYWjgK5UoiS9NjRKIJSDjuX51DB5tw5xc10,8267
182
174
  corvic_generated/ingest/v1/service_pb2.pyi,sha256=e2KYl6sQ11MyePRGkKU5gi05_uCF7cCM0fInG-BwfHg,8528
183
175
  corvic_generated/ingest/v1/service_pb2_grpc.pyi,sha256=phnkwO0XzxuZZhL-BICXfYv7Z9TcNxLQ_eMZFCEz1g0,14052
184
- corvic_generated/ingest/v2/pipeline_pb2.pyi,sha256=gHZOZqWuWHodaeC9jILerzPAL_7FH5NuhiOoDlmzI6c,5520
176
+ corvic_generated/ingest/v2/pipeline_pb2.pyi,sha256=0kreoMfEi8WQIE0sKw36g5TPiDhMcW5eLy7ZDfoVnnw,5674
185
177
  corvic_generated/ingest/v2/pipeline_pb2_grpc.pyi,sha256=jZgC4p2o1ZHanRGtXm4cNAYhPnW8DDAFstX9XRFWq-8,3884
186
178
  corvic_generated/ingest/v2/quick_mode_pb2.pyi,sha256=j8SAHdekgUuFyQgBmHKcYThD6lagsQDB-3iueBIYJX0,2512
187
179
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.pyi,sha256=DSiD0kV3Ffwsa7ZripP6LNHPu8Zbdo2hc48T-6ha54s,2369
188
180
  corvic_generated/ingest/v2/resource_pb2.pyi,sha256=2k1C7ItaNRwzXWRAlEGCS0lgbdOZUAkS-60qBPQX9dk,9138
189
181
  corvic_generated/ingest/v2/resource_pb2_grpc.pyi,sha256=4B-lF9IiGMNhgmz7QpuLtNpt9pisBP0DogRbrMkoyeA,11446
190
- corvic_generated/ingest/v2/room_pb2.pyi,sha256=CJ9KXGSWJAk2_w4XYUsKA4ZeRGXUYd5vaDNwwXWpLyo,3989
182
+ corvic_generated/ingest/v2/room_pb2.pyi,sha256=ak1s5flg8v7YSVNl0ziEmMnphyy6ijd0PuJiGqK5RCA,4163
191
183
  corvic_generated/ingest/v2/room_pb2_grpc.pyi,sha256=BqV4DYhcW6tbmQl4_pftO69FwY2iVvelNWO76bQub3E,5104
192
184
  corvic_generated/ingest/v2/source_pb2.pyi,sha256=k7FdbgurQLk0JA1WiTUerznzxLv8b504Wr7CJmjmZno,6565
193
185
  corvic_generated/ingest/v2/source_pb2_grpc.pyi,sha256=VG5gpql2SREHgqMC_ycT-QJBVpPeSYKOYS2COgGrZa4,6195
@@ -195,7 +187,7 @@ corvic_generated/ingest/v2/table_pb2.pyi,sha256=p22F8kv0HfM-9OzGP88bLofxmUtxfLR5
195
187
  corvic_generated/ingest/v2/table_pb2_grpc.pyi,sha256=AEXYNtrU4xyENumcCrkD2FmFV7T1UVidxxeZ5pyE4Qc,4554
196
188
  corvic_generated/model/v1alpha/models_pb2.pyi,sha256=ELw1kPiAaYNDtrRk2pTMjU3v9nQtluoS4p5FHOBBc9o,10853
197
189
  corvic_generated/model/v1alpha/models_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
198
- corvic_generated/orm/v1/agent_pb2.pyi,sha256=AxcZC0AJqiOyu_5quSMR-E0MjVhDY7b5ym4uZa7WFug,4670
190
+ corvic_generated/orm/v1/agent_pb2.pyi,sha256=xrL16mmyvJssphjrWTZCTFWzFpsJemSSdxHKG0v8keY,4921
199
191
  corvic_generated/orm/v1/agent_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
200
192
  corvic_generated/orm/v1/common_pb2.pyi,sha256=PZi9KfnXWzlQC0bMuDC71IOmgIaYClY2jPghzKV-mAo,3557
201
193
  corvic_generated/orm/v1/common_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
@@ -213,5 +205,5 @@ corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykF
213
205
  corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
214
206
  corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
215
207
  corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
216
- corvic/engine/_native.pyd,sha256=YvafTCkiUFF1_MDhrP-VAlIQC1C82Go8qXPyXLPhxfc,438784
217
- corvic_engine-0.3.0rc62.dist-info/RECORD,,
208
+ corvic/engine/_native.pyd,sha256=H2tMof4w870VYsc4tPempHtcjKpBA2-arUHPluwRZd8,438784
209
+ corvic_engine-0.3.0rc64.dist-info/RECORD,,
@@ -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\"corvic/feature/v1/experiment.proto\x12\x11\x63orvic.feature.v1\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\"\xe7\x02\n\nParameters\x12{\n\x08space_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\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\x12node2vecParametersB\x08\n\x06params\"\x82\x01\n\nExperiment\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"\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\"\x9e\x04\n\x0f\x45xperimentEntry\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x85\x01\n\rexperiment_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\nexperiment\x18\x04 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentR\nexperiment\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x06 \x01(\x0b\x32#.corvic.feature.v1.EmbeddingMetricsR\x10\x65mbeddingMetrics\"\x9e\x01\n\x14GetExperimentRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"f\n\x15GetExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x96\x01\n\x16ListExperimentsRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"l\n\x17ListExperimentsResponse\x12Q\n\x12\x65xperiment_entries\x18\x01 \x03(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x11\x65xperimentEntries\"\xb0\x02\n\x17\x43reateExperimentRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x41\n\nexperiment\x18\x02 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentB\x02\x18\x01R\nexperiment\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x04 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"i\n\x18\x43reateExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x8b\x01\n\x17\x44\x65leteExperimentRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1a\n\x18\x44\x65leteExperimentResponse\"\xa4\x01\n\x1aGetExperimentResultRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"<\n\x1bGetExperimentResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xab\x01\n!GetExperimentVisualizationRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"\x9c\x01\n\x10\x45mbeddingRowData\x12\x34\n\x07row_ids\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x02\x18\x01R\x06rowIds\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.v1.EmbeddingRowDataR\rembeddingRows\"\xa9\x01\n\"GetExperimentVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v1.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved2\xd5\x05\n\x11\x45xperimentService\x12g\n\rGetExperiment\x12\'.corvic.feature.v1.GetExperimentRequest\x1a(.corvic.feature.v1.GetExperimentResponse\"\x03\x90\x02\x01\x12m\n\x10\x43reateExperiment\x12*.corvic.feature.v1.CreateExperimentRequest\x1a+.corvic.feature.v1.CreateExperimentResponse\"\x00\x12m\n\x10\x44\x65leteExperiment\x12*.corvic.feature.v1.DeleteExperimentRequest\x1a+.corvic.feature.v1.DeleteExperimentResponse\"\x00\x12m\n\x0fListExperiments\x12).corvic.feature.v1.ListExperimentsRequest\x1a*.corvic.feature.v1.ListExperimentsResponse\"\x03\x90\x02\x01\x12y\n\x13GetExperimentResult\x12-.corvic.feature.v1.GetExperimentResultRequest\x1a..corvic.feature.v1.GetExperimentResultResponse\"\x03\x90\x02\x01\x12\x8e\x01\n\x1aGetExperimentVisualization\x12\x34.corvic.feature.v1.GetExperimentVisualizationRequest\x1a\x35.corvic.feature.v1.GetExperimentVisualizationResponse\"\x03\x90\x02\x01\x62\x06proto3')
24
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"corvic/feature/v1/experiment.proto\x12\x11\x63orvic.feature.v1\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\"\xe7\x02\n\nParameters\x12{\n\x08space_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\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\x12node2vecParametersB\x08\n\x06params\"\x82\x01\n\nExperiment\x12\x1b\n\x04name\x18\x01 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x02 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"\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\"\x9e\x04\n\x0f\x45xperimentEntry\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x85\x01\n\rexperiment_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12=\n\nexperiment\x18\x04 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentR\nexperiment\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x06 \x01(\x0b\x32#.corvic.feature.v1.EmbeddingMetricsR\x10\x65mbeddingMetrics\"\x9e\x01\n\x14GetExperimentRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"f\n\x15GetExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x96\x01\n\x16ListExperimentsRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"l\n\x17ListExperimentsResponse\x12Q\n\x12\x65xperiment_entries\x18\x01 \x03(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x11\x65xperimentEntries\"\xb0\x02\n\x17\x43reateExperimentRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x41\n\nexperiment\x18\x02 \x01(\x0b\x32\x1d.corvic.feature.v1.ExperimentB\x02\x18\x01R\nexperiment\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x04 \x03(\x0b\x32\x1d.corvic.feature.v1.ParametersR\x06params\"i\n\x18\x43reateExperimentResponse\x12M\n\x10\x65xperiment_entry\x18\x01 \x01(\x0b\x32\".corvic.feature.v1.ExperimentEntryR\x0f\x65xperimentEntry\"\x8b\x01\n\x17\x44\x65leteExperimentRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1a\n\x18\x44\x65leteExperimentResponse\"\xa4\x01\n\x1aGetExperimentResultRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"<\n\x1bGetExperimentResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xab\x01\n!GetExperimentVisualizationRequest\x12\x85\x01\n\rexperiment_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x0c\x65xperimentId\"\x9c\x01\n\x10\x45mbeddingRowData\x12\x34\n\x07row_ids\x18\x01 \x01(\x0b\x32\x17.google.protobuf.StructB\x02\x18\x01R\x06rowIds\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.v1.EmbeddingRowDataR\rembeddingRows\"\xa9\x01\n\"GetExperimentVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v1.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved2\xd5\x05\n\x11\x45xperimentService\x12g\n\rGetExperiment\x12\'.corvic.feature.v1.GetExperimentRequest\x1a(.corvic.feature.v1.GetExperimentResponse\"\x03\x90\x02\x01\x12m\n\x10\x43reateExperiment\x12*.corvic.feature.v1.CreateExperimentRequest\x1a+.corvic.feature.v1.CreateExperimentResponse\"\x00\x12m\n\x10\x44\x65leteExperiment\x12*.corvic.feature.v1.DeleteExperimentRequest\x1a+.corvic.feature.v1.DeleteExperimentResponse\"\x00\x12m\n\x0fListExperiments\x12).corvic.feature.v1.ListExperimentsRequest\x1a*.corvic.feature.v1.ListExperimentsResponse\"\x03\x90\x02\x01\x12y\n\x13GetExperimentResult\x12-.corvic.feature.v1.GetExperimentResultRequest\x1a..corvic.feature.v1.GetExperimentResultResponse\"\x03\x90\x02\x01\x12\x8e\x01\n\x1aGetExperimentVisualization\x12\x34.corvic.feature.v1.GetExperimentVisualizationRequest\x1a\x35.corvic.feature.v1.GetExperimentVisualizationResponse\"\x03\x90\x02\x01\x62\x06proto3')
25
25
 
26
26
  _globals = globals()
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -39,7 +39,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
39
39
  _globals['_GETEXPERIMENTREQUEST'].fields_by_name['experiment_id']._options = None
40
40
  _globals['_GETEXPERIMENTREQUEST'].fields_by_name['experiment_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
41
41
  _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._options = None
42
- _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
42
+ _globals['_LISTEXPERIMENTSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
43
43
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['room_id']._options = None
44
44
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
45
45
  _globals['_CREATEEXPERIMENTREQUEST'].fields_by_name['experiment']._options = None
@@ -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\x1d\x63orvic/feature/v1/space.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\xa1\x01\n\x0cOutputEntity\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12}\n\tsource_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\xb6\x01\n\x0bSpaceOutput\x12]\n\x16output_entity_operator\x18\x01 \x01(\x0e\x32\'.corvic.feature.v1.OutputEntityOperatorR\x14outputEntityOperator\x12H\n\x0foutput_entities\x18\x02 \x03(\x0b\x32\x1f.corvic.feature.v1.OutputEntityR\x0eoutputEntities\"\xdc\x03\n\nSpaceEntry\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\x12\x19\n\x06org_id\x18\x02 \x01(\tB\x02\x18\x01R\x05orgId\x12y\n\x07room_id\x18\x03 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x44\n\x0esource_entries\x18\x04 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x05 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x06 \x01(\tR\x0b\x64\x65scription\x12\x41\n\x0cspace_output\x18\x07 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\x83\x01\n\x0fGetSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x91\x01\n\x11ListSpacesRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd0\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\x0cspaceEntries\"\x98\x03\n\x12\x43reateSpaceRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x84\x01\n\nsource_ids\x18\x04 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x05 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x86\x01\n\x12\x44\x65leteSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\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\"\xe8\x01\n\x1cGetSpaceRelationshipsRequest\x12\x84\x01\n\nsource_ids\x18\x01 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x02 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\xba\x02\n\x12SourceRelationship\x12O\n\x12source_entry_start\x18\x01 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x10sourceEntryStart\x12K\n\x10source_entry_end\x18\x02 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x0esourceEntryEnd\x12&\n\x0fstart_source_id\x18\x03 \x01(\tR\rstartSourceId\x12\"\n\rend_source_id\x18\x04 \x01(\tR\x0b\x65ndSourceId\x12:\n\x19relationship_path_sources\x18\x05 \x03(\tR\x17relationshipPathSources\"y\n\x1dGetSpaceRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v1.SourceRelationshipR\x13sourceRelationships*\x8e\x01\n\x14OutputEntityOperator\x12&\n\"OUTPUT_ENTITY_OPERATOR_UNSPECIFIED\x10\x00\x12&\n\"OUTPUT_ENTITY_OPERATOR_CONJUNCTION\x10\x01\x12&\n\"OUTPUT_ENTITY_OPERATOR_DISJUNCTION\x10\x02\x32\x8e\x04\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v1.GetSpaceRequest\x1a#.corvic.feature.v1.GetSpaceResponse\"\x03\x90\x02\x01\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v1.CreateSpaceRequest\x1a&.corvic.feature.v1.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v1.DeleteSpaceRequest\x1a&.corvic.feature.v1.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v1.ListSpacesRequest\x1a%.corvic.feature.v1.ListSpacesResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceRelationships\x12/.corvic.feature.v1.GetSpaceRelationshipsRequest\x1a\x30.corvic.feature.v1.GetSpaceRelationshipsResponse\"\x03\x90\x02\x01\x1a\x03\x88\x02\x01\x62\x06proto3')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v1/space.proto\x12\x11\x63orvic.feature.v1\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\xa1\x01\n\x0cOutputEntity\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12}\n\tsource_id\x18\x02 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\xb6\x01\n\x0bSpaceOutput\x12]\n\x16output_entity_operator\x18\x01 \x01(\x0e\x32\'.corvic.feature.v1.OutputEntityOperatorR\x14outputEntityOperator\x12H\n\x0foutput_entities\x18\x02 \x03(\x0b\x32\x1f.corvic.feature.v1.OutputEntityR\x0eoutputEntities\"\xdc\x03\n\nSpaceEntry\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\x12\x19\n\x06org_id\x18\x02 \x01(\tB\x02\x18\x01R\x05orgId\x12y\n\x07room_id\x18\x03 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x44\n\x0esource_entries\x18\x04 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x05 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x06 \x01(\tR\x0b\x64\x65scription\x12\x41\n\x0cspace_output\x18\x07 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\x83\x01\n\x0fGetSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x91\x01\n\x11ListSpacesRequest\x12|\n\x07room_id\x18\x01 \x01(\tBc\xbaH`\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.v1.SpaceEntryR\x0cspaceEntries\"\x98\x03\n\x12\x43reateSpaceRequest\x12y\n\x07room_id\x18\x01 \x01(\tB`\xbaH]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1b\n\x04name\x18\x02 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x03 \x01(\tR\x0b\x64\x65scription\x12\x84\x01\n\nsource_ids\x18\x04 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x05 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v1.SpaceEntryR\nspaceEntry\"\x86\x01\n\x12\x44\x65leteSpaceRequest\x12p\n\x02id\x18\x01 \x01(\tB`\xbaH]\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\"\xe8\x01\n\x1cGetSpaceRelationshipsRequest\x12\x84\x01\n\nsource_ids\x18\x01 \x03(\tBe\xbaHb\x92\x01_\"]\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x41\n\x0cspace_output\x18\x02 \x01(\x0b\x32\x1e.corvic.feature.v1.SpaceOutputR\x0bspaceOutput\"\xba\x02\n\x12SourceRelationship\x12O\n\x12source_entry_start\x18\x01 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x10sourceEntryStart\x12K\n\x10source_entry_end\x18\x02 \x01(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryB\x02\x18\x01R\x0esourceEntryEnd\x12&\n\x0fstart_source_id\x18\x03 \x01(\tR\rstartSourceId\x12\"\n\rend_source_id\x18\x04 \x01(\tR\x0b\x65ndSourceId\x12:\n\x19relationship_path_sources\x18\x05 \x03(\tR\x17relationshipPathSources\"y\n\x1dGetSpaceRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v1.SourceRelationshipR\x13sourceRelationships*\x8e\x01\n\x14OutputEntityOperator\x12&\n\"OUTPUT_ENTITY_OPERATOR_UNSPECIFIED\x10\x00\x12&\n\"OUTPUT_ENTITY_OPERATOR_CONJUNCTION\x10\x01\x12&\n\"OUTPUT_ENTITY_OPERATOR_DISJUNCTION\x10\x02\x32\x8e\x04\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v1.GetSpaceRequest\x1a#.corvic.feature.v1.GetSpaceResponse\"\x03\x90\x02\x01\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v1.CreateSpaceRequest\x1a&.corvic.feature.v1.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v1.DeleteSpaceRequest\x1a&.corvic.feature.v1.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v1.ListSpacesRequest\x1a%.corvic.feature.v1.ListSpacesResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceRelationships\x12/.corvic.feature.v1.GetSpaceRelationshipsRequest\x1a\x30.corvic.feature.v1.GetSpaceRelationshipsResponse\"\x03\x90\x02\x01\x1a\x03\x88\x02\x01\x62\x06proto3')
21
21
 
22
22
  _globals = globals()
23
23
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -37,7 +37,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
37
37
  _globals['_GETSPACEREQUEST'].fields_by_name['id']._options = None
38
38
  _globals['_GETSPACEREQUEST'].fields_by_name['id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
39
39
  _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._options = None
40
- _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
40
+ _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H`\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
41
41
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._options = None
42
42
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._serialized_options = b'\272H]\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
43
43
  _globals['_CREATESPACEREQUEST'].fields_by_name['name']._options = None
@@ -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\"\x9c\x01\n\x17ListFeatureViewsRequest\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\')\xd0\x01\x01R\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')
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\"\x9c\x01\n\x17ListFeatureViewsRequest\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\"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'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
34
+ _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
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
@@ -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\')\xd0\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\')\xd0\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\')\xd0\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\')\xd0\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\"\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')
25
25
 
26
26
  _globals = globals()
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -35,7 +35,7 @@ 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'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
38
+ _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
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
@@ -47,13 +47,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
47
47
  _globals['_GETSPACEVISUALIZATIONREQUEST'].fields_by_name['space_id']._options = None
48
48
  _globals['_GETSPACEVISUALIZATIONREQUEST'].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\')'
49
49
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._options = None
50
- _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
50
+ _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
51
51
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._options = None
52
- _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
52
+ _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
53
53
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['num_points']._options = None
54
54
  _globals['_GETVISUALIZATIONREQUEST'].fields_by_name['num_points']._serialized_options = b'\272H\004\032\002 \000'
55
55
  _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._options = None
56
- _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\320\001\001'
56
+ _globals['_LISTSPACERUNSREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hdr\002\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\330\001\001'
57
57
  _globals['_GETSPACERUNREQUEST'].fields_by_name['space_run_id']._options = None
58
58
  _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
59
  _globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._options = None
@@ -18,7 +18,7 @@ from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor
18
18
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
19
19
 
20
20
 
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x63orvic/ingest/v2/pipeline.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xcb\x02\n\x15\x43reatePipelineRequest\x12/\n\rpipeline_name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x0cpipelineName\x12\x7f\n\x07room_id\x18\x02 \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\x43\n\rpipeline_type\x18\x03 \x01(\x0e\x32\x1e.corvic.ingest.v2.PipelineTypeR\x0cpipelineType\x12;\n\x14pipeline_description\x18\x04 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x13pipelineDescription\"\x86\x03\n\rPipelineEntry\x12\x1f\n\x0bpipeline_id\x18\x01 \x01(\tR\npipelineId\x12#\n\rpipeline_name\x18\x02 \x01(\tR\x0cpipelineName\x12\x17\n\x07room_id\x18\x03 \x01(\tR\x06roomId\x12\x43\n\rpipeline_type\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.PipelineTypeR\x0cpipelineType\x12,\n\x12input_resource_ids\x18\x05 \x03(\tR\x10inputResourceIds\x12*\n\x11output_source_ids\x18\x06 \x03(\tR\x0foutputSourceIds\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"`\n\x16\x43reatePipelineResponse\x12\x46\n\x0epipeline_entry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\rpipelineEntry\"\xa1\x01\n\x15\x44\x65letePipelineRequest\x12\x87\x01\n\x0bpipeline_id\x18\x02 \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\npipelineId\"\x18\n\x16\x44\x65letePipelineResponse\"\x9e\x01\n\x12GetPipelineRequest\x12\x87\x01\n\x0bpipeline_id\x18\x02 \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\npipelineId\"]\n\x13GetPipelineResponse\x12\x46\n\x0epipeline_entry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\rpipelineEntry\"r\n\x1aListPipelinesCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xd9\x01\n\x14ListPipelinesRequest\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\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"{\n\x15ListPipelinesResponse\x12J\n\x10pipeline_entries\x18\x01 \x03(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\x0fpipelineEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor*\x94\x01\n\x0cPipelineType\x12\x1d\n\x19PIPELINE_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aPIPELINE_TYPE_PROCESS_PDFS\x10\x01\x12!\n\x1dPIPELINE_TYPE_PROCESS_PARQUET\x10\x02\x12\"\n\x1ePIPELINE_TYPE_PROCESS_PDFS_OCR\x10\x03\x32\xa7\x03\n\x0fPipelineService\x12\x65\n\x0e\x43reatePipeline\x12\'.corvic.ingest.v2.CreatePipelineRequest\x1a(.corvic.ingest.v2.CreatePipelineResponse\"\x00\x12\x65\n\x0e\x44\x65letePipeline\x12\'.corvic.ingest.v2.DeletePipelineRequest\x1a(.corvic.ingest.v2.DeletePipelineResponse\"\x00\x12_\n\x0bGetPipeline\x12$.corvic.ingest.v2.GetPipelineRequest\x1a%.corvic.ingest.v2.GetPipelineResponse\"\x03\x90\x02\x01\x12\x65\n\rListPipelines\x12&.corvic.ingest.v2.ListPipelinesRequest\x1a\'.corvic.ingest.v2.ListPipelinesResponse\"\x03\x90\x02\x01\x62\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x63orvic/ingest/v2/pipeline.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xcb\x02\n\x15\x43reatePipelineRequest\x12/\n\rpipeline_name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x0cpipelineName\x12\x7f\n\x07room_id\x18\x02 \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\x43\n\rpipeline_type\x18\x03 \x01(\x0e\x32\x1e.corvic.ingest.v2.PipelineTypeR\x0cpipelineType\x12;\n\x14pipeline_description\x18\x04 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x13pipelineDescription\"\xc3\x03\n\rPipelineEntry\x12\x1f\n\x0bpipeline_id\x18\x01 \x01(\tR\npipelineId\x12#\n\rpipeline_name\x18\x02 \x01(\tR\x0cpipelineName\x12\x17\n\x07room_id\x18\x03 \x01(\tR\x06roomId\x12\x43\n\rpipeline_type\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.PipelineTypeR\x0cpipelineType\x12,\n\x12input_resource_ids\x18\x05 \x03(\tR\x10inputResourceIds\x12*\n\x11output_source_ids\x18\x06 \x03(\tR\x0foutputSourceIds\x12\x39\n\ncreated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12;\n\x14pipeline_description\x18\t \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x13pipelineDescription\"`\n\x16\x43reatePipelineResponse\x12\x46\n\x0epipeline_entry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\rpipelineEntry\"\xa1\x01\n\x15\x44\x65letePipelineRequest\x12\x87\x01\n\x0bpipeline_id\x18\x02 \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\npipelineId\"\x18\n\x16\x44\x65letePipelineResponse\"\x9e\x01\n\x12GetPipelineRequest\x12\x87\x01\n\x0bpipeline_id\x18\x02 \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\npipelineId\"]\n\x13GetPipelineResponse\x12\x46\n\x0epipeline_entry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\rpipelineEntry\"r\n\x1aListPipelinesCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xd9\x01\n\x14ListPipelinesRequest\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\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"{\n\x15ListPipelinesResponse\x12J\n\x10pipeline_entries\x18\x01 \x03(\x0b\x32\x1f.corvic.ingest.v2.PipelineEntryR\x0fpipelineEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor*\x94\x01\n\x0cPipelineType\x12\x1d\n\x19PIPELINE_TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1aPIPELINE_TYPE_PROCESS_PDFS\x10\x01\x12!\n\x1dPIPELINE_TYPE_PROCESS_PARQUET\x10\x02\x12\"\n\x1ePIPELINE_TYPE_PROCESS_PDFS_OCR\x10\x03\x32\xa7\x03\n\x0fPipelineService\x12\x65\n\x0e\x43reatePipeline\x12\'.corvic.ingest.v2.CreatePipelineRequest\x1a(.corvic.ingest.v2.CreatePipelineResponse\"\x00\x12\x65\n\x0e\x44\x65letePipeline\x12\'.corvic.ingest.v2.DeletePipelineRequest\x1a(.corvic.ingest.v2.DeletePipelineResponse\"\x00\x12_\n\x0bGetPipeline\x12$.corvic.ingest.v2.GetPipelineRequest\x1a%.corvic.ingest.v2.GetPipelineResponse\"\x03\x90\x02\x01\x12\x65\n\rListPipelines\x12&.corvic.ingest.v2.ListPipelinesRequest\x1a\'.corvic.ingest.v2.ListPipelinesResponse\"\x03\x90\x02\x01\x62\x06proto3')
22
22
 
23
23
  _globals = globals()
24
24
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -31,6 +31,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
31
31
  _globals['_CREATEPIPELINEREQUEST'].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\')'
32
32
  _globals['_CREATEPIPELINEREQUEST'].fields_by_name['pipeline_description']._options = None
33
33
  _globals['_CREATEPIPELINEREQUEST'].fields_by_name['pipeline_description']._serialized_options = b'\272H\005r\003\030\350\007'
34
+ _globals['_PIPELINEENTRY'].fields_by_name['pipeline_description']._options = None
35
+ _globals['_PIPELINEENTRY'].fields_by_name['pipeline_description']._serialized_options = b'\272H\005r\003\030\350\007'
34
36
  _globals['_DELETEPIPELINEREQUEST'].fields_by_name['pipeline_id']._options = None
35
37
  _globals['_DELETEPIPELINEREQUEST'].fields_by_name['pipeline_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\')'
36
38
  _globals['_GETPIPELINEREQUEST'].fields_by_name['pipeline_id']._options = None
@@ -41,28 +43,28 @@ if _descriptor._USE_C_DESCRIPTORS == False:
41
43
  _globals['_PIPELINESERVICE'].methods_by_name['GetPipeline']._serialized_options = b'\220\002\001'
42
44
  _globals['_PIPELINESERVICE'].methods_by_name['ListPipelines']._options = None
43
45
  _globals['_PIPELINESERVICE'].methods_by_name['ListPipelines']._serialized_options = b'\220\002\001'
44
- _globals['_PIPELINETYPE']._serialized_start=1912
45
- _globals['_PIPELINETYPE']._serialized_end=2060
46
+ _globals['_PIPELINETYPE']._serialized_start=1973
47
+ _globals['_PIPELINETYPE']._serialized_end=2121
46
48
  _globals['_CREATEPIPELINEREQUEST']._serialized_start=180
47
49
  _globals['_CREATEPIPELINEREQUEST']._serialized_end=511
48
50
  _globals['_PIPELINEENTRY']._serialized_start=514
49
- _globals['_PIPELINEENTRY']._serialized_end=904
50
- _globals['_CREATEPIPELINERESPONSE']._serialized_start=906
51
- _globals['_CREATEPIPELINERESPONSE']._serialized_end=1002
52
- _globals['_DELETEPIPELINEREQUEST']._serialized_start=1005
53
- _globals['_DELETEPIPELINEREQUEST']._serialized_end=1166
54
- _globals['_DELETEPIPELINERESPONSE']._serialized_start=1168
55
- _globals['_DELETEPIPELINERESPONSE']._serialized_end=1192
56
- _globals['_GETPIPELINEREQUEST']._serialized_start=1195
57
- _globals['_GETPIPELINEREQUEST']._serialized_end=1353
58
- _globals['_GETPIPELINERESPONSE']._serialized_start=1355
59
- _globals['_GETPIPELINERESPONSE']._serialized_end=1448
60
- _globals['_LISTPIPELINESCURSORPAYLOAD']._serialized_start=1450
61
- _globals['_LISTPIPELINESCURSORPAYLOAD']._serialized_end=1564
62
- _globals['_LISTPIPELINESREQUEST']._serialized_start=1567
63
- _globals['_LISTPIPELINESREQUEST']._serialized_end=1784
64
- _globals['_LISTPIPELINESRESPONSE']._serialized_start=1786
65
- _globals['_LISTPIPELINESRESPONSE']._serialized_end=1909
66
- _globals['_PIPELINESERVICE']._serialized_start=2063
67
- _globals['_PIPELINESERVICE']._serialized_end=2486
51
+ _globals['_PIPELINEENTRY']._serialized_end=965
52
+ _globals['_CREATEPIPELINERESPONSE']._serialized_start=967
53
+ _globals['_CREATEPIPELINERESPONSE']._serialized_end=1063
54
+ _globals['_DELETEPIPELINEREQUEST']._serialized_start=1066
55
+ _globals['_DELETEPIPELINEREQUEST']._serialized_end=1227
56
+ _globals['_DELETEPIPELINERESPONSE']._serialized_start=1229
57
+ _globals['_DELETEPIPELINERESPONSE']._serialized_end=1253
58
+ _globals['_GETPIPELINEREQUEST']._serialized_start=1256
59
+ _globals['_GETPIPELINEREQUEST']._serialized_end=1414
60
+ _globals['_GETPIPELINERESPONSE']._serialized_start=1416
61
+ _globals['_GETPIPELINERESPONSE']._serialized_end=1509
62
+ _globals['_LISTPIPELINESCURSORPAYLOAD']._serialized_start=1511
63
+ _globals['_LISTPIPELINESCURSORPAYLOAD']._serialized_end=1625
64
+ _globals['_LISTPIPELINESREQUEST']._serialized_start=1628
65
+ _globals['_LISTPIPELINESREQUEST']._serialized_end=1845
66
+ _globals['_LISTPIPELINESRESPONSE']._serialized_start=1847
67
+ _globals['_LISTPIPELINESRESPONSE']._serialized_end=1970
68
+ _globals['_PIPELINESERVICE']._serialized_start=2124
69
+ _globals['_PIPELINESERVICE']._serialized_end=2547
68
70
  # @@protoc_insertion_point(module_scope)
@@ -34,7 +34,7 @@ class CreatePipelineRequest(_message.Message):
34
34
  def __init__(self, pipeline_name: _Optional[str] = ..., room_id: _Optional[str] = ..., pipeline_type: _Optional[_Union[PipelineType, str]] = ..., pipeline_description: _Optional[str] = ...) -> None: ...
35
35
 
36
36
  class PipelineEntry(_message.Message):
37
- __slots__ = ("pipeline_id", "pipeline_name", "room_id", "pipeline_type", "input_resource_ids", "output_source_ids", "created_at", "recent_events")
37
+ __slots__ = ("pipeline_id", "pipeline_name", "room_id", "pipeline_type", "input_resource_ids", "output_source_ids", "created_at", "recent_events", "pipeline_description")
38
38
  PIPELINE_ID_FIELD_NUMBER: _ClassVar[int]
39
39
  PIPELINE_NAME_FIELD_NUMBER: _ClassVar[int]
40
40
  ROOM_ID_FIELD_NUMBER: _ClassVar[int]
@@ -43,6 +43,7 @@ class PipelineEntry(_message.Message):
43
43
  OUTPUT_SOURCE_IDS_FIELD_NUMBER: _ClassVar[int]
44
44
  CREATED_AT_FIELD_NUMBER: _ClassVar[int]
45
45
  RECENT_EVENTS_FIELD_NUMBER: _ClassVar[int]
46
+ PIPELINE_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
46
47
  pipeline_id: str
47
48
  pipeline_name: str
48
49
  room_id: str
@@ -51,7 +52,8 @@ class PipelineEntry(_message.Message):
51
52
  output_source_ids: _containers.RepeatedScalarFieldContainer[str]
52
53
  created_at: _timestamp_pb2.Timestamp
53
54
  recent_events: _containers.RepeatedCompositeFieldContainer[_event_pb2.Event]
54
- def __init__(self, pipeline_id: _Optional[str] = ..., pipeline_name: _Optional[str] = ..., room_id: _Optional[str] = ..., pipeline_type: _Optional[_Union[PipelineType, str]] = ..., input_resource_ids: _Optional[_Iterable[str]] = ..., output_source_ids: _Optional[_Iterable[str]] = ..., created_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., recent_events: _Optional[_Iterable[_Union[_event_pb2.Event, _Mapping]]] = ...) -> None: ...
55
+ pipeline_description: str
56
+ def __init__(self, pipeline_id: _Optional[str] = ..., pipeline_name: _Optional[str] = ..., room_id: _Optional[str] = ..., pipeline_type: _Optional[_Union[PipelineType, str]] = ..., input_resource_ids: _Optional[_Iterable[str]] = ..., output_source_ids: _Optional[_Iterable[str]] = ..., created_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., recent_events: _Optional[_Iterable[_Union[_event_pb2.Event, _Mapping]]] = ..., pipeline_description: _Optional[str] = ...) -> None: ...
55
57
 
56
58
  class CreatePipelineResponse(_message.Message):
57
59
  __slots__ = ("pipeline_entry",)