corvic-engine 0.3.0rc61__cp38-abi3-win_amd64.whl → 0.3.0rc63__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.
@@ -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
 
corvic/table/table.py CHANGED
@@ -168,7 +168,16 @@ class Table:
168
168
  return cls._compute_num_rows(op.source)
169
169
  case op_graph.op.LimitRows() | op_graph.op.SampleRows():
170
170
  source_rows = cls._compute_num_rows(op.source)
171
- return min(op.num_rows, source_rows) if source_rows else None
171
+ return (
172
+ min(op.num_rows, source_rows) if source_rows is not None else None
173
+ )
174
+ case op_graph.op.OffsetRows():
175
+ source_rows = cls._compute_num_rows(op.source)
176
+ return (
177
+ max(source_rows - op.num_rows, 0)
178
+ if source_rows is not None
179
+ else None
180
+ )
172
181
  case op_graph.op.Empty():
173
182
  return 0
174
183
  case op_graph.op.Concat():
@@ -253,6 +262,7 @@ class Table:
253
262
  op_graph.op.SelectColumns()
254
263
  | op_graph.op.RenameColumns()
255
264
  | op_graph.op.LimitRows()
265
+ | op_graph.op.OffsetRows()
256
266
  | op_graph.op.OrderBy()
257
267
  | op_graph.op.FilterRows()
258
268
  | op_graph.op.UpdateFeatureTypes()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: corvic-engine
3
- Version: 0.3.0rc61
3
+ Version: 0.3.0rc63
4
4
  Classifier: Environment :: Console
5
5
  Classifier: License :: Other/Proprietary License
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -1,9 +1,9 @@
1
- corvic_engine-0.3.0rc61.dist-info/METADATA,sha256=Akxh3Pu0ybzSlRIdGZ5v4LQizPTKhmeoBHcN0d5KUFw,1876
2
- corvic_engine-0.3.0rc61.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
- corvic_engine-0.3.0rc61.dist-info/licenses/LICENSE,sha256=DSS1OD0oIgssKOmAzkMRBv5jvvVuZQbrIv8lpl9DXY8,1035
1
+ corvic_engine-0.3.0rc63.dist-info/METADATA,sha256=VW8Yspw67HgekA9jzUhj0RVaUZGqrDG4HKUADYnSipk,1876
2
+ corvic_engine-0.3.0rc63.dist-info/WHEEL,sha256=hKPP3BCTWtTwj6SFaSI--T5aOGqh_llYfbZ_BsqivwA,94
3
+ corvic_engine-0.3.0rc63.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
- corvic/embed/node2vec.py,sha256=XIJjFDdT-JnmZ43lgP-K-dLgnR17L_uaJqBPAYlsPsk,11148
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
9
9
  corvic/embedding_metric/embeddings.py,sha256=5jvSY0cg5P-Wg_KN7DsrcPo5AfJ_1-XKdErx_dNN5B8,14082
@@ -30,14 +30,14 @@ corvic/op_graph/aggregation.py,sha256=8X6vqXD7dLHrhYJU0BqmhUsWGbzD1zSP5Db5VHdIru
30
30
  corvic/op_graph/encoders.py,sha256=93wYoBCn_us5lRCkqvjaP0LTg3LBB3yEfhzICv06bB0,10460
31
31
  corvic/op_graph/errors.py,sha256=I4NE5053d0deGm5xx5EmyP4f98qx42xnIsW1IA-2hy4,163
32
32
  corvic/op_graph/feature_types.py,sha256=ZE6onUGW4Xa7tPL4XgRVQ1Tvj5FVJJ66di3ShDTR0Ak,9623
33
- corvic/op_graph/ops.py,sha256=1YOFnnN6WgzBajkXRM9UgdMLd-NEfa4tRmIQVj5cyeo,110637
33
+ corvic/op_graph/ops.py,sha256=Ckg5MJXLR6Ek67Vp1SelhQXSQUu7ySIgMsznbxW3UPk,111768
34
34
  corvic/op_graph/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  corvic/op_graph/row_filters/_jsonlogic.py,sha256=tBd-wOwE6AIx9XEkuSVdBx9iB08nsdHJdvNzEmWzrB0,6432
36
36
  corvic/op_graph/row_filters/_row_filters.py,sha256=d7oUbB-vThi-Kn5GupGnEwr5UNlsGFgCgR3Q7NR_tkI,9554
