corvic-engine 0.3.0rc68__cp38-abi3-win_amd64.whl → 0.3.0rc70__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.
@@ -4,7 +4,6 @@ Affect things like logging and the names of metrics.
4
4
  """
5
5
 
6
6
  import contextvars
7
- import uuid
8
7
  from dataclasses import dataclass
9
8
 
10
9
  # These are sentinels used only in the Requester object below rather than actual org
@@ -21,17 +20,11 @@ class Requester:
21
20
 
22
21
 
23
22
  _SERVICE_NAME = contextvars.ContextVar("service_name", default="corvic")
24
- _TRACE_ID = contextvars.ContextVar("trace_id", default="")
25
23
  _REQUESTER = contextvars.ContextVar(
26
24
  "requester_identity", default=Requester(org_id=NOBODY_ORG_ID)
27
25
  )
28
26
 
29
27
 
30
- def get_trace_id() -> str:
31
- """Get current trace id."""
32
- return _TRACE_ID.get()
33
-
34
-
35
28
  def get_service_name() -> str:
36
29
  """Get current service name."""
37
30
  return _SERVICE_NAME.get()
@@ -45,7 +38,6 @@ def get_requester() -> Requester:
45
38
  def reset_context(*, service_name: str):
46
39
  """Reset contextvars for a new request."""
47
40
  _SERVICE_NAME.set(service_name)
48
- _TRACE_ID.set(str(uuid.uuid4()))
49
41
  _REQUESTER.set(Requester(org_id=NOBODY_ORG_ID))
50
42
 
51
43
 
corvic/engine/_native.pyd CHANGED
Binary file
corvic/model/_space.py CHANGED
@@ -3,6 +3,7 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  import abc
6
+ import copy
6
7
  import datetime
7
8
  import uuid
8
9
  from collections.abc import Iterable, Mapping, Sequence
@@ -182,6 +183,30 @@ class Space(BelongsToRoomModel[SpaceID, models_pb2.Space, orm.Space]):
182
183
  auto_sync=auto_sync,
183
184
  )
184
185
 
186
+ def with_name(self, name: str):
187
+ proto_self = copy.copy(self.proto_self)
188
+
189
+ proto_self.name = name
190
+
191
+ return Ok(
192
+ self.__class__(
193
+ self.feature_view.client,
194
+ proto_self,
195
+ )
196
+ )
197
+
198
+ def with_description(self, description: str):
199
+ proto_self = copy.copy(self.proto_self)
200
+
201
+ proto_self.description = description
202
+
203
+ return Ok(
204
+ self.__class__(
205
+ self.feature_view.client,
206
+ proto_self,
207
+ )
208
+ )
209
+
185
210
  @classmethod
186
211
  def from_id(
187
212
  cls,
@@ -16,7 +16,7 @@ from corvic.op_graph.row_filters._row_filters import (
16
16
  lt,
17
17
  ne,
18
18
  )
19
- from corvic.pa_scalar import from_value
19
+ from corvic.pa_scalar import from_value, to_value
20
20
  from corvic.result import Error, InvalidArgumentError, Ok
21
21
 
22
22
 
@@ -76,6 +76,35 @@ def _var_name(value: struct_pb2.Value) -> str:
76
76
  raise _Error("unexpected operation type")
77
77
 
78
78
 
79
+ def _coerce_literal(literal: struct_pb2.Value, dtype: pa.DataType) -> struct_pb2.Value:
80
+ # Attempt to coerce the literal to the type it needs to be compared against,
81
+ # if the types don't already align.
82
+ match literal.WhichOneof("kind"):
83
+ case "null_value":
84
+ types_match = pa.types.is_null(dtype)
85
+ case "bool_value":
86
+ types_match = pa.types.is_boolean(dtype)
87
+ case "list_value":
88
+ # TODO(aneesh): inner checks for nested types
89
+ types_match = pa.types.is_list(dtype)
90
+ case "number_value":
91
+ types_match = pa.types.is_integer(dtype) or pa.types.is_floating(dtype)
92
+ case "string_value":
93
+ types_match = pa.types.is_string(dtype)
94
+ case "struct_value":
95
+ # TODO(aneesh): inner checks for nested types
96
+ types_match = pa.types.is_struct(dtype)
97
+ case None:
98
+ raise _Error("Unknown literal type")
99
+ if not types_match:
100
+ match from_value(literal, dtype):
101
+ case Ok(coerced_literal):
102
+ literal = to_value(coerced_literal)
103
+ case err:
104
+ raise err
105
+ return literal
106
+
107
+
79
108
  def _simple_compare(
80
109
  op: Literal["==", "!=", "<=", ">=", "<", ">"],
81
110
  operands: Sequence[struct_pb2.Value],
@@ -92,6 +121,8 @@ def _simple_compare(
92
121
  if dtype is None:
93
122
  raise _Error("unknown literal type", column_name=column_name)
94
123
 
124
+ literal = _coerce_literal(literal, dtype)
125
+
95
126
  match op:
96
127
  case "==":
97
128
  return eq(column_name, literal, dtype)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: corvic-engine
3
- Version: 0.3.0rc68
3
+ Version: 0.3.0rc70
4
4
  Classifier: Environment :: Console
5
5
  Classifier: License :: Other/Proprietary License
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -1,8 +1,8 @@
1
- corvic_engine-0.3.0rc68.dist-info/METADATA,sha256=LqkQW9x8Hl08daRZPy-wd3FNjwbTGvR8ovJjeGkSdFs,1814
2
- corvic_engine-0.3.0rc68.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
- corvic_engine-0.3.0rc68.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
1
+ corvic_engine-0.3.0rc70.dist-info/METADATA,sha256=YFJn7d_RPlnlF3WG2I_OIPcXoSEHm7Ir1e3UJVHTD9Q,1814
2
+ corvic_engine-0.3.0rc70.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
+ corvic_engine-0.3.0rc70.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
4
4
  corvic/context/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- corvic/context/__init__.py,sha256=zBnPiP-tStGSVMG_0-G_0ay6-yIX2aerW_oYRzAex74,1702
5
+ corvic/context/__init__.py,sha256=J69SWL27p4euoS3e_Z1K-rqSFRzGdBT3ryuRfM9r9cM,1498
6
6
  corvic/embed/node2vec.py,sha256=Qep1lYMKN4nL4z6Ftylr0pj2aJ2LJmWRmnZV27xYJ-M,11251
7
7
  corvic/embed/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  corvic/embed/__init__.py,sha256=cZZSrRXmezJuTafcQgrB1rbitqXZTVY1B5ryRzAlvgs,144
@@ -24,7 +24,7 @@ corvic/model/_proto_orm_convert.py,sha256=zsvA6DLQ2RGXhRW0zok-iyGyNkKzngmh8uSBXt
24
24
  corvic/model/_resource.py,sha256=5T0z0Bdy2_q2IgAT4kIHSVHF3e9uuh9no-Uwqc0cM2w,7743
25
25
  corvic/model/_room.py,sha256=36mXngZ38L4mr6_LgUm-QgsUUaoGMiYQRfvXLV_jd-4,2914
26
26
  corvic/model/_source.py,sha256=ss2JE0EMeWVdZUnp9xqeyzuoQn1VnR1HSNMK4agrd-8,9867
27
- corvic/model/_space.py,sha256=5DW0t5Y5Xpegp6fIO7S9jhjqOildgr46pUBPWNb_HNQ,35892
27
+ corvic/model/_space.py,sha256=Yo9c1JZqXZdNEcwyov5je2siei2hk7UymP_z5BU8UHU,36475
28
28
  corvic/model/__init__.py,sha256=9xleS6S21RjQAHJwCGuAcwLIiBFmsmnld8xYAkim2gg,2997
29
29
  corvic/op_graph/aggregation.py,sha256=8X6vqXD7dLHrhYJU0BqmhUsWGbzD1zSP5Db5VHdIru4,6187
30
30
  corvic/op_graph/encoders.py,sha256=93wYoBCn_us5lRCkqvjaP0LTg3LBB3yEfhzICv06bB0,10460
@@ -32,7 +32,7 @@ corvic/op_graph/errors.py,sha256=I4NE5053d0deGm5xx5EmyP4f98qx42xnIsW1IA-2hy4,163
32
32
  corvic/op_graph/feature_types.py,sha256=ZE6onUGW4Xa7tPL4XgRVQ1Tvj5FVJJ66di3ShDTR0Ak,9623
33
33
  corvic/op_graph/ops.py,sha256=Ckg5MJXLR6Ek67Vp1SelhQXSQUu7ySIgMsznbxW3UPk,111768
34
34
  corvic/op_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
- corvic/op_graph/row_filters/_jsonlogic.py,sha256=tBd-wOwE6AIx9XEkuSVdBx9iB08nsdHJdvNzEmWzrB0,6432
35
+ corvic/op_graph/row_filters/_jsonlogic.py,sha256=0UdwOZmIGp4yuExHM3qqAnJYmcGv7iuc3vLub3GD-9Y,7685
36
36
  corvic/op_graph/row_filters/_row_filters.py,sha256=p3O7tJbLsy65Vs7shAiDjpdM4RzYA4-fyzwskt15pPk,9469
37
37
  corvic/op_graph/row_filters/__init__.py,sha256=1sibH_kLw7t_9bpRccnEGWqdCiN0VaUh9LMMIMCRyL8,575
38
38
  corvic/op_graph/sample_strategy.py,sha256=DrbtJ3ORkIRfyIE_FdlOh_UMnCW_K9jL1LeonVYb3bU,3007
@@ -113,9 +113,9 @@ corvic_generated/feature/v1/experiment_pb2_grpc.py,sha256=B2t03V3SImzl6cZkJefpWX
113
113
  corvic_generated/feature/v1/space_pb2.py,sha256=UaKTQq8gEcmMm6zbODc3OpS_KbbmAuEVa5uRFtwedOk,11969
114
114
  corvic_generated/feature/v1/space_pb2_grpc.py,sha256=4zW43K2lSvrMRuPrr9Qu6bqcALPkppMJvnwBhp5CgFU,10233
115
115
  corvic_generated/feature/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
- corvic_generated/feature/v2/feature_view_pb2.py,sha256=TU1vTLPSWSXVEsmXpZm7KT0ey9BhhqYLB_ykNikW2iA,10719
116
+ corvic_generated/feature/v2/feature_view_pb2.py,sha256=UA9GtA4-xT6tQYwW8OPkT7v2UUbkr9jAC109dvghT0Y,10707
117
117
  corvic_generated/feature/v2/feature_view_pb2_grpc.py,sha256=7cFfkmpQvdsuzPaeMrc0wAv2lyiHzmG6G-nWc8l6VHo,10945
118
- corvic_generated/feature/v2/space_pb2.py,sha256=b6LMjCGk7fsahw_3VJrcGL2qTdhfVijR8CT-ooJgVy4,20296
118
+ corvic_generated/feature/v2/space_pb2.py,sha256=i5Cigs5oBwDXq12MqwWF2z_X6_pwzM--w04TyylEt0Q,21227
119
119
  corvic_generated/feature/v2/space_pb2_grpc.py,sha256=OJ8bqDou85cxgOBpMYv-KZ85jZWriXCt1UzT3WuBpIk,18779
120
120
  corvic_generated/ingest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
121
  corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -126,7 +126,7 @@ corvic_generated/ingest/v2/pipeline_pb2.py,sha256=2_TOCIOM5nqt3HB1Sb86qqYix-qfF2
126
126
  corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
127
127
  corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
128
128
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
129
- corvic_generated/ingest/v2/resource_pb2.py,sha256=iKLRhCEtj2H0rZWP79n-5AdyYrZmMB1ljE8E_x-ahlo,16260
129
+ corvic_generated/ingest/v2/resource_pb2.py,sha256=fBeCa-mmyfU2QyYkY2EI8LPYFPynVONCmSKPUUncAhM,16248
130
130
  corvic_generated/ingest/v2/resource_pb2_grpc.py,sha256=Er-l9DfnUJVX3PFRAoKZonyPww1X8bn9PcC4ODHfX-g,17045
131
131
  corvic_generated/ingest/v2/room_pb2.py,sha256=x4FEUSP6qt6-nUxVENidEW0Y4jHqe_vtgIXacuEB7NU,8180
132
132
  corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
@@ -140,7 +140,7 @@ corvic_generated/model/v1alpha/models_pb2.py,sha256=3rorA81pyk826oXnCn0nfVo1aRcA
140
140
  corvic_generated/model/v1alpha/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
141
141
  corvic_generated/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
142
  corvic_generated/orm/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- corvic_generated/orm/v1/agent_pb2.py,sha256=4Kabs36WUXob4fkwOVNUKijEqyYhBnKPmPu7xamh5Bs,4070
143
+ corvic_generated/orm/v1/agent_pb2.py,sha256=4fHu4ZNwUX4eRThj23Te-QNR2NDCbbLWKeSQa0zoEbg,4147
144
144
  corvic_generated/orm/v1/agent_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
145
145
  corvic_generated/orm/v1/common_pb2.py,sha256=pu1Rto4Pm8ntdB12Rgb_qnz3qOalxlOnrLuKE1fCETs,3490
146
146
  corvic_generated/orm/v1/common_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
@@ -170,7 +170,7 @@ corvic_generated/feature/v1/space_pb2.pyi,sha256=n8ntvEwKty8DyhLIZXCLZp9fEy97Wuc
170
170
  corvic_generated/feature/v1/space_pb2_grpc.pyi,sha256=9Uiq5RktKOhFeNCsO4HnH1DsP_vUuJVL_q89irLfkTI,6478
171
171
  corvic_generated/feature/v2/feature_view_pb2.pyi,sha256=qX2oDpnwrKtAuxQ_S3ow3-rhA8SKGsyhElEu8aWO2vQ,5380
172
172
  corvic_generated/feature/v2/feature_view_pb2_grpc.pyi,sha256=DBzKaij5EvK5ev2FBtkX6ov-H0AtsgeGGbRtjS-T8BE,7109
173
- corvic_generated/feature/v2/space_pb2.pyi,sha256=CzvwNq2htgLu_IVu3LgWtlb6Pow2gB0HIiIXpyXoDBI,14047
173
+ corvic_generated/feature/v2/space_pb2.pyi,sha256=tFc52V9MVxn3x59Bk39XwjJDe82At7VobzdEcRx19ko,14425
174
174
  corvic_generated/feature/v2/space_pb2_grpc.pyi,sha256=9011aCTfJYWjgK5UoiS9NjRKIJSDjuX51DB5tw5xc10,8267
175
175
  corvic_generated/ingest/v1/service_pb2.pyi,sha256=e2KYl6sQ11MyePRGkKU5gi05_uCF7cCM0fInG-BwfHg,8528
176
176
  corvic_generated/ingest/v1/service_pb2_grpc.pyi,sha256=phnkwO0XzxuZZhL-BICXfYv7Z9TcNxLQ_eMZFCEz1g0,14052
@@ -188,7 +188,7 @@ corvic_generated/ingest/v2/table_pb2.pyi,sha256=p22F8kv0HfM-9OzGP88bLofxmUtxfLR5
188
188
  corvic_generated/ingest/v2/table_pb2_grpc.pyi,sha256=AEXYNtrU4xyENumcCrkD2FmFV7T1UVidxxeZ5pyE4Qc,4554
189
189
  corvic_generated/model/v1alpha/models_pb2.pyi,sha256=ELw1kPiAaYNDtrRk2pTMjU3v9nQtluoS4p5FHOBBc9o,10853
190
190
  corvic_generated/model/v1alpha/models_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
191
- corvic_generated/orm/v1/agent_pb2.pyi,sha256=xrL16mmyvJssphjrWTZCTFWzFpsJemSSdxHKG0v8keY,4921
191
+ corvic_generated/orm/v1/agent_pb2.pyi,sha256=WRUrntKx3-eFEs2uYuZ__9H7VL-yY5dZ3HuWDyTsmvA,5069
192
192
  corvic_generated/orm/v1/agent_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
193
193
  corvic_generated/orm/v1/common_pb2.pyi,sha256=PZi9KfnXWzlQC0bMuDC71IOmgIaYClY2jPghzKV-mAo,3557
194
194
  corvic_generated/orm/v1/common_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
@@ -206,5 +206,5 @@ corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykF
206
206
  corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
207
207
  corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
208
208
  corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
209
- corvic/engine/_native.pyd,sha256=TtJ1uDy8UIXFMWrfokiDyOpYrTfHv-IO6JzbYBcDXEA,438272
210
- corvic_engine-0.3.0rc68.dist-info/RECORD,,
209
+ corvic/engine/_native.pyd,sha256=skZBxn0nt_nQSJuiLNgb_YHKi0GCjOQeb0qng1tdGZU,438272
210
+ corvic_engine-0.3.0rc70.dist-info/RECORD,,
@@ -17,7 +17,7 @@ from corvic_generated.ingest.v2 import source_pb2 as corvic_dot_ingest_dot_v2_do
17
17
  from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor__pb2
18
18
 
19
19
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\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')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$corvic/feature/v2/feature_view.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a\x1d\x63orvic/ingest/v2/source.proto\x1a google/protobuf/descriptor.proto\"\x94\x01\n\x0cOutputSource\x12\x83\x01\n\tsource_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x08sourceId\"\x9f\x02\n\x10\x46\x65\x61tureViewEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x44\n\x0esource_entries\x18\x03 \x03(\x0b\x32\x1d.corvic.ingest.v2.SourceEntryR\rsourceEntries\x12\x1b\n\x04name\x18\x04 \x01(\tB\x07\xbaH\x04r\x02\x10\x01R\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x46\n\x0eoutput_sources\x18\x07 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x06\x10\x07R\x0foutput_entities\"\x8f\x01\n\x15GetFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"k\n\x16GetFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x9a\x01\n\x17ListFeatureViewsRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\"q\n\x18ListFeatureViewsResponse\x12U\n\x14\x66\x65\x61ture_view_entries\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x12\x66\x65\x61tureViewEntries\"\xd3\x03\n\x18\x43reateFeatureViewRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12\x1e\n\x04name\x18\x02 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12*\n\x0b\x64\x65scription\x18\x03 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x8a\x01\n\nsource_ids\x18\x04 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x06 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x05\x10\x06R\x0foutput_entities\"n\n\x19\x43reateFeatureViewResponse\x12Q\n\x12\x66\x65\x61ture_view_entry\x18\x01 \x01(\x0b\x32#.corvic.feature.v2.FeatureViewEntryR\x10\x66\x65\x61tureViewEntry\"\x92\x01\n\x18\x44\x65leteFeatureViewRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x1b\n\x19\x44\x65leteFeatureViewResponse\"\x8f\x02\n\"GetFeatureViewRelationshipsRequest\x12\x8a\x01\n\nsource_ids\x18\x01 \x03(\tBk\xbaHh\x92\x01\x65\"cr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\tsourceIds\x12\x46\n\x0eoutput_sources\x18\x03 \x03(\x0b\x32\x1f.corvic.feature.v2.OutputSourceR\routputSourcesJ\x04\x08\x02\x10\x03R\x0eoutput_entites\"U\n\x12SourceRelationship\x12?\n\x1crelationship_path_source_ids\x18\x03 \x03(\tR\x19relationshipPathSourceIds\"\x7f\n#GetFeatureViewRelationshipsResponse\x12X\n\x14source_relationships\x18\x01 \x03(\x0b\x32%.corvic.feature.v2.SourceRelationshipR\x13sourceRelationships2\xea\x04\n\x12\x46\x65\x61tureViewService\x12j\n\x0eGetFeatureView\x12(.corvic.feature.v2.GetFeatureViewRequest\x1a).corvic.feature.v2.GetFeatureViewResponse\"\x03\x90\x02\x01\x12p\n\x11\x43reateFeatureView\x12+.corvic.feature.v2.CreateFeatureViewRequest\x1a,.corvic.feature.v2.CreateFeatureViewResponse\"\x00\x12p\n\x11\x44\x65leteFeatureView\x12+.corvic.feature.v2.DeleteFeatureViewRequest\x1a,.corvic.feature.v2.DeleteFeatureViewResponse\"\x00\x12p\n\x10ListFeatureViews\x12*.corvic.feature.v2.ListFeatureViewsRequest\x1a+.corvic.feature.v2.ListFeatureViewsResponse\"\x03\x90\x02\x01\x12\x91\x01\n\x1bGetFeatureViewRelationships\x12\x35.corvic.feature.v2.GetFeatureViewRelationshipsRequest\x1a\x36.corvic.feature.v2.GetFeatureViewRelationshipsResponse\"\x03\x90\x02\x01\x62\x06proto3')
21
21
 
22
22
  _globals = globals()
23
23
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -31,7 +31,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
31
31
  _globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._options = None
32
32
  _globals['_GETFEATUREVIEWREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
33
33
  _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._options = None
34
- _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\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'
34
+ _globals['_LISTFEATUREVIEWSREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
35
35
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._options = None
36
36
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
37
37
  _globals['_CREATEFEATUREVIEWREQUEST'].fields_by_name['name']._options = None
@@ -59,23 +59,23 @@ if _descriptor._USE_C_DESCRIPTORS == False:
59
59
  _globals['_GETFEATUREVIEWRESPONSE']._serialized_start=740
60
60
  _globals['_GETFEATUREVIEWRESPONSE']._serialized_end=847
61
61
  _globals['_LISTFEATUREVIEWSREQUEST']._serialized_start=850
62
- _globals['_LISTFEATUREVIEWSREQUEST']._serialized_end=1006
63
- _globals['_LISTFEATUREVIEWSRESPONSE']._serialized_start=1008
64
- _globals['_LISTFEATUREVIEWSRESPONSE']._serialized_end=1121
65
- _globals['_CREATEFEATUREVIEWREQUEST']._serialized_start=1124
66
- _globals['_CREATEFEATUREVIEWREQUEST']._serialized_end=1591
67
- _globals['_CREATEFEATUREVIEWRESPONSE']._serialized_start=1593
68
- _globals['_CREATEFEATUREVIEWRESPONSE']._serialized_end=1703
69
- _globals['_DELETEFEATUREVIEWREQUEST']._serialized_start=1706
70
- _globals['_DELETEFEATUREVIEWREQUEST']._serialized_end=1852
71
- _globals['_DELETEFEATUREVIEWRESPONSE']._serialized_start=1854
72
- _globals['_DELETEFEATUREVIEWRESPONSE']._serialized_end=1881
73
- _globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_start=1884
74
- _globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_end=2155
75
- _globals['_SOURCERELATIONSHIP']._serialized_start=2157
76
- _globals['_SOURCERELATIONSHIP']._serialized_end=2242
77
- _globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=2244
78
- _globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=2371
79
- _globals['_FEATUREVIEWSERVICE']._serialized_start=2374
80
- _globals['_FEATUREVIEWSERVICE']._serialized_end=2992
62
+ _globals['_LISTFEATUREVIEWSREQUEST']._serialized_end=1004
63
+ _globals['_LISTFEATUREVIEWSRESPONSE']._serialized_start=1006
64
+ _globals['_LISTFEATUREVIEWSRESPONSE']._serialized_end=1119
65
+ _globals['_CREATEFEATUREVIEWREQUEST']._serialized_start=1122
66
+ _globals['_CREATEFEATUREVIEWREQUEST']._serialized_end=1589
67
+ _globals['_CREATEFEATUREVIEWRESPONSE']._serialized_start=1591
68
+ _globals['_CREATEFEATUREVIEWRESPONSE']._serialized_end=1701
69
+ _globals['_DELETEFEATUREVIEWREQUEST']._serialized_start=1704
70
+ _globals['_DELETEFEATUREVIEWREQUEST']._serialized_end=1850
71
+ _globals['_DELETEFEATUREVIEWRESPONSE']._serialized_start=1852
72
+ _globals['_DELETEFEATUREVIEWRESPONSE']._serialized_end=1879
73
+ _globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_start=1882
74
+ _globals['_GETFEATUREVIEWRELATIONSHIPSREQUEST']._serialized_end=2153
75
+ _globals['_SOURCERELATIONSHIP']._serialized_start=2155
76
+ _globals['_SOURCERELATIONSHIP']._serialized_end=2240
77
+ _globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_start=2242
78
+ _globals['_GETFEATUREVIEWRELATIONSHIPSRESPONSE']._serialized_end=2369
79
+ _globals['_FEATUREVIEWSERVICE']._serialized_start=2372
80
+ _globals['_FEATUREVIEWSERVICE']._serialized_end=2990
81
81
  # @@protoc_insertion_point(module_scope)
@@ -21,7 +21,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
21
21
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
22
22
 
23
23
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x96\x01\n\x11ListSpacesRequest\x12\x80\x01\n\x07room_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\x95\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xb4\x01\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12\x1b\n\tauto_sync\x18\x02 \x01(\x08R\x08\x61utoSync\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
24
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x63orvic/feature/v2/space.proto\x12\x11\x63orvic.feature.v2\x1a\x1b\x62uf/validate/validate.proto\x1a%corvic/algorithm/graph/v1/graph.proto\x1a corvic/embedding/v1/models.proto\x1a\x1c\x63orvic/status/v1/event.proto\x1a google/protobuf/descriptor.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xc0\x06\n\nParameters\x12\x8e\x01\n\x0f\x66\x65\x61ture_view_id\x18\x04 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\rfeatureViewId\x12p\n\x1b\x63olumn_embedding_parameters\x18\x02 \x01(\x0b\x32..corvic.embedding.v1.ColumnEmbeddingParametersH\x00R\x19\x63olumnEmbeddingParameters\x12`\n\x13node2vec_parameters\x18\x03 \x01(\x0b\x32-.corvic.algorithm.graph.v1.Node2VecParametersH\x00R\x12node2vecParameters\x12p\n\x17\x63oncat_string_and_embed\x18\x05 \x01(\x0b\x32\x33.corvic.embedding.v1.ConcatStringAndEmbedParametersB\x02\x18\x01H\x00R\x14\x63oncatStringAndEmbed\x12n\n\x1b\x63oncat_and_embed_parameters\x18\x06 \x01(\x0b\x32-.corvic.embedding.v1.ConcatAndEmbedParametersH\x00R\x18\x63oncatAndEmbedParameters\x12n\n\x1b\x65mbed_and_concat_parameters\x18\x07 \x01(\x0b\x32-.corvic.embedding.v1.EmbedAndConcatParametersH\x00R\x18\x65mbedAndConcatParameters\x12\x61\n\x16\x65mbed_image_parameters\x18\x08 \x01(\x0b\x32).corvic.embedding.v1.EmbedImageParametersH\x00R\x14\x65mbedImageParametersB\x08\n\x06paramsJ\x04\x08\x01\x10\x02R\x08space_id\"\xa2\x01\n\x10\x45mbeddingMetrics\x12\x15\n\x06ne_sum\x18\x01 \x01(\x02R\x05neSum\x12)\n\x10\x63ondition_number\x18\x02 \x01(\x02R\x0f\x63onditionNumber\x12+\n\x11rcondition_number\x18\x04 \x01(\x02R\x10rconditionNumber\x12\x1f\n\x0bstable_rank\x18\x03 \x01(\x02R\nstableRank\"\xd2\x03\n\nSpaceEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12\x39\n\ncreated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x05 \x01(\tR\x0b\x64\x65scription\x12\x35\n\x06params\x18\x06 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12<\n\rrecent_events\x18\x07 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\x12P\n\x11\x65mbedding_metrics\x18\x08 \x01(\x0b\x32#.corvic.feature.v2.EmbeddingMetricsR\x10\x65mbeddingMetrics\x12;\n\nspace_type\x18\t \x01(\x0e\x32\x1c.corvic.feature.v2.SpaceTypeR\tspaceType\x12\x1b\n\tauto_sync\x18\n \x01(\x08R\x08\x61utoSync\"\xde\x01\n\rSpaceRunEntry\x12\x17\n\x07room_id\x18\x01 \x01(\tR\x06roomId\x12\x19\n\x08space_id\x18\x02 \x01(\tR\x07spaceId\x12 \n\x0cspace_run_id\x18\x03 \x01(\tR\nspaceRunId\x12\x39\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12<\n\rrecent_events\x18\x05 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"\x95\x01\n\x0fGetSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"R\n\x10GetSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x94\x01\n\x11ListSpacesRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\"X\n\x12ListSpacesResponse\x12\x42\n\rspace_entries\x18\x01 \x03(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\x0cspaceEntries\"\xb6\x02\n\x12\x43reateSpaceRequest\x12\x7f\n\x07room_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x06roomId\x12*\n\x0b\x64\x65scription\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x35\n\x06params\x18\x03 \x03(\x0b\x32\x1d.corvic.feature.v2.ParametersR\x06params\x12\x1b\n\tauto_sync\x18\x04 \x01(\x08R\x08\x61utoSync\x12\x1f\n\x04name\x18\x05 \x01(\tB\x0b\xbaH\x08r\x03\x18\x96\x01\xd8\x01\x01R\x04name\"U\n\x13\x43reateSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry\"\x8c\x01\n\x12\x44\x65leteSpaceRequest\x12v\n\x02id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x02id\"\x15\n\x13\x44\x65leteSpaceResponse\"\x9b\x01\n\x15GetSpaceResultRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"7\n\x16GetSpaceResultResponse\x12\x1d\n\nsigned_url\x18\x01 \x01(\tR\tsignedUrl\"\xa2\x01\n\x1cGetSpaceVisualizationRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\"f\n\x10\x45mbeddingRowData\x12\x17\n\x07node_id\x18\x03 \x01(\tR\x06nodeId\x12\x1b\n\tnode_type\x18\x04 \x01(\tR\x08nodeType\x12\x1c\n\tembedding\x18\x02 \x03(\x02R\tembedding\"`\n\x12\x45mbeddingTableData\x12J\n\x0e\x65mbedding_rows\x18\x01 \x03(\x0b\x32#.corvic.feature.v2.EmbeddingRowDataR\rembeddingRows\"\xa4\x01\n\x1dGetSpaceVisualizationResponse\x12G\n\x0b\x63oordinates\x18\x01 \x01(\x0b\x32%.corvic.feature.v2.EmbeddingTableDataR\x0b\x63oordinates\x12:\n\x19\x66raction_points_retrieved\x18\x02 \x01(\x02R\x17\x66ractionPointsRetrieved\"V\n\tSourceKey\x12\x1b\n\tsource_id\x18\x01 \x01(\tR\x08sourceId\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x16.google.protobuf.ValueR\x05value\"f\n\x11VisualizationData\x12;\n\nsource_key\x18\x01 \x01(\x0b\x32\x1c.corvic.feature.v2.SourceKeyR\tsourceKey\x12\x14\n\x05point\x18\x02 \x03(\x02R\x05point\"\xea\x02\n\x17GetVisualizationRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x89\x01\n\x0cspace_run_id\x18\x04 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\nspaceRunId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\x12&\n\nnum_points\x18\x03 \x01(\x05\x42\x07\xbaH\x04\x1a\x02 \x00R\tnumPoints\"l\n\x18GetVisualizationResponse\x12\x16\n\x06\x63ursor\x18\x01 \x01(\tR\x06\x63ursor\x12\x38\n\x04\x64\x61ta\x18\x02 \x03(\x0b\x32$.corvic.feature.v2.VisualizationDataR\x04\x64\x61ta\"\x8d\x01\n\x1aListSpacerunsCursorPayload\x12\x19\n\x08space_id\x18\x01 \x01(\tR\x07spaceId\x12T\n\x19\x63reate_time_of_last_entry\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"\xb3\x01\n\x14ListSpaceRunsRequest\x12\x82\x01\n\x08space_id\x18\x01 \x01(\tBg\xbaHdr\x02\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')\xd8\x01\x01R\x07spaceId\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"}\n\x15ListSpaceRunsResponse\x12L\n\x11space_run_entries\x18\x01 \x03(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\x0fspaceRunEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x9f\x01\n\x12GetSpaceRunRequest\x12\x88\x01\n\x0cspace_run_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\nspaceRunId\"_\n\x13GetSpaceRunResponse\x12H\n\x0fspace_run_entry\x18\x01 \x01(\x0b\x32 .corvic.feature.v2.SpaceRunEntryR\rspaceRunEntry\"\xa8\x02\n\x11PatchSpaceRequest\x12\x81\x01\n\x08space_id\x18\x01 \x01(\tBf\xbaHcr\x04\x10\x01\x18\x14\xba\x01Z\n\x0estring.pattern\x12\x16value must be a number\x1a\x30this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')R\x07spaceId\x12\x1b\n\tauto_sync\x18\x02 \x01(\x08R\x08\x61utoSync\x12\x31\n\x0enew_space_name\x18\x03 \x01(\tB\x0b\xbaH\x08r\x03\x18\x96\x01\xd8\x01\x01R\x0cnewSpaceName\x12?\n\x15new_space_description\x18\x04 \x01(\tB\x0b\xbaH\x08r\x03\x18\xe8\x07\xd8\x01\x01R\x13newSpaceDescription\"T\n\x12PatchSpaceResponse\x12>\n\x0bspace_entry\x18\x01 \x01(\x0b\x32\x1d.corvic.feature.v2.SpaceEntryR\nspaceEntry*\x89\x01\n\tSpaceType\x12\x1a\n\x16SPACE_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15SPACE_TYPE_RELATIONAL\x10\x01\x12\x17\n\x13SPACE_TYPE_SEMANTIC\x10\x02\x12\x16\n\x12SPACE_TYPE_TABULAR\x10\x03\x12\x14\n\x10SPACE_TYPE_IMAGE\x10\x04\x32\x90\x08\n\x0cSpaceService\x12X\n\x08GetSpace\x12\".corvic.feature.v2.GetSpaceRequest\x1a#.corvic.feature.v2.GetSpaceResponse\"\x03\x90\x02\x01\x12[\n\nPatchSpace\x12$.corvic.feature.v2.PatchSpaceRequest\x1a%.corvic.feature.v2.PatchSpaceResponse\"\x00\x12^\n\x0b\x43reateSpace\x12%.corvic.feature.v2.CreateSpaceRequest\x1a&.corvic.feature.v2.CreateSpaceResponse\"\x00\x12^\n\x0b\x44\x65leteSpace\x12%.corvic.feature.v2.DeleteSpaceRequest\x1a&.corvic.feature.v2.DeleteSpaceResponse\"\x00\x12^\n\nListSpaces\x12$.corvic.feature.v2.ListSpacesRequest\x1a%.corvic.feature.v2.ListSpacesResponse\"\x03\x90\x02\x01\x12j\n\x0eGetSpaceResult\x12(.corvic.feature.v2.GetSpaceResultRequest\x1a).corvic.feature.v2.GetSpaceResultResponse\"\x03\x90\x02\x01\x12\x7f\n\x15GetSpaceVisualization\x12/.corvic.feature.v2.GetSpaceVisualizationRequest\x1a\x30.corvic.feature.v2.GetSpaceVisualizationResponse\"\x03\x90\x02\x01\x12p\n\x10GetVisualization\x12*.corvic.feature.v2.GetVisualizationRequest\x1a+.corvic.feature.v2.GetVisualizationResponse\"\x03\x90\x02\x01\x12g\n\rListSpaceRuns\x12\'.corvic.feature.v2.ListSpaceRunsRequest\x1a(.corvic.feature.v2.ListSpaceRunsResponse\"\x03\x90\x02\x01\x12\x61\n\x0bGetSpaceRun\x12%.corvic.feature.v2.GetSpaceRunRequest\x1a&.corvic.feature.v2.GetSpaceRunResponse\"\x03\x90\x02\x01\x62\x06proto3')
25
25
 
26
26
  _globals = globals()
27
27
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -35,11 +35,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
35
35
  _globals['_GETSPACEREQUEST'].fields_by_name['space_id']._options = None
36
36
  _globals['_GETSPACEREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
37
37
  _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._options = None
38
- _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\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'
38
+ _globals['_LISTSPACESREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
39
39
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._options = None
40
40
  _globals['_CREATESPACEREQUEST'].fields_by_name['room_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
41
41
  _globals['_CREATESPACEREQUEST'].fields_by_name['description']._options = None
42
42
  _globals['_CREATESPACEREQUEST'].fields_by_name['description']._serialized_options = b'\272H\005r\003\030\350\007'
43
+ _globals['_CREATESPACEREQUEST'].fields_by_name['name']._options = None
44
+ _globals['_CREATESPACEREQUEST'].fields_by_name['name']._serialized_options = b'\272H\010r\003\030\226\001\330\001\001'
43
45
  _globals['_DELETESPACEREQUEST'].fields_by_name['id']._options = None
44
46
  _globals['_DELETESPACEREQUEST'].fields_by_name['id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
45
47
  _globals['_GETSPACERESULTREQUEST'].fields_by_name['space_id']._options = None
@@ -58,6 +60,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
58
60
  _globals['_GETSPACERUNREQUEST'].fields_by_name['space_run_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
59
61
  _globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._options = None
60
62
  _globals['_PATCHSPACEREQUEST'].fields_by_name['space_id']._serialized_options = b'\272Hcr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
63
+ _globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_name']._options = None
64
+ _globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_name']._serialized_options = b'\272H\010r\003\030\226\001\330\001\001'
65
+ _globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_description']._options = None
66
+ _globals['_PATCHSPACEREQUEST'].fields_by_name['new_space_description']._serialized_options = b'\272H\010r\003\030\350\007\330\001\001'
61
67
  _globals['_SPACESERVICE'].methods_by_name['GetSpace']._options = None
62
68
  _globals['_SPACESERVICE'].methods_by_name['GetSpace']._serialized_options = b'\220\002\001'
63
69
  _globals['_SPACESERVICE'].methods_by_name['ListSpaces']._options = None
@@ -72,8 +78,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
72
78
  _globals['_SPACESERVICE'].methods_by_name['ListSpaceRuns']._serialized_options = b'\220\002\001'
73
79
  _globals['_SPACESERVICE'].methods_by_name['GetSpaceRun']._options = None
74
80
  _globals['_SPACESERVICE'].methods_by_name['GetSpaceRun']._serialized_options = b'\220\002\001'
75
- _globals['_SPACETYPE']._serialized_start=5385
76
- _globals['_SPACETYPE']._serialized_end=5522
81
+ _globals['_SPACETYPE']._serialized_start=5532
82
+ _globals['_SPACETYPE']._serialized_end=5669
77
83
  _globals['_PARAMETERS']._serialized_start=282
78
84
  _globals['_PARAMETERS']._serialized_end=1114
79
85
  _globals['_EMBEDDINGMETRICS']._serialized_start=1117
@@ -87,51 +93,51 @@ if _descriptor._USE_C_DESCRIPTORS == False:
87
93
  _globals['_GETSPACERESPONSE']._serialized_start=2127
88
94
  _globals['_GETSPACERESPONSE']._serialized_end=2209
89
95
  _globals['_LISTSPACESREQUEST']._serialized_start=2212
90
- _globals['_LISTSPACESREQUEST']._serialized_end=2362
91
- _globals['_LISTSPACESRESPONSE']._serialized_start=2364
92
- _globals['_LISTSPACESRESPONSE']._serialized_end=2452
93
- _globals['_CREATESPACEREQUEST']._serialized_start=2455
94
- _globals['_CREATESPACEREQUEST']._serialized_end=2732
95
- _globals['_CREATESPACERESPONSE']._serialized_start=2734
96
- _globals['_CREATESPACERESPONSE']._serialized_end=2819
97
- _globals['_DELETESPACEREQUEST']._serialized_start=2822
98
- _globals['_DELETESPACEREQUEST']._serialized_end=2962
99
- _globals['_DELETESPACERESPONSE']._serialized_start=2964
100
- _globals['_DELETESPACERESPONSE']._serialized_end=2985
101
- _globals['_GETSPACERESULTREQUEST']._serialized_start=2988
102
- _globals['_GETSPACERESULTREQUEST']._serialized_end=3143
103
- _globals['_GETSPACERESULTRESPONSE']._serialized_start=3145
104
- _globals['_GETSPACERESULTRESPONSE']._serialized_end=3200
105
- _globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_start=3203
106
- _globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_end=3365
107
- _globals['_EMBEDDINGROWDATA']._serialized_start=3367
108
- _globals['_EMBEDDINGROWDATA']._serialized_end=3469
109
- _globals['_EMBEDDINGTABLEDATA']._serialized_start=3471
110
- _globals['_EMBEDDINGTABLEDATA']._serialized_end=3567
111
- _globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_start=3570
112
- _globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_end=3734
113
- _globals['_SOURCEKEY']._serialized_start=3736
114
- _globals['_SOURCEKEY']._serialized_end=3822
115
- _globals['_VISUALIZATIONDATA']._serialized_start=3824
116
- _globals['_VISUALIZATIONDATA']._serialized_end=3926
117
- _globals['_GETVISUALIZATIONREQUEST']._serialized_start=3929
118
- _globals['_GETVISUALIZATIONREQUEST']._serialized_end=4291
119
- _globals['_GETVISUALIZATIONRESPONSE']._serialized_start=4293
120
- _globals['_GETVISUALIZATIONRESPONSE']._serialized_end=4401
121
- _globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_start=4404
122
- _globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_end=4545
123
- _globals['_LISTSPACERUNSREQUEST']._serialized_start=4548
124
- _globals['_LISTSPACERUNSREQUEST']._serialized_end=4727
125
- _globals['_LISTSPACERUNSRESPONSE']._serialized_start=4729
126
- _globals['_LISTSPACERUNSRESPONSE']._serialized_end=4854
127
- _globals['_GETSPACERUNREQUEST']._serialized_start=4857
128
- _globals['_GETSPACERUNREQUEST']._serialized_end=5016
129
- _globals['_GETSPACERUNRESPONSE']._serialized_start=5018
130
- _globals['_GETSPACERUNRESPONSE']._serialized_end=5113
131
- _globals['_PATCHSPACEREQUEST']._serialized_start=5116
132
- _globals['_PATCHSPACEREQUEST']._serialized_end=5296
133
- _globals['_PATCHSPACERESPONSE']._serialized_start=5298
134
- _globals['_PATCHSPACERESPONSE']._serialized_end=5382
135
- _globals['_SPACESERVICE']._serialized_start=5525
136
- _globals['_SPACESERVICE']._serialized_end=6565
96
+ _globals['_LISTSPACESREQUEST']._serialized_end=2360
97
+ _globals['_LISTSPACESRESPONSE']._serialized_start=2362
98
+ _globals['_LISTSPACESRESPONSE']._serialized_end=2450
99
+ _globals['_CREATESPACEREQUEST']._serialized_start=2453
100
+ _globals['_CREATESPACEREQUEST']._serialized_end=2763
101
+ _globals['_CREATESPACERESPONSE']._serialized_start=2765
102
+ _globals['_CREATESPACERESPONSE']._serialized_end=2850
103
+ _globals['_DELETESPACEREQUEST']._serialized_start=2853
104
+ _globals['_DELETESPACEREQUEST']._serialized_end=2993
105
+ _globals['_DELETESPACERESPONSE']._serialized_start=2995
106
+ _globals['_DELETESPACERESPONSE']._serialized_end=3016
107
+ _globals['_GETSPACERESULTREQUEST']._serialized_start=3019
108
+ _globals['_GETSPACERESULTREQUEST']._serialized_end=3174
109
+ _globals['_GETSPACERESULTRESPONSE']._serialized_start=3176
110
+ _globals['_GETSPACERESULTRESPONSE']._serialized_end=3231
111
+ _globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_start=3234
112
+ _globals['_GETSPACEVISUALIZATIONREQUEST']._serialized_end=3396
113
+ _globals['_EMBEDDINGROWDATA']._serialized_start=3398
114
+ _globals['_EMBEDDINGROWDATA']._serialized_end=3500
115
+ _globals['_EMBEDDINGTABLEDATA']._serialized_start=3502
116
+ _globals['_EMBEDDINGTABLEDATA']._serialized_end=3598
117
+ _globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_start=3601
118
+ _globals['_GETSPACEVISUALIZATIONRESPONSE']._serialized_end=3765
119
+ _globals['_SOURCEKEY']._serialized_start=3767
120
+ _globals['_SOURCEKEY']._serialized_end=3853
121
+ _globals['_VISUALIZATIONDATA']._serialized_start=3855
122
+ _globals['_VISUALIZATIONDATA']._serialized_end=3957
123
+ _globals['_GETVISUALIZATIONREQUEST']._serialized_start=3960
124
+ _globals['_GETVISUALIZATIONREQUEST']._serialized_end=4322
125
+ _globals['_GETVISUALIZATIONRESPONSE']._serialized_start=4324
126
+ _globals['_GETVISUALIZATIONRESPONSE']._serialized_end=4432
127
+ _globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_start=4435
128
+ _globals['_LISTSPACERUNSCURSORPAYLOAD']._serialized_end=4576
129
+ _globals['_LISTSPACERUNSREQUEST']._serialized_start=4579
130
+ _globals['_LISTSPACERUNSREQUEST']._serialized_end=4758
131
+ _globals['_LISTSPACERUNSRESPONSE']._serialized_start=4760
132
+ _globals['_LISTSPACERUNSRESPONSE']._serialized_end=4885
133
+ _globals['_GETSPACERUNREQUEST']._serialized_start=4888
134
+ _globals['_GETSPACERUNREQUEST']._serialized_end=5047
135
+ _globals['_GETSPACERUNRESPONSE']._serialized_start=5049
136
+ _globals['_GETSPACERUNRESPONSE']._serialized_end=5144
137
+ _globals['_PATCHSPACEREQUEST']._serialized_start=5147
138
+ _globals['_PATCHSPACEREQUEST']._serialized_end=5443
139
+ _globals['_PATCHSPACERESPONSE']._serialized_start=5445
140
+ _globals['_PATCHSPACERESPONSE']._serialized_end=5529
141
+ _globals['_SPACESERVICE']._serialized_start=5672
142
+ _globals['_SPACESERVICE']._serialized_end=6712
137
143
  # @@protoc_insertion_point(module_scope)
@@ -119,16 +119,18 @@ class ListSpacesResponse(_message.Message):
119
119
  def __init__(self, space_entries: _Optional[_Iterable[_Union[SpaceEntry, _Mapping]]] = ...) -> None: ...
120
120
 
121
121
  class CreateSpaceRequest(_message.Message):
122
- __slots__ = ("room_id", "description", "auto_sync", "params")
122
+ __slots__ = ("room_id", "description", "params", "auto_sync", "name")
123
123
  ROOM_ID_FIELD_NUMBER: _ClassVar[int]
124
124
  DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
125
- AUTO_SYNC_FIELD_NUMBER: _ClassVar[int]
126
125
  PARAMS_FIELD_NUMBER: _ClassVar[int]
126
+ AUTO_SYNC_FIELD_NUMBER: _ClassVar[int]
127
+ NAME_FIELD_NUMBER: _ClassVar[int]
127
128
  room_id: str
128
129
  description: str
129
- auto_sync: bool
130
130
  params: _containers.RepeatedCompositeFieldContainer[Parameters]
131
- def __init__(self, room_id: _Optional[str] = ..., description: _Optional[str] = ..., auto_sync: bool = ..., params: _Optional[_Iterable[_Union[Parameters, _Mapping]]] = ...) -> None: ...
131
+ auto_sync: bool
132
+ name: str
133
+ def __init__(self, room_id: _Optional[str] = ..., description: _Optional[str] = ..., params: _Optional[_Iterable[_Union[Parameters, _Mapping]]] = ..., auto_sync: bool = ..., name: _Optional[str] = ...) -> None: ...
132
134
 
133
135
  class CreateSpaceResponse(_message.Message):
134
136
  __slots__ = ("space_entry",)
@@ -261,12 +263,16 @@ class GetSpaceRunResponse(_message.Message):
261
263
  def __init__(self, space_run_entry: _Optional[_Union[SpaceRunEntry, _Mapping]] = ...) -> None: ...
262
264
 
263
265
  class PatchSpaceRequest(_message.Message):
264
- __slots__ = ("space_id", "auto_sync")
266
+ __slots__ = ("space_id", "auto_sync", "new_space_name", "new_space_description")
265
267
  SPACE_ID_FIELD_NUMBER: _ClassVar[int]
266
268
  AUTO_SYNC_FIELD_NUMBER: _ClassVar[int]
269
+ NEW_SPACE_NAME_FIELD_NUMBER: _ClassVar[int]
270
+ NEW_SPACE_DESCRIPTION_FIELD_NUMBER: _ClassVar[int]
267
271
  space_id: str
268
272
  auto_sync: bool
269
- def __init__(self, space_id: _Optional[str] = ..., auto_sync: bool = ...) -> None: ...
273
+ new_space_name: str
274
+ new_space_description: str
275
+ def __init__(self, space_id: _Optional[str] = ..., auto_sync: bool = ..., new_space_name: _Optional[str] = ..., new_space_description: _Optional[str] = ...) -> None: ...
270
276
 
271
277
  class PatchSpaceResponse(_message.Message):
272
278
  __slots__ = ("space_entry",)
@@ -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/resource.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\"\x99\x04\n\x10ResourceMetadata\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12%\n\tmime_type\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xc8\x01R\x08mimeType\x12\x7f\n\x07room_id\x18\x03 \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\roriginal_path\x18\x05 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0coriginalPath\x12*\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x87\x01\n\x0bpipeline_id\x18\x08 \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\x12;\n\ttype_hint\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.ResourceTypeR\x08typeHint\x12\x1b\n\x04size\x18\x07 \x01(\x03\x42\x07\xbaH\x04\"\x02 \x00R\x04size\"\xee\x02\n\rResourceEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x03 \x01(\tR\x08mimeType\x12\x10\n\x03md5\x18\x05 \x01(\tR\x03md5\x12\x17\n\x07room_id\x18\x06 \x01(\tR\x06roomId\x12\x12\n\x04size\x18\x07 \x01(\x04R\x04size\x12#\n\roriginal_path\x18\t \x01(\tR\x0coriginalPath\x12 \n\x0b\x64\x65scription\x18\x0b \x01(\tR\x0b\x64\x65scription\x12\x1f\n\x0bpipeline_id\x18\x0c \x01(\tR\npipelineId\x12\x37\n\x18referenced_by_source_ids\x18\n \x03(\tR\x15referencedBySourceIds\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"p\n\x16\x43reateUploadURLRequest\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x16\n\x06origin\x18\x02 \x01(\tR\x06origin\"A\n\x17\x43reateUploadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"s\n\x15UploadURLTokenPayload\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x1a\n\x08\x66ilename\x18\x02 \x01(\tR\x08\x66ilename\"0\n\x18\x46inalizeUploadURLRequest\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\"R\n\x19\x46inalizeUploadURLResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8f\x01\n\x15\x44\x65leteResourceRequest\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\"\x18\n\x16\x44\x65leteResourceResponse\"\x8c\x01\n\x12GetResourceRequest\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\"L\n\x13GetResourceResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x99\x01\n\x14ListResourcesRequest\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\"N\n\x15ListResourcesResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8b\x01\n\x0cResourceList\x12{\n\x02id\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\x02id\"\xdb\x01\n\x15WatchResourcesRequest\x12\x81\x01\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\')H\x00R\x06roomId\x12\x32\n\x03ids\x18\x02 \x01(\x0b\x32\x1e.corvic.ingest.v2.ResourceListH\x00R\x03idsB\n\n\x08selector\"d\n\x16WatchResourcesResponse\x12J\n\x10updated_resource\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fupdatedResource\"\xb5\x01\n#ListResourcesPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x1f\n\x0bpipeline_id\x18\x03 \x01(\tR\npipelineId\"\xef\x02\n\x1dListResourcesPaginatedRequest\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\x12\x88\x01\n\x0bpipeline_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\npipelineId\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"\x91\x01\n\x1eListResourcesPaginatedResponse\x12J\n\x10resource_entries\x18\x03 \x03(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fresourceEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursorJ\x04\x08\x01\x10\x02R\x05\x65ntry\"\x9a\x01\n CreateResourceDownloadURLRequest\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\"5\n!CreateResourceDownloadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url*\xab\x01\n\x0cResourceType\x12\x1d\n\x19RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x13RESOURCE_TYPE_TABLE\x10\x01\x1a\x02\x08\x01\x12!\n\x1dRESOURCE_TYPE_DIMENSION_TABLE\x10\x02\x12\x1c\n\x18RESOURCE_TYPE_FACT_TABLE\x10\x03\x12\x1e\n\x1aRESOURCE_TYPE_PDF_DOCUMENT\x10\x04\x32\x97\x07\n\x0fResourceService\x12h\n\x0f\x43reateUploadURL\x12(.corvic.ingest.v2.CreateUploadURLRequest\x1a).corvic.ingest.v2.CreateUploadURLResponse\"\x00\x12q\n\x11\x46inalizeUploadURL\x12*.corvic.ingest.v2.FinalizeUploadURLRequest\x1a+.corvic.ingest.v2.FinalizeUploadURLResponse\"\x03\x90\x02\x02\x12\x65\n\x0e\x44\x65leteResource\x12\'.corvic.ingest.v2.DeleteResourceRequest\x1a(.corvic.ingest.v2.DeleteResourceResponse\"\x00\x12_\n\x0bGetResource\x12$.corvic.ingest.v2.GetResourceRequest\x1a%.corvic.ingest.v2.GetResourceResponse\"\x03\x90\x02\x01\x12g\n\rListResources\x12&.corvic.ingest.v2.ListResourcesRequest\x1a\'.corvic.ingest.v2.ListResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x80\x01\n\x16ListResourcesPaginated\x12/.corvic.ingest.v2.ListResourcesPaginatedRequest\x1a\x30.corvic.ingest.v2.ListResourcesPaginatedResponse\"\x03\x90\x02\x01\x12j\n\x0eWatchResources\x12\'.corvic.ingest.v2.WatchResourcesRequest\x1a(.corvic.ingest.v2.WatchResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x86\x01\n\x19\x43reateResourceDownloadURL\x12\x32.corvic.ingest.v2.CreateResourceDownloadURLRequest\x1a\x33.corvic.ingest.v2.CreateResourceDownloadURLResponse\"\x00\x62\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x63orvic/ingest/v2/resource.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\"\x99\x04\n\x10ResourceMetadata\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12%\n\tmime_type\x18\x02 \x01(\tB\x08\xbaH\x05r\x03\x18\xc8\x01R\x08mimeType\x12\x7f\n\x07room_id\x18\x03 \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\roriginal_path\x18\x05 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0coriginalPath\x12*\n\x0b\x64\x65scription\x18\x06 \x01(\tB\x08\xbaH\x05r\x03\x18\xe8\x07R\x0b\x64\x65scription\x12\x87\x01\n\x0bpipeline_id\x18\x08 \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\x12;\n\ttype_hint\x18\x04 \x01(\x0e\x32\x1e.corvic.ingest.v2.ResourceTypeR\x08typeHint\x12\x1b\n\x04size\x18\x07 \x01(\x03\x42\x07\xbaH\x04\"\x02 \x00R\x04size\"\xee\x02\n\rResourceEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\tmime_type\x18\x03 \x01(\tR\x08mimeType\x12\x10\n\x03md5\x18\x05 \x01(\tR\x03md5\x12\x17\n\x07room_id\x18\x06 \x01(\tR\x06roomId\x12\x12\n\x04size\x18\x07 \x01(\x04R\x04size\x12#\n\roriginal_path\x18\t \x01(\tR\x0coriginalPath\x12 \n\x0b\x64\x65scription\x18\x0b \x01(\tR\x0b\x64\x65scription\x12\x1f\n\x0bpipeline_id\x18\x0c \x01(\tR\npipelineId\x12\x37\n\x18referenced_by_source_ids\x18\n \x03(\tR\x15referencedBySourceIds\x12<\n\rrecent_events\x18\x08 \x03(\x0b\x32\x17.corvic.status.v1.EventR\x0crecentEvents\"p\n\x16\x43reateUploadURLRequest\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x16\n\x06origin\x18\x02 \x01(\tR\x06origin\"A\n\x17\x43reateUploadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"s\n\x15UploadURLTokenPayload\x12>\n\x08metadata\x18\x01 \x01(\x0b\x32\".corvic.ingest.v2.ResourceMetadataR\x08metadata\x12\x1a\n\x08\x66ilename\x18\x02 \x01(\tR\x08\x66ilename\"0\n\x18\x46inalizeUploadURLRequest\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\"R\n\x19\x46inalizeUploadURLResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8f\x01\n\x15\x44\x65leteResourceRequest\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\"\x18\n\x16\x44\x65leteResourceResponse\"\x8c\x01\n\x12GetResourceRequest\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\"L\n\x13GetResourceResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x97\x01\n\x14ListResourcesRequest\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\"N\n\x15ListResourcesResponse\x12\x35\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x05\x65ntry\"\x8b\x01\n\x0cResourceList\x12{\n\x02id\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\x02id\"\xdb\x01\n\x15WatchResourcesRequest\x12\x81\x01\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\')H\x00R\x06roomId\x12\x32\n\x03ids\x18\x02 \x01(\x0b\x32\x1e.corvic.ingest.v2.ResourceListH\x00R\x03idsB\n\n\x08selector\"d\n\x16WatchResourcesResponse\x12J\n\x10updated_resource\x18\x01 \x01(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fupdatedResource\"\xb5\x01\n#ListResourcesPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\x12\x17\n\x07room_id\x18\x02 \x01(\tR\x06roomId\x12\x1f\n\x0bpipeline_id\x18\x03 \x01(\tR\npipelineId\"\xef\x02\n\x1dListResourcesPaginatedRequest\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\x12\x88\x01\n\x0bpipeline_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\npipelineId\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"\x91\x01\n\x1eListResourcesPaginatedResponse\x12J\n\x10resource_entries\x18\x03 \x03(\x0b\x32\x1f.corvic.ingest.v2.ResourceEntryR\x0fresourceEntries\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursorJ\x04\x08\x01\x10\x02R\x05\x65ntry\"\x9a\x01\n CreateResourceDownloadURLRequest\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\"5\n!CreateResourceDownloadURLResponse\x12\x10\n\x03url\x18\x01 \x01(\tR\x03url*\xab\x01\n\x0cResourceType\x12\x1d\n\x19RESOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x13RESOURCE_TYPE_TABLE\x10\x01\x1a\x02\x08\x01\x12!\n\x1dRESOURCE_TYPE_DIMENSION_TABLE\x10\x02\x12\x1c\n\x18RESOURCE_TYPE_FACT_TABLE\x10\x03\x12\x1e\n\x1aRESOURCE_TYPE_PDF_DOCUMENT\x10\x04\x32\x97\x07\n\x0fResourceService\x12h\n\x0f\x43reateUploadURL\x12(.corvic.ingest.v2.CreateUploadURLRequest\x1a).corvic.ingest.v2.CreateUploadURLResponse\"\x00\x12q\n\x11\x46inalizeUploadURL\x12*.corvic.ingest.v2.FinalizeUploadURLRequest\x1a+.corvic.ingest.v2.FinalizeUploadURLResponse\"\x03\x90\x02\x02\x12\x65\n\x0e\x44\x65leteResource\x12\'.corvic.ingest.v2.DeleteResourceRequest\x1a(.corvic.ingest.v2.DeleteResourceResponse\"\x00\x12_\n\x0bGetResource\x12$.corvic.ingest.v2.GetResourceRequest\x1a%.corvic.ingest.v2.GetResourceResponse\"\x03\x90\x02\x01\x12g\n\rListResources\x12&.corvic.ingest.v2.ListResourcesRequest\x1a\'.corvic.ingest.v2.ListResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x80\x01\n\x16ListResourcesPaginated\x12/.corvic.ingest.v2.ListResourcesPaginatedRequest\x1a\x30.corvic.ingest.v2.ListResourcesPaginatedResponse\"\x03\x90\x02\x01\x12j\n\x0eWatchResources\x12\'.corvic.ingest.v2.WatchResourcesRequest\x1a(.corvic.ingest.v2.WatchResourcesResponse\"\x03\x90\x02\x01\x30\x01\x12\x86\x01\n\x19\x43reateResourceDownloadURL\x12\x32.corvic.ingest.v2.CreateResourceDownloadURLRequest\x1a\x33.corvic.ingest.v2.CreateResourceDownloadURLResponse\"\x00\x62\x06proto3')
22
22
 
23
23
  _globals = globals()
24
24
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -46,7 +46,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
46
46
  _globals['_GETRESOURCEREQUEST'].fields_by_name['id']._options = None
47
47
  _globals['_GETRESOURCEREQUEST'].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\')'
48
48
  _globals['_LISTRESOURCESREQUEST'].fields_by_name['room_id']._options = None
49
- _globals['_LISTRESOURCESREQUEST'].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'
49
+ _globals['_LISTRESOURCESREQUEST'].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\')'
50
50
  _globals['_RESOURCELIST'].fields_by_name['id']._options = None
51
51
  _globals['_RESOURCELIST'].fields_by_name['id']._serialized_options = b'\272Hh\222\001e\"cr\004\020\001\030\024\272\001Z\n\016string.pattern\022\026value must be a number\0320this.matches(\'^[0-9]+$\') && !this.endsWith(\'\\n\')'
52
52
  _globals['_WATCHRESOURCESREQUEST'].fields_by_name['room_id']._options = None
@@ -67,8 +67,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
67
67
  _globals['_RESOURCESERVICE'].methods_by_name['ListResourcesPaginated']._serialized_options = b'\220\002\001'
68
68
  _globals['_RESOURCESERVICE'].methods_by_name['WatchResources']._options = None
69
69
  _globals['_RESOURCESERVICE'].methods_by_name['WatchResources']._serialized_options = b'\220\002\001'
70
- _globals['_RESOURCETYPE']._serialized_start=3530
71
- _globals['_RESOURCETYPE']._serialized_end=3701
70
+ _globals['_RESOURCETYPE']._serialized_start=3528
71
+ _globals['_RESOURCETYPE']._serialized_end=3699
72
72
  _globals['_RESOURCEMETADATA']._serialized_start=180
73
73
  _globals['_RESOURCEMETADATA']._serialized_end=717
74
74
  _globals['_RESOURCEENTRY']._serialized_start=720
@@ -92,25 +92,25 @@ if _descriptor._USE_C_DESCRIPTORS == False:
92
92
  _globals['_GETRESOURCERESPONSE']._serialized_start=1835
93
93
  _globals['_GETRESOURCERESPONSE']._serialized_end=1911
94
94
  _globals['_LISTRESOURCESREQUEST']._serialized_start=1914
95
- _globals['_LISTRESOURCESREQUEST']._serialized_end=2067
96
- _globals['_LISTRESOURCESRESPONSE']._serialized_start=2069
97
- _globals['_LISTRESOURCESRESPONSE']._serialized_end=2147
98
- _globals['_RESOURCELIST']._serialized_start=2150
99
- _globals['_RESOURCELIST']._serialized_end=2289
100
- _globals['_WATCHRESOURCESREQUEST']._serialized_start=2292
101
- _globals['_WATCHRESOURCESREQUEST']._serialized_end=2511
102
- _globals['_WATCHRESOURCESRESPONSE']._serialized_start=2513
103
- _globals['_WATCHRESOURCESRESPONSE']._serialized_end=2613
104
- _globals['_LISTRESOURCESPAGINATEDCURSORPAYLOAD']._serialized_start=2616
105
- _globals['_LISTRESOURCESPAGINATEDCURSORPAYLOAD']._serialized_end=2797
106
- _globals['_LISTRESOURCESPAGINATEDREQUEST']._serialized_start=2800
107
- _globals['_LISTRESOURCESPAGINATEDREQUEST']._serialized_end=3167
108
- _globals['_LISTRESOURCESPAGINATEDRESPONSE']._serialized_start=3170
109
- _globals['_LISTRESOURCESPAGINATEDRESPONSE']._serialized_end=3315
110
- _globals['_CREATERESOURCEDOWNLOADURLREQUEST']._serialized_start=3318
111
- _globals['_CREATERESOURCEDOWNLOADURLREQUEST']._serialized_end=3472
112
- _globals['_CREATERESOURCEDOWNLOADURLRESPONSE']._serialized_start=3474
113
- _globals['_CREATERESOURCEDOWNLOADURLRESPONSE']._serialized_end=3527
114
- _globals['_RESOURCESERVICE']._serialized_start=3704
115
- _globals['_RESOURCESERVICE']._serialized_end=4623
95
+ _globals['_LISTRESOURCESREQUEST']._serialized_end=2065
96
+ _globals['_LISTRESOURCESRESPONSE']._serialized_start=2067
97
+ _globals['_LISTRESOURCESRESPONSE']._serialized_end=2145
98
+ _globals['_RESOURCELIST']._serialized_start=2148
99
+ _globals['_RESOURCELIST']._serialized_end=2287
100
+ _globals['_WATCHRESOURCESREQUEST']._serialized_start=2290
101
+ _globals['_WATCHRESOURCESREQUEST']._serialized_end=2509
102
+ _globals['_WATCHRESOURCESRESPONSE']._serialized_start=2511
103
+ _globals['_WATCHRESOURCESRESPONSE']._serialized_end=2611
104
+ _globals['_LISTRESOURCESPAGINATEDCURSORPAYLOAD']._serialized_start=2614
105
+ _globals['_LISTRESOURCESPAGINATEDCURSORPAYLOAD']._serialized_end=2795
106
+ _globals['_LISTRESOURCESPAGINATEDREQUEST']._serialized_start=2798
107
+ _globals['_LISTRESOURCESPAGINATEDREQUEST']._serialized_end=3165
108
+ _globals['_LISTRESOURCESPAGINATEDRESPONSE']._serialized_start=3168
109
+ _globals['_LISTRESOURCESPAGINATEDRESPONSE']._serialized_end=3313
110
+ _globals['_CREATERESOURCEDOWNLOADURLREQUEST']._serialized_start=3316
111
+ _globals['_CREATERESOURCEDOWNLOADURLREQUEST']._serialized_end=3470
112
+ _globals['_CREATERESOURCEDOWNLOADURLRESPONSE']._serialized_start=3472
113
+ _globals['_CREATERESOURCEDOWNLOADURLRESPONSE']._serialized_end=3525
114
+ _globals['_RESOURCESERVICE']._serialized_start=3702
115
+ _globals['_RESOURCESERVICE']._serialized_end=4621
116
116
  # @@protoc_insertion_point(module_scope)
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
14
14
 
15
15
 
16
16
 
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x63orvic/orm/v1/agent.proto\x12\rcorvic.orm.v1\"\xf3\x01\n\x12\x45xecutorParameters\x12L\n\x15\x63ompletion_model_type\x18\x01 \x01(\x0e\x32\x18.corvic.orm.v1.ModelTypeR\x13\x63ompletionModelType\x12\x42\n\x1d\x63ompletion_system_instruction\x18\x02 \x01(\tR\x1b\x63ompletionSystemInstruction\x12\x33\n\x13\x63ompletion_model_id\x18\x03 \x01(\tH\x00R\x11\x63ompletionModelId\x88\x01\x01\x42\x16\n\x14_completion_model_id\"V\n\x10SpaceInstruction\x12 \n\x0binstruction\x18\x01 \x01(\tR\x0binstruction\x12 \n\x0cspace_run_id\x18\x02 \x01(\tR\nspaceRunId\"\x89\x02\n\x16OrchestratorParameters\x12\x1b\n\tspace_ids\x18\x01 \x03(\tR\x08spaceIds\x12k\n\x12space_instructions\x18\x02 \x03(\x0b\x32<.corvic.orm.v1.OrchestratorParameters.SpaceInstructionsEntryR\x11spaceInstructions\x1a\x65\n\x16SpaceInstructionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32\x1f.corvic.orm.v1.SpaceInstructionR\x05value:\x02\x38\x01\"\xc5\x01\n\x0f\x41gentParameters\x12R\n\x13\x65xecutor_parameters\x18\x01 \x01(\x0b\x32!.corvic.orm.v1.ExecutorParametersR\x12\x65xecutorParameters\x12^\n\x17orchestrator_parameters\x18\x02 \x01(\x0b\x32%.corvic.orm.v1.OrchestratorParametersR\x16orchestratorParameters*\xd3\x05\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19MODEL_TYPE_GEMINI_1_5_PRO\x10\x01\x12%\n!MODEL_TYPE_GEMINI_1_5_PRO_PREVIEW\x10\x02\x12\x1f\n\x1bMODEL_TYPE_GEMINI_1_5_FLASH\x10\x03\x12\'\n#MODEL_TYPE_GEMINI_1_5_FLASH_PREVIEW\x10\x04\x12\'\n#MODEL_TYPE_GEMINI_2_0_FLASH_PREVIEW\x10\r\x12\x30\n,MODEL_TYPE_GEMINI_2_0_FLASH_THINKING_PREVIEW\x10\x10\x12\x1f\n\x1bMODEL_TYPE_GEMINI_2_0_FLASH\x10\x13\x12\x1b\n\x17MODEL_TYPE_GPT_4_O_MINI\x10\x05\x12\x16\n\x12MODEL_TYPE_GPT_4_O\x10\x06\x12\x1c\n\x18MODEL_TYPE_GPT_3_5_TURBO\x10\x07\x12\x12\n\x0eMODEL_TYPE_O_1\x10\x0e\x12\x17\n\x13MODEL_TYPE_O_1_MINI\x10\x0f\x12\x17\n\x13MODEL_TYPE_O_3_MINI\x10\x12\x12\x16\n\x12MODEL_TYPE_GPT_4_1\x10\x14\x12\x1b\n\x17MODEL_TYPE_GPT_4_1_MINI\x10\x15\x12\x1b\n\x17MODEL_TYPE_GPT_4_1_NANO\x10\x16\x12 \n\x1cMODEL_TYPE_CLAUDE_3_5_SONNET\x10\x08\x12\x1d\n\x19MODEL_TYPE_CLAUDE_3_HAIKU\x10\t\x12\x1c\n\x18MODEL_TYPE_MISTRAL_LARGE\x10\n\x12\x1b\n\x17MODEL_TYPE_MISTRAL_NEMO\x10\x0b\x12 \n\x1cMODEL_TYPE_MISTRAL_CODESTRAL\x10\x0c\x12\x15\n\x11MODEL_TYPE_CUSTOM\x10\x11\x62\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19\x63orvic/orm/v1/agent.proto\x12\rcorvic.orm.v1\"\xf3\x01\n\x12\x45xecutorParameters\x12L\n\x15\x63ompletion_model_type\x18\x01 \x01(\x0e\x32\x18.corvic.orm.v1.ModelTypeR\x13\x63ompletionModelType\x12\x42\n\x1d\x63ompletion_system_instruction\x18\x02 \x01(\tR\x1b\x63ompletionSystemInstruction\x12\x33\n\x13\x63ompletion_model_id\x18\x03 \x01(\tH\x00R\x11\x63ompletionModelId\x88\x01\x01\x42\x16\n\x14_completion_model_id\"V\n\x10SpaceInstruction\x12 \n\x0binstruction\x18\x01 \x01(\tR\x0binstruction\x12 \n\x0cspace_run_id\x18\x02 \x01(\tR\nspaceRunId\"\x89\x02\n\x16OrchestratorParameters\x12\x1b\n\tspace_ids\x18\x01 \x03(\tR\x08spaceIds\x12k\n\x12space_instructions\x18\x02 \x03(\x0b\x32<.corvic.orm.v1.OrchestratorParameters.SpaceInstructionsEntryR\x11spaceInstructions\x1a\x65\n\x16SpaceInstructionsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32\x1f.corvic.orm.v1.SpaceInstructionR\x05value:\x02\x38\x01\"\xc5\x01\n\x0f\x41gentParameters\x12R\n\x13\x65xecutor_parameters\x18\x01 \x01(\x0b\x32!.corvic.orm.v1.ExecutorParametersR\x12\x65xecutorParameters\x12^\n\x17orchestrator_parameters\x18\x02 \x01(\x0b\x32%.corvic.orm.v1.OrchestratorParametersR\x16orchestratorParameters*\x80\x06\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12\x1d\n\x19MODEL_TYPE_GEMINI_1_5_PRO\x10\x01\x12%\n!MODEL_TYPE_GEMINI_1_5_PRO_PREVIEW\x10\x02\x12\x1f\n\x1bMODEL_TYPE_GEMINI_1_5_FLASH\x10\x03\x12\'\n#MODEL_TYPE_GEMINI_1_5_FLASH_PREVIEW\x10\x04\x12\'\n#MODEL_TYPE_GEMINI_2_0_FLASH_PREVIEW\x10\r\x12\x30\n,MODEL_TYPE_GEMINI_2_0_FLASH_THINKING_PREVIEW\x10\x10\x12\x1f\n\x1bMODEL_TYPE_GEMINI_2_0_FLASH\x10\x13\x12\x1b\n\x17MODEL_TYPE_GPT_4_O_MINI\x10\x05\x12\x16\n\x12MODEL_TYPE_GPT_4_O\x10\x06\x12\x1c\n\x18MODEL_TYPE_GPT_3_5_TURBO\x10\x07\x12\x12\n\x0eMODEL_TYPE_O_1\x10\x0e\x12\x17\n\x13MODEL_TYPE_O_1_MINI\x10\x0f\x12\x12\n\x0eMODEL_TYPE_O_3\x10\x17\x12\x17\n\x13MODEL_TYPE_O_3_MINI\x10\x12\x12\x17\n\x13MODEL_TYPE_O_4_MINI\x10\x18\x12\x16\n\x12MODEL_TYPE_GPT_4_1\x10\x14\x12\x1b\n\x17MODEL_TYPE_GPT_4_1_MINI\x10\x15\x12\x1b\n\x17MODEL_TYPE_GPT_4_1_NANO\x10\x16\x12 \n\x1cMODEL_TYPE_CLAUDE_3_5_SONNET\x10\x08\x12\x1d\n\x19MODEL_TYPE_CLAUDE_3_HAIKU\x10\t\x12\x1c\n\x18MODEL_TYPE_MISTRAL_LARGE\x10\n\x12\x1b\n\x17MODEL_TYPE_MISTRAL_NEMO\x10\x0b\x12 \n\x1cMODEL_TYPE_MISTRAL_CODESTRAL\x10\x0c\x12\x15\n\x11MODEL_TYPE_CUSTOM\x10\x11\x62\x06proto3')
18
18
 
19
19
  _globals = globals()
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -24,7 +24,7 @@ if _descriptor._USE_C_DESCRIPTORS == False:
24
24
  _globals['_ORCHESTRATORPARAMETERS_SPACEINSTRUCTIONSENTRY']._options = None
25
25
  _globals['_ORCHESTRATORPARAMETERS_SPACEINSTRUCTIONSENTRY']._serialized_options = b'8\001'
26
26
  _globals['_MODELTYPE']._serialized_start=847
27
- _globals['_MODELTYPE']._serialized_end=1570
27
+ _globals['_MODELTYPE']._serialized_end=1615
28
28
  _globals['_EXECUTORPARAMETERS']._serialized_start=45
29
29
  _globals['_EXECUTORPARAMETERS']._serialized_end=288
30
30
  _globals['_SPACEINSTRUCTION']._serialized_start=290
@@ -21,7 +21,9 @@ class ModelType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
21
21
  MODEL_TYPE_GPT_3_5_TURBO: _ClassVar[ModelType]
22
22
  MODEL_TYPE_O_1: _ClassVar[ModelType]
23
23
  MODEL_TYPE_O_1_MINI: _ClassVar[ModelType]
24
+ MODEL_TYPE_O_3: _ClassVar[ModelType]
24
25
  MODEL_TYPE_O_3_MINI: _ClassVar[ModelType]
26
+ MODEL_TYPE_O_4_MINI: _ClassVar[ModelType]
25
27
  MODEL_TYPE_GPT_4_1: _ClassVar[ModelType]
26
28
  MODEL_TYPE_GPT_4_1_MINI: _ClassVar[ModelType]
27
29
  MODEL_TYPE_GPT_4_1_NANO: _ClassVar[ModelType]
@@ -44,7 +46,9 @@ MODEL_TYPE_GPT_4_O: ModelType
44
46
  MODEL_TYPE_GPT_3_5_TURBO: ModelType
45
47
  MODEL_TYPE_O_1: ModelType
46
48
  MODEL_TYPE_O_1_MINI: ModelType
49
+ MODEL_TYPE_O_3: ModelType
47
50
  MODEL_TYPE_O_3_MINI: ModelType
51
+ MODEL_TYPE_O_4_MINI: ModelType
48
52
  MODEL_TYPE_GPT_4_1: ModelType
49
53
  MODEL_TYPE_GPT_4_1_MINI: ModelType
50
54
  MODEL_TYPE_GPT_4_1_NANO: ModelType