luminarycloud 0.22.0__py3-none-any.whl → 0.22.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/_client/authentication_plugin.py +49 -0
- luminarycloud/_client/client.py +38 -11
- luminarycloud/_client/http_client.py +1 -1
- luminarycloud/_client/retry_interceptor.py +64 -2
- luminarycloud/_helpers/__init__.py +9 -0
- luminarycloud/_helpers/_inference_jobs.py +227 -0
- luminarycloud/_helpers/_parse_iso_datetime.py +54 -0
- luminarycloud/_helpers/download.py +11 -0
- luminarycloud/_helpers/proto_decorator.py +38 -7
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +152 -132
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +66 -8
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +142 -39
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +300 -3
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.py +255 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.pyi +466 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.py +242 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.pyi +95 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +29 -7
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +39 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +36 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +18 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +88 -65
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +42 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +163 -153
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +37 -3
- luminarycloud/_proto/base/base_pb2.py +7 -6
- luminarycloud/_proto/base/base_pb2.pyi +4 -0
- luminarycloud/_proto/client/simulation_pb2.py +358 -339
- luminarycloud/_proto/client/simulation_pb2.pyi +89 -3
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.py +35 -0
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +6 -3
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +68 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +24 -0
- luminarycloud/_wrapper.py +53 -7
- luminarycloud/enum/vis_enums.py +6 -0
- luminarycloud/feature_modification.py +25 -32
- luminarycloud/geometry.py +10 -6
- luminarycloud/geometry_version.py +4 -0
- luminarycloud/mesh.py +4 -0
- luminarycloud/meshing/mesh_generation_params.py +5 -6
- luminarycloud/meshing/sizing_strategy/sizing_strategies.py +1 -2
- luminarycloud/outputs/__init__.py +2 -0
- luminarycloud/outputs/output_definitions.py +3 -3
- luminarycloud/outputs/stopping_conditions.py +94 -0
- luminarycloud/params/enum/_enum_wrappers.py +16 -0
- luminarycloud/params/geometry/shapes.py +33 -33
- luminarycloud/params/simulation/adaptive_mesh_refinement/__init__.py +1 -0
- luminarycloud/params/simulation/adaptive_mesh_refinement/active_region_.py +83 -0
- luminarycloud/params/simulation/adaptive_mesh_refinement/boundary_layer_profile_.py +1 -1
- luminarycloud/params/simulation/adaptive_mesh_refinement_.py +8 -1
- luminarycloud/physics_ai/__init__.py +7 -0
- luminarycloud/physics_ai/inference.py +166 -199
- luminarycloud/physics_ai/models.py +22 -0
- luminarycloud/physics_ai/solution.py +4 -0
- luminarycloud/pipelines/api.py +143 -16
- luminarycloud/pipelines/core.py +1 -1
- luminarycloud/pipelines/stages.py +22 -9
- luminarycloud/project.py +61 -8
- luminarycloud/simulation.py +25 -0
- luminarycloud/types/__init__.py +2 -0
- luminarycloud/types/ids.py +2 -0
- luminarycloud/types/vector3.py +1 -2
- luminarycloud/vis/__init__.py +1 -0
- luminarycloud/vis/data_extraction.py +7 -7
- luminarycloud/vis/filters.py +97 -0
- luminarycloud/vis/interactive_report.py +163 -7
- luminarycloud/vis/report.py +113 -1
- luminarycloud/vis/visualization.py +3 -0
- luminarycloud/volume_selection.py +16 -8
- luminarycloud/workflow_utils.py +149 -0
- {luminarycloud-0.22.0.dist-info → luminarycloud-0.22.2.dist-info}/METADATA +1 -1
- {luminarycloud-0.22.0.dist-info → luminarycloud-0.22.2.dist-info}/RECORD +80 -76
- {luminarycloud-0.22.0.dist-info → luminarycloud-0.22.2.dist-info}/WHEEL +1 -1
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +0 -61
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +0 -85
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.py +0 -67
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.pyi +0 -26
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +0 -69
- luminarycloud/pipeline_util/dictable.py +0 -27
|
@@ -72,6 +72,7 @@ class Geometry(google.protobuf.message.Message):
|
|
|
72
72
|
USES_TAGS_FIELD_NUMBER: builtins.int
|
|
73
73
|
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
74
74
|
STATUS_FIELD_NUMBER: builtins.int
|
|
75
|
+
CHECK_FIELD_NUMBER: builtins.int
|
|
75
76
|
VERSIONS_FIELD_NUMBER: builtins.int
|
|
76
77
|
id: builtins.str
|
|
77
78
|
name: builtins.str
|
|
@@ -84,6 +85,10 @@ class Geometry(google.protobuf.message.Message):
|
|
|
84
85
|
uses_tags: builtins.bool
|
|
85
86
|
project_id: builtins.str
|
|
86
87
|
status: global___Geometry.Status.ValueType
|
|
88
|
+
"""Status for the latest version."""
|
|
89
|
+
@property
|
|
90
|
+
def check(self) -> global___GetCheckGeometryResponse:
|
|
91
|
+
"""Geometry check result for the latest version."""
|
|
87
92
|
@property
|
|
88
93
|
def versions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GeometryVersion]:
|
|
89
94
|
"""Versions are not populated by default, but can be included by request."""
|
|
@@ -99,10 +104,11 @@ class Geometry(google.protobuf.message.Message):
|
|
|
99
104
|
uses_tags: builtins.bool = ...,
|
|
100
105
|
project_id: builtins.str = ...,
|
|
101
106
|
status: global___Geometry.Status.ValueType | None = ...,
|
|
107
|
+
check: global___GetCheckGeometryResponse | None = ...,
|
|
102
108
|
versions: collections.abc.Iterable[global___GeometryVersion] | None = ...,
|
|
103
109
|
) -> None: ...
|
|
104
|
-
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
105
|
-
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "deleted", b"deleted", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags", "versions", b"versions"]) -> None: ...
|
|
110
|
+
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
111
|
+
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "deleted", b"deleted", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags", "versions", b"versions"]) -> None: ...
|
|
106
112
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
|
|
107
113
|
|
|
108
114
|
global___Geometry = Geometry
|
|
@@ -116,6 +122,8 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
116
122
|
NAME_FIELD_NUMBER: builtins.int
|
|
117
123
|
KERNEL_TYPE_FIELD_NUMBER: builtins.int
|
|
118
124
|
NAMED_VARIABLE_SET_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
125
|
+
CHECK_FIELD_NUMBER: builtins.int
|
|
126
|
+
STATUS_FIELD_NUMBER: builtins.int
|
|
119
127
|
id: builtins.str
|
|
120
128
|
geometry_id: builtins.str
|
|
121
129
|
@property
|
|
@@ -123,6 +131,11 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
123
131
|
name: builtins.str
|
|
124
132
|
kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType
|
|
125
133
|
named_variable_set_version_id: builtins.str
|
|
134
|
+
@property
|
|
135
|
+
def check(self) -> global___GetCheckGeometryResponse:
|
|
136
|
+
"""Optional. Included by some RPCs on request."""
|
|
137
|
+
status: global___Geometry.Status.ValueType
|
|
138
|
+
"""Optional. Included by some RPCs on request."""
|
|
126
139
|
def __init__(
|
|
127
140
|
self,
|
|
128
141
|
*,
|
|
@@ -132,9 +145,12 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
132
145
|
name: builtins.str = ...,
|
|
133
146
|
kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType = ...,
|
|
134
147
|
named_variable_set_version_id: builtins.str = ...,
|
|
148
|
+
check: global___GetCheckGeometryResponse | None = ...,
|
|
149
|
+
status: global___Geometry.Status.ValueType | None = ...,
|
|
135
150
|
) -> None: ...
|
|
136
|
-
def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time"]) -> builtins.bool: ...
|
|
137
|
-
def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id", "kernel_type", b"kernel_type", "name", b"name", "named_variable_set_version_id", b"named_variable_set_version_id"]) -> None: ...
|
|
151
|
+
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "status", b"status"]) -> builtins.bool: ...
|
|
152
|
+
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id", "kernel_type", b"kernel_type", "name", b"name", "named_variable_set_version_id", b"named_variable_set_version_id", "status", b"status"]) -> None: ...
|
|
153
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
|
|
138
154
|
|
|
139
155
|
global___GeometryVersion = GeometryVersion
|
|
140
156
|
|
|
@@ -1154,6 +1170,36 @@ class GetTagsResponse(google.protobuf.message.Message):
|
|
|
1154
1170
|
|
|
1155
1171
|
global___GetTagsResponse = GetTagsResponse
|
|
1156
1172
|
|
|
1173
|
+
class GetTagsBatchRequest(google.protobuf.message.Message):
|
|
1174
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1175
|
+
|
|
1176
|
+
REQUESTS_FIELD_NUMBER: builtins.int
|
|
1177
|
+
@property
|
|
1178
|
+
def requests(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GetTagsRequest]: ...
|
|
1179
|
+
def __init__(
|
|
1180
|
+
self,
|
|
1181
|
+
*,
|
|
1182
|
+
requests: collections.abc.Iterable[global___GetTagsRequest] | None = ...,
|
|
1183
|
+
) -> None: ...
|
|
1184
|
+
def ClearField(self, field_name: typing_extensions.Literal["requests", b"requests"]) -> None: ...
|
|
1185
|
+
|
|
1186
|
+
global___GetTagsBatchRequest = GetTagsBatchRequest
|
|
1187
|
+
|
|
1188
|
+
class GetTagsBatchResponse(google.protobuf.message.Message):
|
|
1189
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1190
|
+
|
|
1191
|
+
RESPONSES_FIELD_NUMBER: builtins.int
|
|
1192
|
+
@property
|
|
1193
|
+
def responses(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GetTagsResponse]: ...
|
|
1194
|
+
def __init__(
|
|
1195
|
+
self,
|
|
1196
|
+
*,
|
|
1197
|
+
responses: collections.abc.Iterable[global___GetTagsResponse] | None = ...,
|
|
1198
|
+
) -> None: ...
|
|
1199
|
+
def ClearField(self, field_name: typing_extensions.Literal["responses", b"responses"]) -> None: ...
|
|
1200
|
+
|
|
1201
|
+
global___GetTagsBatchResponse = GetTagsBatchResponse
|
|
1202
|
+
|
|
1157
1203
|
class Tag(google.protobuf.message.Message):
|
|
1158
1204
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1159
1205
|
|
|
@@ -1235,14 +1281,19 @@ class ListGeometryVersionsRequest(google.protobuf.message.Message):
|
|
|
1235
1281
|
|
|
1236
1282
|
GEOMETRY_ID_FIELD_NUMBER: builtins.int
|
|
1237
1283
|
UNFILTERED_FIELD_NUMBER: builtins.int
|
|
1284
|
+
INCLUDE_CHECK_RESULTS_FIELD_NUMBER: builtins.int
|
|
1238
1285
|
PAGE_SIZE_FIELD_NUMBER: builtins.int
|
|
1239
1286
|
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
1240
1287
|
geometry_id: builtins.str
|
|
1241
1288
|
"""Required. The ID of the geometry to list versions for."""
|
|
1242
1289
|
unfiltered: builtins.bool
|
|
1243
1290
|
"""Optional. By default, the server only returns versions that are named OR have an associated
|
|
1244
|
-
Mesh OR are the latest version of the geometry.
|
|
1245
|
-
versions.
|
|
1291
|
+
Mesh OR are the latest version of the geometry (i.e. the "interesting" versions). If
|
|
1292
|
+
`unfiltered` is true, the server returns all versions.
|
|
1293
|
+
"""
|
|
1294
|
+
include_check_results: builtins.bool
|
|
1295
|
+
"""Optional. If true, the server will include the geometry check results for
|
|
1296
|
+
each version if available.
|
|
1246
1297
|
"""
|
|
1247
1298
|
page_size: builtins.int
|
|
1248
1299
|
"""Optional. The maximum number of versions to return. The service may return fewer than this
|
|
@@ -1260,11 +1311,12 @@ class ListGeometryVersionsRequest(google.protobuf.message.Message):
|
|
|
1260
1311
|
*,
|
|
1261
1312
|
geometry_id: builtins.str = ...,
|
|
1262
1313
|
unfiltered: builtins.bool = ...,
|
|
1314
|
+
include_check_results: builtins.bool = ...,
|
|
1263
1315
|
page_size: builtins.int | None = ...,
|
|
1264
1316
|
page_token: builtins.str | None = ...,
|
|
1265
1317
|
) -> None: ...
|
|
1266
1318
|
def HasField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "page_size", b"page_size", "page_token", b"page_token"]) -> builtins.bool: ...
|
|
1267
|
-
def ClearField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "geometry_id", b"geometry_id", "page_size", b"page_size", "page_token", b"page_token", "unfiltered", b"unfiltered"]) -> None: ...
|
|
1319
|
+
def ClearField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "geometry_id", b"geometry_id", "include_check_results", b"include_check_results", "page_size", b"page_size", "page_token", b"page_token", "unfiltered", b"unfiltered"]) -> None: ...
|
|
1268
1320
|
@typing.overload
|
|
1269
1321
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_page_size", b"_page_size"]) -> typing_extensions.Literal["page_size"] | None: ...
|
|
1270
1322
|
@typing.overload
|
|
@@ -1302,13 +1354,19 @@ class GetGeometryVersionRequest(google.protobuf.message.Message):
|
|
|
1302
1354
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1303
1355
|
|
|
1304
1356
|
GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
1357
|
+
INCLUDE_CHECK_RESULTS_FIELD_NUMBER: builtins.int
|
|
1305
1358
|
geometry_version_id: builtins.str
|
|
1359
|
+
include_check_results: builtins.bool
|
|
1360
|
+
"""Optional. If true, the server will include the geometry check result if
|
|
1361
|
+
available.
|
|
1362
|
+
"""
|
|
1306
1363
|
def __init__(
|
|
1307
1364
|
self,
|
|
1308
1365
|
*,
|
|
1309
1366
|
geometry_version_id: builtins.str = ...,
|
|
1367
|
+
include_check_results: builtins.bool = ...,
|
|
1310
1368
|
) -> None: ...
|
|
1311
|
-
def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id"]) -> None: ...
|
|
1369
|
+
def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id", "include_check_results", b"include_check_results"]) -> None: ...
|
|
1312
1370
|
|
|
1313
1371
|
global___GetGeometryVersionRequest = GetGeometryVersionRequest
|
|
1314
1372
|
|
|
@@ -120,6 +120,11 @@ class GeometryServiceStub(object):
|
|
|
120
120
|
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsRequest.SerializeToString,
|
|
121
121
|
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsResponse.FromString,
|
|
122
122
|
)
|
|
123
|
+
self.GetTagsBatch = channel.unary_unary(
|
|
124
|
+
'/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/GetTagsBatch',
|
|
125
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchRequest.SerializeToString,
|
|
126
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchResponse.FromString,
|
|
127
|
+
)
|
|
123
128
|
self.ListTags = channel.unary_unary(
|
|
124
129
|
'/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/ListTags',
|
|
125
130
|
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.ListTagsRequest.SerializeToString,
|
|
@@ -307,6 +312,13 @@ class GeometryServiceServicer(object):
|
|
|
307
312
|
context.set_details('Method not implemented!')
|
|
308
313
|
raise NotImplementedError('Method not implemented!')
|
|
309
314
|
|
|
315
|
+
def GetTagsBatch(self, request, context):
|
|
316
|
+
"""Same as GetTags but for multiple geometry versions.
|
|
317
|
+
"""
|
|
318
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
319
|
+
context.set_details('Method not implemented!')
|
|
320
|
+
raise NotImplementedError('Method not implemented!')
|
|
321
|
+
|
|
310
322
|
def ListTags(self, request, context):
|
|
311
323
|
"""List the tags associated with a geometry. Used by SDK clients since it
|
|
312
324
|
contains more carefully crafted datastructures since SDK clients expose
|
|
@@ -449,6 +461,11 @@ def add_GeometryServiceServicer_to_server(servicer, server):
|
|
|
449
461
|
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsRequest.FromString,
|
|
450
462
|
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsResponse.SerializeToString,
|
|
451
463
|
),
|
|
464
|
+
'GetTagsBatch': grpc.unary_unary_rpc_method_handler(
|
|
465
|
+
servicer.GetTagsBatch,
|
|
466
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchRequest.FromString,
|
|
467
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchResponse.SerializeToString,
|
|
468
|
+
),
|
|
452
469
|
'ListTags': grpc.unary_unary_rpc_method_handler(
|
|
453
470
|
servicer.ListTags,
|
|
454
471
|
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.ListTagsRequest.FromString,
|
|
@@ -841,6 +858,23 @@ class GeometryService(object):
|
|
|
841
858
|
options, channel_credentials,
|
|
842
859
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
843
860
|
|
|
861
|
+
@staticmethod
|
|
862
|
+
def GetTagsBatch(request,
|
|
863
|
+
target,
|
|
864
|
+
options=(),
|
|
865
|
+
channel_credentials=None,
|
|
866
|
+
call_credentials=None,
|
|
867
|
+
insecure=False,
|
|
868
|
+
compression=None,
|
|
869
|
+
wait_for_ready=None,
|
|
870
|
+
timeout=None,
|
|
871
|
+
metadata=None):
|
|
872
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/GetTagsBatch',
|
|
873
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchRequest.SerializeToString,
|
|
874
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.GetTagsBatchResponse.FromString,
|
|
875
|
+
options, channel_credentials,
|
|
876
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
877
|
+
|
|
844
878
|
@staticmethod
|
|
845
879
|
def ListTags(request,
|
|
846
880
|
target,
|
|
@@ -132,6 +132,11 @@ class GeometryServiceStub:
|
|
|
132
132
|
clients since it contains more data about the associativity of faces and
|
|
133
133
|
bodies.
|
|
134
134
|
"""
|
|
135
|
+
GetTagsBatch: grpc.UnaryUnaryMultiCallable[
|
|
136
|
+
luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.GetTagsBatchRequest,
|
|
137
|
+
luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.GetTagsBatchResponse,
|
|
138
|
+
]
|
|
139
|
+
"""Same as GetTags but for multiple geometry versions."""
|
|
135
140
|
ListTags: grpc.UnaryUnaryMultiCallable[
|
|
136
141
|
luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.ListTagsRequest,
|
|
137
142
|
luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.ListTagsResponse,
|
|
@@ -324,6 +329,13 @@ class GeometryServiceServicer(metaclass=abc.ABCMeta):
|
|
|
324
329
|
bodies.
|
|
325
330
|
"""
|
|
326
331
|
@abc.abstractmethod
|
|
332
|
+
def GetTagsBatch(
|
|
333
|
+
self,
|
|
334
|
+
request: luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.GetTagsBatchRequest,
|
|
335
|
+
context: grpc.ServicerContext,
|
|
336
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.GetTagsBatchResponse:
|
|
337
|
+
"""Same as GetTags but for multiple geometry versions."""
|
|
338
|
+
@abc.abstractmethod
|
|
327
339
|
def ListTags(
|
|
328
340
|
self,
|
|
329
341
|
request: luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.ListTagsRequest,
|
|
@@ -13,6 +13,7 @@ from google.protobuf import symbol_database as _symbol_database
|
|
|
13
13
|
_sym_db = _symbol_database.Default()
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
16
17
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
17
18
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
18
19
|
from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_common_dot_common__pb2
|
|
@@ -20,7 +21,7 @@ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
|
|
|
20
21
|
from luminarycloud._proto.quantity import quantity_pb2 as proto_dot_quantity_dot_quantity__pb2
|
|
21
22
|
|
|
22
23
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\"\
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6proto/api/v0/luminarycloud/physics_ai/physics_ai.proto\x12.luminary.proto.api.v0.luminarycloud.physics_ai\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x15proto/base/base.proto\x1a\x1dproto/quantity/quantity.proto\"\xad\x01\n\x1cPhysicsAiArchitectureVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x11\n\tchangelog\x18\x03 \x01(\t\x12`\n\x0flifecycle_state\x18\x04 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\xa6\x01\n\x15PhysicsAiArchitecture\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x08versions\x18\x04 \x03(\x0b\x32L.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitectureVersion\"\x1a\n\x18ListArchitecturesRequest\"y\n\x19ListArchitecturesResponse\x12\\\n\rarchitectures\x18\x01 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiArchitecture\"\x93\x01\n\x15PhysicsAiModelVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x0flifecycle_state\x18\x03 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiLifecycleState\"\x98\x01\n\x0ePhysicsAiModel\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12W\n\x08versions\x18\x04 \x03(\x0b\x32\x45.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModelVersion\"\x1d\n\x1bListPretrainedModelsRequest\"n\n\x1cListPretrainedModelsResponse\x12N\n\x06models\x18\x01 \x03(\x0b\x32>.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiModel\".\n\x0cSurfaceGroup\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x10\n\x08surfaces\x18\x02 \x03(\t\"\xb8\x04\n\x1fGetSolutionDataPhysicsAIRequest\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x18\n\x10\x65xclude_surfaces\x18\x02 \x03(\t\x12\x12\n\nfill_holes\x18\x03 \x01(\x02\x12\x45\n\x16surface_fields_to_keep\x18\x04 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x44\n\x15volume_fields_to_keep\x18\x05 \x03(\x0e\x32%.luminary.proto.quantity.QuantityType\x12\x16\n\x0eprocess_volume\x18\x06 \x01(\x08\x12\x18\n\x10single_precision\x18\x07 \x01(\x08\x12~\n\x10internal_options\x18\x08 \x03(\x0b\x32\x64.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest.InternalOptionsEntry\x12[\n\x15\x65xport_surface_groups\x18\t \x03(\x0b\x32<.luminary.proto.api.v0.luminarycloud.physics_ai.SurfaceGroup\x1a\x36\n\x14InternalOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"b\n GetSolutionDataPhysicsAIResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\";\n\x10TrainingSolution\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x12\n\ndata_split\x18\x02 \x01(\t\"\xae\x05\n\x14PhysicsAiTrainingJob\x12\n\n\x02id\x18\x01 \x01(\t\x12\x1f\n\x17\x61rchitecture_version_id\x18\x02 \x01(\t\x12\x0f\n\x07user_id\x18\x03 \x01(\t\x12\x17\n\x0ftraining_config\x18\x04 \x01(\t\x12i\n\x19training_data_source_type\x18\x05 \x01(\x0e\x32\x46.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingDataSourceType\x12\x1c\n\x14training_description\x18\x06 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x07 \x01(\t\x12\x64\n\x13initialization_type\x18\x08 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\t \x01(\t\x12.\n\x06status\x18\n \x01(\x0b\x32\x1e.luminary.proto.base.JobStatus\x12\x15\n\rerror_message\x18\x0b \x01(\t\x12\x1f\n\x17output_model_version_id\x18\x0c \x01(\t\x12\x31\n\rcreation_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0f\x63ompletion_time\x18\x0f \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x12\n\ndataset_id\x18\x10 \x01(\t\"\x87\x03\n\x18SubmitTrainingJobRequest\x12\x1f\n\x17\x61rchitecture_version_id\x18\x01 \x01(\t\x12\x1c\n\x14training_description\x18\x02 \x01(\t\x12\x1c\n\x14\x65xternal_dataset_uri\x18\x03 \x01(\t\x12\\\n\x12training_solutions\x18\x04 \x03(\x0b\x32@.luminary.proto.api.v0.luminarycloud.physics_ai.TrainingSolution\x12\x17\n\x0ftraining_config\x18\x05 \x01(\t\x12\x64\n\x13initialization_type\x18\x06 \x01(\x0e\x32G.luminary.proto.api.v0.luminarycloud.physics_ai.ModelInitializationType\x12\x1d\n\x15\x62\x61se_model_version_id\x18\x07 \x01(\t\x12\x12\n\ndataset_id\x18\x08 \x01(\t\"w\n\x19SubmitTrainingJobResponse\x12Z\n\x0ctraining_job\x18\x01 \x01(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiTrainingJob\"3\n\x18\x43\x61ncelTrainingJobRequest\x12\x17\n\x0ftraining_job_id\x18\x01 \x01(\t\"\x1b\n\x19\x43\x61ncelTrainingJobResponse\"\xb8\x03\n\x10PhysicsAiDataset\x12\n\n\x02id\x18\x01 \x01(\t\x12\x12\n\ncreated_by\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x04 \x01(\t\x12\x11\n\tis_locked\x18\x05 \x01(\x08\x12\x31\n\rcreation_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12-\n\tlocked_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12S\n\x05\x63\x61ses\x18\t \x03(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCase\x12\x66\n\rexport_config\x18\n \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\";\n\x18PhysicsAiDatasetCaseFile\x12\x11\n\tfile_type\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"t\n\x19PhysicsAiDatasetCaseFiles\x12W\n\x05\x66iles\x18\x01 \x03(\x0b\x32H.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCaseFile\"\x87\x02\n\x14PhysicsAiDatasetCase\x12\x0f\n\x07\x63\x61se_id\x18\x01 \x01(\t\x12\x13\n\x0bsolution_id\x18\x02 \x01(\t\x12\x15\n\rsimulation_id\x18\x03 \x01(\t\x12\'\n\x06params\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12W\n\x05\x66iles\x18\x05 \x03(\x0b\x32H.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCaseFile\x12\x30\n\x0fsource_metadata\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\"\x81\x02\n\x1f\x43reatePhysicsAiDatasetCaseInput\x12\x13\n\x0bsolution_id\x18\x01 \x01(\t\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\'\n\x06params\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12W\n\x05\x66iles\x18\x04 \x03(\x0b\x32H.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCaseFile\x12\x30\n\x0fsource_metadata\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\"\xb4\x02\n\x14\x43reateDatasetRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12^\n\x05\x63\x61ses\x18\x03 \x03(\x0b\x32O.luminary.proto.api.v0.luminarycloud.physics_ai.CreatePhysicsAiDatasetCaseInput\x12\x31\n\x10parameter_schema\x18\x04 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x66\n\rexport_config\x18\x05 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\"j\n\x15\x43reateDatasetResponse\x12Q\n\x07\x64\x61taset\x18\x01 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDataset*\xb4\x01\n\x17PhysicsAiLifecycleState\x12\x1f\n\x1bLIFECYCLE_STATE_UNSPECIFIED\x10\x00\x12\x1f\n\x1bLIFECYCLE_STATE_DEVELOPMENT\x10\x01\x12\x1a\n\x16LIFECYCLE_STATE_ACTIVE\x10\x02\x12\x1e\n\x1aLIFECYCLE_STATE_DEPRECATED\x10\x03\x12\x1b\n\x17LIFECYCLE_STATE_RETIRED\x10\x04*\xa7\x01\n\x16TrainingDataSourceType\x12)\n%TRAINING_DATA_SOURCE_TYPE_UNSPECIFIED\x10\x00\x12\x32\n.TRAINING_DATA_SOURCE_TYPE_SIMULATION_SOLUTIONS\x10\x01\x12.\n*TRAINING_DATA_SOURCE_TYPE_EXTERNAL_DATASET\x10\x02*\xc1\x01\n\x17ModelInitializationType\x12)\n%MODEL_INITIALIZATION_TYPE_UNSPECIFIED\x10\x00\x12$\n MODEL_INITIALIZATION_TYPE_RANDOM\x10\x01\x12+\n\'MODEL_INITIALIZATION_TYPE_MODEL_VERSION\x10\x02\x12(\n$MODEL_INITIALIZATION_TYPE_CHECKPOINT\x10\x03\x32\xd0\x08\n\x10PhysicsAiService\x12\xce\x01\n\x11ListArchitectures\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.ListArchitecturesResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v0/physics_ai/architectures\x12\xdb\x01\n\x14ListPretrainedModels\x12K.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsRequest\x1aL.luminary.proto.api.v0.luminarycloud.physics_ai.ListPretrainedModelsResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/physics_ai/pretrained_models\x12\xf5\x01\n\x18GetSolutionDataPhysicsAI\x12O.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIRequest\x1aP.luminary.proto.api.v0.luminarycloud.physics_ai.GetSolutionDataPhysicsAIResponse\"6\x82\xd3\xe4\x93\x02\x30\"+/v0/physics_ai/solutions/{solution_id}/data:\x01*\x12\xd1\x01\n\x11SubmitTrainingJob\x12H.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobRequest\x1aI.luminary.proto.api.v0.luminarycloud.physics_ai.SubmitTrainingJobResponse\"\'\x82\xd3\xe4\x93\x02!\"\x1c/v0/physics_ai/training/jobs:\x01*\x12\xc0\x01\n\rCreateDataset\x12\x44.luminary.proto.api.v0.luminarycloud.physics_ai.CreateDatasetRequest\x1a\x45.luminary.proto.api.v0.luminarycloud.physics_ai.CreateDatasetResponse\"\"\x82\xd3\xe4\x93\x02\x1c\"\x17/v0/physics_ai/datasets:\x01*B>Z<luminarycloud.com/core/proto/api/v0/luminarycloud/physics_aib\x06proto3')
|
|
24
25
|
|
|
25
26
|
_PHYSICSAILIFECYCLESTATE = DESCRIPTOR.enum_types_by_name['PhysicsAiLifecycleState']
|
|
26
27
|
PhysicsAiLifecycleState = enum_type_wrapper.EnumTypeWrapper(_PHYSICSAILIFECYCLESTATE)
|
|
@@ -50,6 +51,7 @@ _PHYSICSAIMODELVERSION = DESCRIPTOR.message_types_by_name['PhysicsAiModelVersion
|
|
|
50
51
|
_PHYSICSAIMODEL = DESCRIPTOR.message_types_by_name['PhysicsAiModel']
|
|
51
52
|
_LISTPRETRAINEDMODELSREQUEST = DESCRIPTOR.message_types_by_name['ListPretrainedModelsRequest']
|
|
52
53
|
_LISTPRETRAINEDMODELSRESPONSE = DESCRIPTOR.message_types_by_name['ListPretrainedModelsResponse']
|
|
54
|
+
_SURFACEGROUP = DESCRIPTOR.message_types_by_name['SurfaceGroup']
|
|
53
55
|
_GETSOLUTIONDATAPHYSICSAIREQUEST = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIRequest']
|
|
54
56
|
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY = _GETSOLUTIONDATAPHYSICSAIREQUEST.nested_types_by_name['InternalOptionsEntry']
|
|
55
57
|
_GETSOLUTIONDATAPHYSICSAIRESPONSE = DESCRIPTOR.message_types_by_name['GetSolutionDataPhysicsAIResponse']
|
|
@@ -57,6 +59,15 @@ _TRAININGSOLUTION = DESCRIPTOR.message_types_by_name['TrainingSolution']
|
|
|
57
59
|
_PHYSICSAITRAININGJOB = DESCRIPTOR.message_types_by_name['PhysicsAiTrainingJob']
|
|
58
60
|
_SUBMITTRAININGJOBREQUEST = DESCRIPTOR.message_types_by_name['SubmitTrainingJobRequest']
|
|
59
61
|
_SUBMITTRAININGJOBRESPONSE = DESCRIPTOR.message_types_by_name['SubmitTrainingJobResponse']
|
|
62
|
+
_CANCELTRAININGJOBREQUEST = DESCRIPTOR.message_types_by_name['CancelTrainingJobRequest']
|
|
63
|
+
_CANCELTRAININGJOBRESPONSE = DESCRIPTOR.message_types_by_name['CancelTrainingJobResponse']
|
|
64
|
+
_PHYSICSAIDATASET = DESCRIPTOR.message_types_by_name['PhysicsAiDataset']
|
|
65
|
+
_PHYSICSAIDATASETCASEFILE = DESCRIPTOR.message_types_by_name['PhysicsAiDatasetCaseFile']
|
|
66
|
+
_PHYSICSAIDATASETCASEFILES = DESCRIPTOR.message_types_by_name['PhysicsAiDatasetCaseFiles']
|
|
67
|
+
_PHYSICSAIDATASETCASE = DESCRIPTOR.message_types_by_name['PhysicsAiDatasetCase']
|
|
68
|
+
_CREATEPHYSICSAIDATASETCASEINPUT = DESCRIPTOR.message_types_by_name['CreatePhysicsAiDatasetCaseInput']
|
|
69
|
+
_CREATEDATASETREQUEST = DESCRIPTOR.message_types_by_name['CreateDatasetRequest']
|
|
70
|
+
_CREATEDATASETRESPONSE = DESCRIPTOR.message_types_by_name['CreateDatasetResponse']
|
|
60
71
|
PhysicsAiArchitectureVersion = _reflection.GeneratedProtocolMessageType('PhysicsAiArchitectureVersion', (_message.Message,), {
|
|
61
72
|
'DESCRIPTOR' : _PHYSICSAIARCHITECTUREVERSION,
|
|
62
73
|
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
@@ -113,6 +124,13 @@ ListPretrainedModelsResponse = _reflection.GeneratedProtocolMessageType('ListPre
|
|
|
113
124
|
})
|
|
114
125
|
_sym_db.RegisterMessage(ListPretrainedModelsResponse)
|
|
115
126
|
|
|
127
|
+
SurfaceGroup = _reflection.GeneratedProtocolMessageType('SurfaceGroup', (_message.Message,), {
|
|
128
|
+
'DESCRIPTOR' : _SURFACEGROUP,
|
|
129
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
130
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.SurfaceGroup)
|
|
131
|
+
})
|
|
132
|
+
_sym_db.RegisterMessage(SurfaceGroup)
|
|
133
|
+
|
|
116
134
|
GetSolutionDataPhysicsAIRequest = _reflection.GeneratedProtocolMessageType('GetSolutionDataPhysicsAIRequest', (_message.Message,), {
|
|
117
135
|
|
|
118
136
|
'InternalOptionsEntry' : _reflection.GeneratedProtocolMessageType('InternalOptionsEntry', (_message.Message,), {
|
|
@@ -163,6 +181,69 @@ SubmitTrainingJobResponse = _reflection.GeneratedProtocolMessageType('SubmitTrai
|
|
|
163
181
|
})
|
|
164
182
|
_sym_db.RegisterMessage(SubmitTrainingJobResponse)
|
|
165
183
|
|
|
184
|
+
CancelTrainingJobRequest = _reflection.GeneratedProtocolMessageType('CancelTrainingJobRequest', (_message.Message,), {
|
|
185
|
+
'DESCRIPTOR' : _CANCELTRAININGJOBREQUEST,
|
|
186
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
187
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CancelTrainingJobRequest)
|
|
188
|
+
})
|
|
189
|
+
_sym_db.RegisterMessage(CancelTrainingJobRequest)
|
|
190
|
+
|
|
191
|
+
CancelTrainingJobResponse = _reflection.GeneratedProtocolMessageType('CancelTrainingJobResponse', (_message.Message,), {
|
|
192
|
+
'DESCRIPTOR' : _CANCELTRAININGJOBRESPONSE,
|
|
193
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
194
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CancelTrainingJobResponse)
|
|
195
|
+
})
|
|
196
|
+
_sym_db.RegisterMessage(CancelTrainingJobResponse)
|
|
197
|
+
|
|
198
|
+
PhysicsAiDataset = _reflection.GeneratedProtocolMessageType('PhysicsAiDataset', (_message.Message,), {
|
|
199
|
+
'DESCRIPTOR' : _PHYSICSAIDATASET,
|
|
200
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
201
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDataset)
|
|
202
|
+
})
|
|
203
|
+
_sym_db.RegisterMessage(PhysicsAiDataset)
|
|
204
|
+
|
|
205
|
+
PhysicsAiDatasetCaseFile = _reflection.GeneratedProtocolMessageType('PhysicsAiDatasetCaseFile', (_message.Message,), {
|
|
206
|
+
'DESCRIPTOR' : _PHYSICSAIDATASETCASEFILE,
|
|
207
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
208
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCaseFile)
|
|
209
|
+
})
|
|
210
|
+
_sym_db.RegisterMessage(PhysicsAiDatasetCaseFile)
|
|
211
|
+
|
|
212
|
+
PhysicsAiDatasetCaseFiles = _reflection.GeneratedProtocolMessageType('PhysicsAiDatasetCaseFiles', (_message.Message,), {
|
|
213
|
+
'DESCRIPTOR' : _PHYSICSAIDATASETCASEFILES,
|
|
214
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
215
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCaseFiles)
|
|
216
|
+
})
|
|
217
|
+
_sym_db.RegisterMessage(PhysicsAiDatasetCaseFiles)
|
|
218
|
+
|
|
219
|
+
PhysicsAiDatasetCase = _reflection.GeneratedProtocolMessageType('PhysicsAiDatasetCase', (_message.Message,), {
|
|
220
|
+
'DESCRIPTOR' : _PHYSICSAIDATASETCASE,
|
|
221
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
222
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.PhysicsAiDatasetCase)
|
|
223
|
+
})
|
|
224
|
+
_sym_db.RegisterMessage(PhysicsAiDatasetCase)
|
|
225
|
+
|
|
226
|
+
CreatePhysicsAiDatasetCaseInput = _reflection.GeneratedProtocolMessageType('CreatePhysicsAiDatasetCaseInput', (_message.Message,), {
|
|
227
|
+
'DESCRIPTOR' : _CREATEPHYSICSAIDATASETCASEINPUT,
|
|
228
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
229
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CreatePhysicsAiDatasetCaseInput)
|
|
230
|
+
})
|
|
231
|
+
_sym_db.RegisterMessage(CreatePhysicsAiDatasetCaseInput)
|
|
232
|
+
|
|
233
|
+
CreateDatasetRequest = _reflection.GeneratedProtocolMessageType('CreateDatasetRequest', (_message.Message,), {
|
|
234
|
+
'DESCRIPTOR' : _CREATEDATASETREQUEST,
|
|
235
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
236
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CreateDatasetRequest)
|
|
237
|
+
})
|
|
238
|
+
_sym_db.RegisterMessage(CreateDatasetRequest)
|
|
239
|
+
|
|
240
|
+
CreateDatasetResponse = _reflection.GeneratedProtocolMessageType('CreateDatasetResponse', (_message.Message,), {
|
|
241
|
+
'DESCRIPTOR' : _CREATEDATASETRESPONSE,
|
|
242
|
+
'__module__' : 'proto.api.v0.luminarycloud.physics_ai.physics_ai_pb2'
|
|
243
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.physics_ai.CreateDatasetResponse)
|
|
244
|
+
})
|
|
245
|
+
_sym_db.RegisterMessage(CreateDatasetResponse)
|
|
246
|
+
|
|
166
247
|
_PHYSICSAISERVICE = DESCRIPTOR.services_by_name['PhysicsAiService']
|
|
167
248
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
168
249
|
|
|
@@ -178,42 +259,64 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
178
259
|
_PHYSICSAISERVICE.methods_by_name['GetSolutionDataPhysicsAI']._serialized_options = b'\202\323\344\223\0020\"+/v0/physics_ai/solutions/{solution_id}/data:\001*'
|
|
179
260
|
_PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._options = None
|
|
180
261
|
_PHYSICSAISERVICE.methods_by_name['SubmitTrainingJob']._serialized_options = b'\202\323\344\223\002!\"\034/v0/physics_ai/training/jobs:\001*'
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
262
|
+
_PHYSICSAISERVICE.methods_by_name['CreateDataset']._options = None
|
|
263
|
+
_PHYSICSAISERVICE.methods_by_name['CreateDataset']._serialized_options = b'\202\323\344\223\002\034\"\027/v0/physics_ai/datasets:\001*'
|
|
264
|
+
_PHYSICSAILIFECYCLESTATE._serialized_start=4879
|
|
265
|
+
_PHYSICSAILIFECYCLESTATE._serialized_end=5059
|
|
266
|
+
_TRAININGDATASOURCETYPE._serialized_start=5062
|
|
267
|
+
_TRAININGDATASOURCETYPE._serialized_end=5229
|
|
268
|
+
_MODELINITIALIZATIONTYPE._serialized_start=5232
|
|
269
|
+
_MODELINITIALIZATIONTYPE._serialized_end=5425
|
|
270
|
+
_PHYSICSAIARCHITECTUREVERSION._serialized_start=302
|
|
271
|
+
_PHYSICSAIARCHITECTUREVERSION._serialized_end=475
|
|
272
|
+
_PHYSICSAIARCHITECTURE._serialized_start=478
|
|
273
|
+
_PHYSICSAIARCHITECTURE._serialized_end=644
|
|
274
|
+
_LISTARCHITECTURESREQUEST._serialized_start=646
|
|
275
|
+
_LISTARCHITECTURESREQUEST._serialized_end=672
|
|
276
|
+
_LISTARCHITECTURESRESPONSE._serialized_start=674
|
|
277
|
+
_LISTARCHITECTURESRESPONSE._serialized_end=795
|
|
278
|
+
_PHYSICSAIMODELVERSION._serialized_start=798
|
|
279
|
+
_PHYSICSAIMODELVERSION._serialized_end=945
|
|
280
|
+
_PHYSICSAIMODEL._serialized_start=948
|
|
281
|
+
_PHYSICSAIMODEL._serialized_end=1100
|
|
282
|
+
_LISTPRETRAINEDMODELSREQUEST._serialized_start=1102
|
|
283
|
+
_LISTPRETRAINEDMODELSREQUEST._serialized_end=1131
|
|
284
|
+
_LISTPRETRAINEDMODELSRESPONSE._serialized_start=1133
|
|
285
|
+
_LISTPRETRAINEDMODELSRESPONSE._serialized_end=1243
|
|
286
|
+
_SURFACEGROUP._serialized_start=1245
|
|
287
|
+
_SURFACEGROUP._serialized_end=1291
|
|
288
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_start=1294
|
|
289
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST._serialized_end=1862
|
|
290
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_start=1808
|
|
291
|
+
_GETSOLUTIONDATAPHYSICSAIREQUEST_INTERNALOPTIONSENTRY._serialized_end=1862
|
|
292
|
+
_GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_start=1864
|
|
293
|
+
_GETSOLUTIONDATAPHYSICSAIRESPONSE._serialized_end=1962
|
|
294
|
+
_TRAININGSOLUTION._serialized_start=1964
|
|
295
|
+
_TRAININGSOLUTION._serialized_end=2023
|
|
296
|
+
_PHYSICSAITRAININGJOB._serialized_start=2026
|
|
297
|
+
_PHYSICSAITRAININGJOB._serialized_end=2712
|
|
298
|
+
_SUBMITTRAININGJOBREQUEST._serialized_start=2715
|
|
299
|
+
_SUBMITTRAININGJOBREQUEST._serialized_end=3106
|
|
300
|
+
_SUBMITTRAININGJOBRESPONSE._serialized_start=3108
|
|
301
|
+
_SUBMITTRAININGJOBRESPONSE._serialized_end=3227
|
|
302
|
+
_CANCELTRAININGJOBREQUEST._serialized_start=3229
|
|
303
|
+
_CANCELTRAININGJOBREQUEST._serialized_end=3280
|
|
304
|
+
_CANCELTRAININGJOBRESPONSE._serialized_start=3282
|
|
305
|
+
_CANCELTRAININGJOBRESPONSE._serialized_end=3309
|
|
306
|
+
_PHYSICSAIDATASET._serialized_start=3312
|
|
307
|
+
_PHYSICSAIDATASET._serialized_end=3752
|
|
308
|
+
_PHYSICSAIDATASETCASEFILE._serialized_start=3754
|
|
309
|
+
_PHYSICSAIDATASETCASEFILE._serialized_end=3813
|
|
310
|
+
_PHYSICSAIDATASETCASEFILES._serialized_start=3815
|
|
311
|
+
_PHYSICSAIDATASETCASEFILES._serialized_end=3931
|
|
312
|
+
_PHYSICSAIDATASETCASE._serialized_start=3934
|
|
313
|
+
_PHYSICSAIDATASETCASE._serialized_end=4197
|
|
314
|
+
_CREATEPHYSICSAIDATASETCASEINPUT._serialized_start=4200
|
|
315
|
+
_CREATEPHYSICSAIDATASETCASEINPUT._serialized_end=4457
|
|
316
|
+
_CREATEDATASETREQUEST._serialized_start=4460
|
|
317
|
+
_CREATEDATASETREQUEST._serialized_end=4768
|
|
318
|
+
_CREATEDATASETRESPONSE._serialized_start=4770
|
|
319
|
+
_CREATEDATASETRESPONSE._serialized_end=4876
|
|
320
|
+
_PHYSICSAISERVICE._serialized_start=5428
|
|
321
|
+
_PHYSICSAISERVICE._serialized_end=6532
|
|
219
322
|
# @@protoc_insertion_point(module_scope)
|