37
37
  corvic/op_graph/row_filters/__init__.py,sha256=1sibH_kLw7t_9bpRccnEGWqdCiN0VaUh9LMMIMCRyL8,575
38
38
  corvic/op_graph/sample_strategy.py,sha256=DrbtJ3ORkIRfyIE_FdlOh_UMnCW_K9jL1LeonVYb3bU,3007
39
39
  corvic/op_graph/_schema.py,sha256=7Uuun9e6PRrtOeJLsFD8VzkwWeUpbnBcD37NpMKOcmQ,5685
40
- corvic/op_graph/_transformations.py,sha256=FZGJmlNttUvPaSWnc0zbonEY2_6R2jAlxcdmMh1z0oc,9505
40
+ corvic/op_graph/_transformations.py,sha256=tROo0uR0km06LAsx4CSrR0OWPhFbvToFEowGcuAuRAs,9606
41
41
  corvic/op_graph/__init__.py,sha256=1DMrQfuuS3FkLa9DXYDjSDLurdxxpG5H1jB2ctaa9xo,1444
42
42
  corvic/orm/base.py,sha256=vPex2HUGQ-voMhl5CIcDyYBmVH7xBj0l7fZnaSRmMXA,8824
43
43
  corvic/orm/errors.py,sha256=uFhFXpVG6pby1lndJZHGHxv3Y0Fbt0RiaZ-CqDfuY1o,545
@@ -63,29 +63,29 @@ corvic/proto_wrapper/_wrappers.py,sha256=tKVVJqVRBPoQl0wFnwGx7ye5AFMztz-ZUj3ar_D
63
63
  corvic/proto_wrapper/__init__.py,sha256=KfwiW9Tec3aCrhhEmdP3bhJ1ZLlKdI7QTM3xEIhpMcg,278
64
64
  corvic/result/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
65
  corvic/result/__init__.py,sha256=XKHQeq74V17fH2ZVYywxA-KcimqydNdPqzAXpfPzX6o,17176
66
- corvic/sql/parse_ops.py,sha256=1ZXVlDzIzqwW_KP0mwMxaY91tLSXqpeaUHyrGJkh56o,29444
66
+ 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=HMTIoUhFoi8u8yB_8tkyZ8fVzbg9b0dT90A0IqKddNY,68994
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
78
- corvic/system/_planner.py,sha256=HUf6UjCy1iHRrXfhU25w19TG4Ik3zVHhtzVcor0eTQY,7888
76
+ corvic/system/_embedder.py,sha256=V9Hv0vQHaAAJzt1udDlIsdWX2pNjpwCl8xvgnOZnpC4,4540
77
+ corvic/system/_image_embedder.py,sha256=-72L6aVJXzCfKX9iwmBbw_7uuVBYLcO73RCFDkC6Z0U,9002
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
81
81
  corvic/system_sqlite/client.py,sha256=0ClXmnWL9eZ4ygYqrnVAdsG5XTXU-veXsiWFzE3PU0w,7198
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
- corvic/table/table.py,sha256=19cSil08EbwGeqBotQ4-hJYgJdC60zh9gOZnb4CU3QQ,25426
88
+ corvic/table/table.py,sha256=_wC3-BoUT178w3v-BweZ9vCL622-v475YZnJxWleVIA,25811
89
89
  corvic/table/__init__.py,sha256=Gj0IR8BQF5PZK92Us7PP0ZigMsVyrfWJupzH8TgzRQk,588
90
90
  corvic/version/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
91
  corvic/version/__init__.py,sha256=JlkRLvKXsu3zIxhdynO_0Ub5NfQOvGjfwCRkNnaOu9U,1125
@@ -129,13 +129,13 @@ corvic_generated/ingest/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
129
129
  corvic_generated/ingest/v1/service_pb2.py,sha256=ISrq0SoGWJ0ZUxwKy_UC7MvD_7quGZ2ptKe0WlJNW2U,11295
130
130
  corvic_generated/ingest/v1/service_pb2_grpc.py,sha256=YwsDW94WME0XLDjBstEOHCVasrj039w50vADbkRH4QI,23864
131
131
  corvic_generated/ingest/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
- corvic_generated/ingest/v2/pipeline_pb2.py,sha256=ckoO8us-yg4w31Zx2WbBXsJ5E3DVvEbK3JcCduYgMU0,8297
132
+ corvic_generated/ingest/v2/pipeline_pb2.py,sha256=2_TOCIOM5nqt3HB1Sb86qqYix-qfF2RhWmivBkljHf0,8603
133
133
  corvic_generated/ingest/v2/pipeline_pb2_grpc.py,sha256=as3vjtRrgdtmXGxnjLOa2DvpbGOHTCM7tSK3FnU9ZgY,8240
134
134
  corvic_generated/ingest/v2/quick_mode_pb2.py,sha256=E2AnKj-M0eeErPTTl4tbpBVpxstipBCIvW9m9wqLv38,4212
135
135
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.py,sha256=Dfg1MPcY32kbsatdsrpVhvi_qdZPtW4wfLITqh9-FtU,4670
136
136
  corvic_generated/ingest/v2/resource_pb2.py,sha256=ulh09FQHL0NlXSJVkrq2lbLC9JDrWaGpGbYgJskb0fw,16260
137
137
  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
138
+ corvic_generated/ingest/v2/room_pb2.py,sha256=x4FEUSP6qt6-nUxVENidEW0Y4jHqe_vtgIXacuEB7NU,8180
139
139
  corvic_generated/ingest/v2/room_pb2_grpc.py,sha256=X_siQT8CLUwVFMDiP7WiTIMXX528FoPyhhUFUdoZgXI,11422
140
140
  corvic_generated/ingest/v2/source_pb2.py,sha256=xbyS_qIz3i5Q5Tao08vzjMUnOCfBsQ13AWFBPIBF9I0,12215
141
141
  corvic_generated/ingest/v2/source_pb2_grpc.py,sha256=DxOe2g2DNvl2pzbXGOY7jILiHLiLKevx7-e7W0Gg3iY,11874
@@ -147,7 +147,7 @@ corvic_generated/model/v1alpha/models_pb2.py,sha256=3rorA81pyk826oXnCn0nfVo1aRcA
147
147
  corvic_generated/model/v1alpha/models_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
148
148
  corvic_generated/orm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  corvic_generated/orm/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- corvic_generated/orm/v1/agent_pb2.py,sha256=Ru41Ms8SRpUcEIHJx24J9VgXRt5khrk83TpPIPfDCxU,3940
150
+ corvic_generated/orm/v1/agent_pb2.py,sha256=4Kabs36WUXob4fkwOVNUKijEqyYhBnKPmPu7xamh5Bs,4070
151
151
  corvic_generated/orm/v1/agent_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
152
152
  corvic_generated/orm/v1/common_pb2.py,sha256=pu1Rto4Pm8ntdB12Rgb_qnz3qOalxlOnrLuKE1fCETs,3490
153
153
  corvic_generated/orm/v1/common_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
@@ -159,7 +159,7 @@ corvic_generated/orm/v1/pipeline_pb2.py,sha256=_J1kHAe2CQT_epXows4eOZKdQFLTLqZgz
159
159
  corvic_generated/orm/v1/pipeline_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
160
160
  corvic_generated/orm/v1/space_pb2.py,sha256=grI4123GBbA-iHnbtbK8xyfIv1lZL1hDl3q43vXGta8,2147
161
161
  corvic_generated/orm/v1/space_pb2_grpc.py,sha256=_bXoS025FcWrXR1E_3Mh4GHB1RMvgz8lIpit-Awnf-s,163
162
- corvic_generated/orm/v1/table_pb2.py,sha256=QQwgItxOncMAM_BG9tWX4K3_vYgtlsGoOXocExcQTJI,40062
162
+ corvic_generated/orm/v1/table_pb2.py,sha256=YCS052cP5-398nCPT1lRXjww7PJfJg30nHhb0Ah9iTs,40417
163
163
  corvic_generated/orm/v1/table_pb2_grpc.py,sha256=ixBOrA7wwNxEQCRT1kO2N_LayeFYEdFJjVRkkhesWbY,4558
164
164
  corvic_generated/status/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
165
  corvic_generated/status/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -181,13 +181,13 @@ corvic_generated/feature/v2/space_pb2.pyi,sha256=CzvwNq2htgLu_IVu3LgWtlb6Pow2gB0
181
181
  corvic_generated/feature/v2/space_pb2_grpc.pyi,sha256=9011aCTfJYWjgK5UoiS9NjRKIJSDjuX51DB5tw5xc10,8267
182
182
  corvic_generated/ingest/v1/service_pb2.pyi,sha256=e2KYl6sQ11MyePRGkKU5gi05_uCF7cCM0fInG-BwfHg,8528
183
183
  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
184
+ corvic_generated/ingest/v2/pipeline_pb2.pyi,sha256=0kreoMfEi8WQIE0sKw36g5TPiDhMcW5eLy7ZDfoVnnw,5674
185
185
  corvic_generated/ingest/v2/pipeline_pb2_grpc.pyi,sha256=jZgC4p2o1ZHanRGtXm4cNAYhPnW8DDAFstX9XRFWq-8,3884
186
186
  corvic_generated/ingest/v2/quick_mode_pb2.pyi,sha256=j8SAHdekgUuFyQgBmHKcYThD6lagsQDB-3iueBIYJX0,2512
187
187
  corvic_generated/ingest/v2/quick_mode_pb2_grpc.pyi,sha256=DSiD0kV3Ffwsa7ZripP6LNHPu8Zbdo2hc48T-6ha54s,2369
188
188
  corvic_generated/ingest/v2/resource_pb2.pyi,sha256=2k1C7ItaNRwzXWRAlEGCS0lgbdOZUAkS-60qBPQX9dk,9138
189
189
  corvic_generated/ingest/v2/resource_pb2_grpc.pyi,sha256=4B-lF9IiGMNhgmz7QpuLtNpt9pisBP0DogRbrMkoyeA,11446
190
- corvic_generated/ingest/v2/room_pb2.pyi,sha256=CJ9KXGSWJAk2_w4XYUsKA4ZeRGXUYd5vaDNwwXWpLyo,3989
190
+ corvic_generated/ingest/v2/room_pb2.pyi,sha256=ak1s5flg8v7YSVNl0ziEmMnphyy6ijd0PuJiGqK5RCA,4163
191
191
  corvic_generated/ingest/v2/room_pb2_grpc.pyi,sha256=BqV4DYhcW6tbmQl4_pftO69FwY2iVvelNWO76bQub3E,5104
192
192
  corvic_generated/ingest/v2/source_pb2.pyi,sha256=k7FdbgurQLk0JA1WiTUerznzxLv8b504Wr7CJmjmZno,6565
193
193
  corvic_generated/ingest/v2/source_pb2_grpc.pyi,sha256=VG5gpql2SREHgqMC_ycT-QJBVpPeSYKOYS2COgGrZa4,6195
@@ -195,7 +195,7 @@ corvic_generated/ingest/v2/table_pb2.pyi,sha256=p22F8kv0HfM-9OzGP88bLofxmUtxfLR5
195
195
  corvic_generated/ingest/v2/table_pb2_grpc.pyi,sha256=AEXYNtrU4xyENumcCrkD2FmFV7T1UVidxxeZ5pyE4Qc,4554
196
196
  corvic_generated/model/v1alpha/models_pb2.pyi,sha256=ELw1kPiAaYNDtrRk2pTMjU3v9nQtluoS4p5FHOBBc9o,10853
197
197
  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
198
+ corvic_generated/orm/v1/agent_pb2.pyi,sha256=xrL16mmyvJssphjrWTZCTFWzFpsJemSSdxHKG0v8keY,4921
199
199
  corvic_generated/orm/v1/agent_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
200
200
  corvic_generated/orm/v1/common_pb2.pyi,sha256=PZi9KfnXWzlQC0bMuDC71IOmgIaYClY2jPghzKV-mAo,3557
201
201
  corvic_generated/orm/v1/common_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
@@ -207,11 +207,11 @@ corvic_generated/orm/v1/pipeline_pb2.pyi,sha256=i2VWx5wqO5GR8OGGSUUr3w7n-TqSo_UP
207
207
  corvic_generated/orm/v1/pipeline_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
208
208
  corvic_generated/orm/v1/space_pb2.pyi,sha256=qKMymobwu_qQAlFxayifiUkQBpjrK9tAgoQOB2VL7Rc,1748
209
209
  corvic_generated/orm/v1/space_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
210
- corvic_generated/orm/v1/table_pb2.pyi,sha256=FsWPyzsP-1Ocj4rEyFHPHHCLmgX-135lH9zHLcVB33I,50224
210
+ corvic_generated/orm/v1/table_pb2.pyi,sha256=MHM1cDooR1FGK8Gm7R29rYHpel3KfTQUDgJdgZs7Tm4,50718
211
211
  corvic_generated/orm/v1/table_pb2_grpc.pyi,sha256=K4hyNndkiKpxt9PYxcn_98RTpb4yxET3Um2rDe3VJTI,2499
212
212
  corvic_generated/status/v1/event_pb2.pyi,sha256=eU-ibrYpvEAJSIDlSa62-bC96AQU1ykFi3_sQ1RzBvo,2027
213
213
  corvic_generated/status/v1/event_pb2_grpc.pyi,sha256=H9-ADaiKR9iyVZvmnXutZqWwRRCDxjUIktkfJrJFIHg,417
214
214
  corvic_generated/status/v1/service_pb2.pyi,sha256=iXLR2FOKQJpBgvBzpD2kVwcYOCksP2aRwK4JYaI9CBw,558
215
215
  corvic_generated/status/v1/service_pb2_grpc.pyi,sha256=OoAnaZ64FD0UTzPoRhYvQU8ecoilhHj3ySjSfHbVDaU,1501
216
- corvic/engine/_native.pyd,sha256=QQuPfdZLikjwqy4YNxP4a6nX0bcZ_fSJFEnfQSL96V4,438272
217
- corvic_engine-0.3.0rc61.dist-info/RECORD,,
216
+ corvic/engine/_native.pyd,sha256=vdFh0jLtkuHLhbHwU5eQ30MnhVmGp7bmZhfA3Hove8M,438784
217
+ corvic_engine-0.3.0rc63.dist-info/RECORD,,
@@ -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",)
@@ -17,7 +17,7 @@ from google.protobuf import descriptor_pb2 as google_dot_protobuf_dot_descriptor
17
17
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
18
18
 
19
19
 
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x63orvic/ingest/v2/room.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"g\n\tRoomEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\x07user_id\x18\x03 \x01(\tB\x02\x18\x01R\x06userId\x12\x19\n\x06org_id\x18\x04 \x01(\tB\x02\x18\x01R\x05orgId\"k\n\x11\x43reateRoomRequest\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12\x1b\n\x07user_id\x18\x02 \x01(\tB\x02\x18\x01R\x06userId\x12\x19\n\x06org_id\x18\x03 \x01(\tB\x02\x18\x01R\x05orgId\"G\n\x12\x43reateRoomResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\"\x8b\x01\n\x11\x44\x65leteRoomRequest\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\"\x14\n\x12\x44\x65leteRoomResponse\"\x88\x01\n\x0eGetRoomRequest\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\"D\n\x0fGetRoomResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\";\n\x10ListRoomsRequestJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03J\x04\x08\x03\x10\x04R\x04nameR\x07user_idR\x06org_id\"F\n\x11ListRoomsResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\"w\n\x1fListRoomsPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"]\n\x19ListRoomsPaginatedRequest\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"g\n\x1aListRoomsPaginatedResponse\x12\x31\n\x05\x65ntry\x18\x01 \x03(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x8a\x01\n\x10PurgeRoomRequest\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\"\x13\n\x11PurgeRoomResponse2\xc3\x04\n\x0bRoomService\x12Y\n\nCreateRoom\x12#.corvic.ingest.v2.CreateRoomRequest\x1a$.corvic.ingest.v2.CreateRoomResponse\"\x00\x12Y\n\nDeleteRoom\x12#.corvic.ingest.v2.DeleteRoomRequest\x1a$.corvic.ingest.v2.DeleteRoomResponse\"\x00\x12S\n\x07GetRoom\x12 .corvic.ingest.v2.GetRoomRequest\x1a!.corvic.ingest.v2.GetRoomResponse\"\x03\x90\x02\x01\x12[\n\tListRooms\x12\".corvic.ingest.v2.ListRoomsRequest\x1a#.corvic.ingest.v2.ListRoomsResponse\"\x03\x90\x02\x01\x30\x01\x12t\n\x12ListRoomsPaginated\x12+.corvic.ingest.v2.ListRoomsPaginatedRequest\x1a,.corvic.ingest.v2.ListRoomsPaginatedResponse\"\x03\x90\x02\x01\x12V\n\tPurgeRoom\x12\".corvic.ingest.v2.PurgeRoomRequest\x1a#.corvic.ingest.v2.PurgeRoomResponse\"\x00\x62\x06proto3')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x63orvic/ingest/v2/room.proto\x12\x10\x63orvic.ingest.v2\x1a\x1b\x62uf/validate/validate.proto\x1a google/protobuf/descriptor.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa2\x01\n\tRoomEntry\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x1b\n\x07user_id\x18\x03 \x01(\tB\x02\x18\x01R\x06userId\x12\x19\n\x06org_id\x18\x04 \x01(\tB\x02\x18\x01R\x05orgId\x12\x39\n\ncreated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\"k\n\x11\x43reateRoomRequest\x12\x1e\n\x04name\x18\x01 \x01(\tB\n\xbaH\x07r\x05\x10\x01\x18\xc8\x01R\x04name\x12\x1b\n\x07user_id\x18\x02 \x01(\tB\x02\x18\x01R\x06userId\x12\x19\n\x06org_id\x18\x03 \x01(\tB\x02\x18\x01R\x05orgId\"G\n\x12\x43reateRoomResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\"\x8b\x01\n\x11\x44\x65leteRoomRequest\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\"\x14\n\x12\x44\x65leteRoomResponse\"\x88\x01\n\x0eGetRoomRequest\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\"D\n\x0fGetRoomResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\";\n\x10ListRoomsRequestJ\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03J\x04\x08\x03\x10\x04R\x04nameR\x07user_idR\x06org_id\"F\n\x11ListRoomsResponse\x12\x31\n\x05\x65ntry\x18\x01 \x01(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\"w\n\x1fListRoomsPaginatedCursorPayload\x12T\n\x19\x63reate_time_of_last_entry\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x15\x63reateTimeOfLastEntry\"]\n\x19ListRoomsPaginatedRequest\x12(\n\x10\x65ntries_per_page\x18\x02 \x01(\rR\x0e\x65ntriesPerPage\x12\x16\n\x06\x63ursor\x18\x03 \x01(\tR\x06\x63ursor\"g\n\x1aListRoomsPaginatedResponse\x12\x31\n\x05\x65ntry\x18\x01 \x03(\x0b\x32\x1b.corvic.ingest.v2.RoomEntryR\x05\x65ntry\x12\x16\n\x06\x63ursor\x18\x02 \x01(\tR\x06\x63ursor\"\x8a\x01\n\x10PurgeRoomRequest\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\"\x13\n\x11PurgeRoomResponse2\xc3\x04\n\x0bRoomService\x12Y\n\nCreateRoom\x12#.corvic.ingest.v2.CreateRoomRequest\x1a$.corvic.ingest.v2.CreateRoomResponse\"\x00\x12Y\n\nDeleteRoom\x12#.corvic.ingest.v2.DeleteRoomRequest\x1a$.corvic.ingest.v2.DeleteRoomResponse\"\x00\x12S\n\x07GetRoom\x12 .corvic.ingest.v2.GetRoomRequest\x1a!.corvic.ingest.v2.GetRoomResponse\"\x03\x90\x02\x01\x12[\n\tListRooms\x12\".corvic.ingest.v2.ListRoomsRequest\x1a#.corvic.ingest.v2.ListRoomsResponse\"\x03\x90\x02\x01\x30\x01\x12t\n\x12ListRoomsPaginated\x12+.corvic.ingest.v2.ListRoomsPaginatedRequest\x1a,.corvic.ingest.v2.ListRoomsPaginatedResponse\"\x03\x90\x02\x01\x12V\n\tPurgeRoom\x12\".corvic.ingest.v2.PurgeRoomRequest\x1a#.corvic.ingest.v2.PurgeRoomResponse\"\x00\x62\x06proto3')
21
21
 
22
22
  _globals = globals()
23
23
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -46,34 +46,34 @@ if _descriptor._USE_C_DESCRIPTORS == False:
46
46
  _globals['_ROOMSERVICE'].methods_by_name['ListRooms']._serialized_options = b'\220\002\001'
47
47
  _globals['_ROOMSERVICE'].methods_by_name['ListRoomsPaginated']._options = None
48
48
  _globals['_ROOMSERVICE'].methods_by_name['ListRoomsPaginated']._serialized_options = b'\220\002\001'
49
- _globals['_ROOMENTRY']._serialized_start=145
50
- _globals['_ROOMENTRY']._serialized_end=248
51
- _globals['_CREATEROOMREQUEST']._serialized_start=250
52
- _globals['_CREATEROOMREQUEST']._serialized_end=357
53
- _globals['_CREATEROOMRESPONSE']._serialized_start=359
54
- _globals['_CREATEROOMRESPONSE']._serialized_end=430
55
- _globals['_DELETEROOMREQUEST']._serialized_start=433
56
- _globals['_DELETEROOMREQUEST']._serialized_end=572
57
- _globals['_DELETEROOMRESPONSE']._serialized_start=574
58
- _globals['_DELETEROOMRESPONSE']._serialized_end=594
59
- _globals['_GETROOMREQUEST']._serialized_start=597
60
- _globals['_GETROOMREQUEST']._serialized_end=733
61
- _globals['_GETROOMRESPONSE']._serialized_start=735
62
- _globals['_GETROOMRESPONSE']._serialized_end=803
63
- _globals['_LISTROOMSREQUEST']._serialized_start=805
64
- _globals['_LISTROOMSREQUEST']._serialized_end=864
65
- _globals['_LISTROOMSRESPONSE']._serialized_start=866
66
- _globals['_LISTROOMSRESPONSE']._serialized_end=936
67
- _globals['_LISTROOMSPAGINATEDCURSORPAYLOAD']._serialized_start=938
68
- _globals['_LISTROOMSPAGINATEDCURSORPAYLOAD']._serialized_end=1057
69
- _globals['_LISTROOMSPAGINATEDREQUEST']._serialized_start=1059
70
- _globals['_LISTROOMSPAGINATEDREQUEST']._serialized_end=1152
71
- _globals['_LISTROOMSPAGINATEDRESPONSE']._serialized_start=1154
72
- _globals['_LISTROOMSPAGINATEDRESPONSE']._serialized_end=1257
73
- _globals['_PURGEROOMREQUEST']._serialized_start=1260
74
- _globals['_PURGEROOMREQUEST']._serialized_end=1398
75
- _globals['_PURGEROOMRESPONSE']._serialized_start=1400
76
- _globals['_PURGEROOMRESPONSE']._serialized_end=1419
77
- _globals['_ROOMSERVICE']._serialized_start=1422
78
- _globals['_ROOMSERVICE']._serialized_end=2001
49
+ _globals['_ROOMENTRY']._serialized_start=146
50
+ _globals['_ROOMENTRY']._serialized_end=308
51
+ _globals['_CREATEROOMREQUEST']._serialized_start=310
52
+ _globals['_CREATEROOMREQUEST']._serialized_end=417
53
+ _globals['_CREATEROOMRESPONSE']._serialized_start=419
54
+ _globals['_CREATEROOMRESPONSE']._serialized_end=490
55
+ _globals['_DELETEROOMREQUEST']._serialized_start=493
56
+ _globals['_DELETEROOMREQUEST']._serialized_end=632
57
+ _globals['_DELETEROOMRESPONSE']._serialized_start=634
58
+ _globals['_DELETEROOMRESPONSE']._serialized_end=654
59
+ _globals['_GETROOMREQUEST']._serialized_start=657
60
+ _globals['_GETROOMREQUEST']._serialized_end=793
61
+ _globals['_GETROOMRESPONSE']._serialized_start=795
62
+ _globals['_GETROOMRESPONSE']._serialized_end=863
63
+ _globals['_LISTROOMSREQUEST']._serialized_start=865
64
+ _globals['_LISTROOMSREQUEST']._serialized_end=924
65
+ _globals['_LISTROOMSRESPONSE']._serialized_start=926
66
+ _globals['_LISTROOMSRESPONSE']._serialized_end=996
67
+ _globals['_LISTROOMSPAGINATEDCURSORPAYLOAD']._serialized_start=998
68
+ _globals['_LISTROOMSPAGINATEDCURSORPAYLOAD']._serialized_end=1117
69
+ _globals['_LISTROOMSPAGINATEDREQUEST']._serialized_start=1119
70
+ _globals['_LISTROOMSPAGINATEDREQUEST']._serialized_end=1212
71
+ _globals['_LISTROOMSPAGINATEDRESPONSE']._serialized_start=1214
72
+ _globals['_LISTROOMSPAGINATEDRESPONSE']._serialized_end=1317
73
+ _globals['_PURGEROOMREQUEST']._serialized_start=1320
74
+ _globals['_PURGEROOMREQUEST']._serialized_end=1458
75
+ _globals['_PURGEROOMRESPONSE']._serialized_start=1460
76
+ _globals['_PURGEROOMRESPONSE']._serialized_end=1479
77
+ _globals['_ROOMSERVICE']._serialized_start=1482
78
+ _globals['_ROOMSERVICE']._serialized_end=2061
79
79
  # @@protoc_insertion_point(module_scope)
@@ -9,16 +9,18 @@ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Map
9
9
  DESCRIPTOR: _descriptor.FileDescriptor
10
10
 
11
11
  class RoomEntry(_message.Message):
12
- __slots__ = ("id", "name", "user_id", "org_id")
12
+ __slots__ = ("id", "name", "user_id", "org_id", "created_at")
13
13
  ID_FIELD_NUMBER: _ClassVar[int]
14
14
  NAME_FIELD_NUMBER: _ClassVar[int]
15
15
  USER_ID_FIELD_NUMBER: _ClassVar[int]
16
16
  ORG_ID_FIELD_NUMBER: _ClassVar[int]
17
+ CREATED_AT_FIELD_NUMBER: _ClassVar[int]
17
18
  id: str
18
19
  name: str
19
20
  user_id: str
20
21
  org_id: str
21
- def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., user_id: _Optional[str] = ..., org_id: _Optional[str] = ...) -> None: ...
22
+ created_at: _timestamp_pb2.Timestamp
23
+ def __init__(self, id: _Optional[str] = ..., name: _Optional[str] = ..., user_id: _Optional[str] = ..., org_id: _Optional[str] = ..., created_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ...
22
24
 
23
25
  class CreateRoomRequest(_message.Message):
24
26
  __slots__ = ("name", "user_id", "org_id")
@@ -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*\x81\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 \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*\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')
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=1488
27
+ _globals['_MODELTYPE']._serialized_end=1570
28
28
  _globals['_EXECUTORPARAMETERS']._serialized_start=45
29
29
  _globals['_EXECUTORPARAMETERS']._serialized_end=288
30
30
  _globals['_SPACEINSTRUCTION']._serialized_start=290
@@ -22,6 +22,9 @@ class ModelType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
22
22
  MODEL_TYPE_O_1: _ClassVar[ModelType]
23
23
  MODEL_TYPE_O_1_MINI: _ClassVar[ModelType]
24
24
  MODEL_TYPE_O_3_MINI: _ClassVar[ModelType]
25
+ MODEL_TYPE_GPT_4_1: _ClassVar[ModelType]
26
+ MODEL_TYPE_GPT_4_1_MINI: _ClassVar[ModelType]
27
+ MODEL_TYPE_GPT_4_1_NANO: _ClassVar[ModelType]
25
28
  MODEL_TYPE_CLAUDE_3_5_SONNET: _ClassVar[ModelType]
26
29
  MODEL_TYPE_CLAUDE_3_HAIKU: _ClassVar[ModelType]
27
30
  MODEL_TYPE_MISTRAL_LARGE: _ClassVar[ModelType]
@@ -42,6 +45,9 @@ MODEL_TYPE_GPT_3_5_TURBO: ModelType
42
45
  MODEL_TYPE_O_1: ModelType
43
46
  MODEL_TYPE_O_1_MINI: ModelType
44
47
  MODEL_TYPE_O_3_MINI: ModelType
48
+ MODEL_TYPE_GPT_4_1: ModelType
49
+ MODEL_TYPE_GPT_4_1_MINI: ModelType
50
+ MODEL_TYPE_GPT_4_1_NANO: ModelType
45
51
  MODEL_TYPE_CLAUDE_3_5_SONNET: ModelType
46
52
  MODEL_TYPE_CLAUDE_3_HAIKU: ModelType
47
53
  MODEL_TYPE_MISTRAL_LARGE: ModelType